Importing pgnus-0.46
[elisp/gnus.git-] / lisp / mm-encode.el
1 ;;; mm-encode.el --- Functions for encoding MIME things
2 ;; Copyright (C) 1998 Free Software Foundation, Inc.
3
4 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
5 ;;      MORIOKA Tomohiko <morioka@jaist.ac.jp>
6 ;; This file is part of GNU Emacs.
7
8 ;; GNU Emacs is free software; you can redistribute it and/or modify
9 ;; it under the terms of the GNU General Public License as published by
10 ;; the Free Software Foundation; either version 2, or (at your option)
11 ;; any later version.
12
13 ;; GNU Emacs is distributed in the hope that it will be useful,
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 ;; GNU General Public License for more details.
17
18 ;; You should have received a copy of the GNU General Public License
19 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
20 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 ;; Boston, MA 02111-1307, USA.
22
23 ;;; Commentary:
24
25 ;;; Code:
26
27 (require 'mail-parse)
28 (require 'mailcap)
29
30 (defvar mm-content-transfer-encoding-defaults
31   '(("text/.*" quoted-printable)
32     (".*" base64))
33   "Alist of regexps that match MIME types and their encodings.")
34
35 (defun mm-insert-rfc822-headers (charset encoding)
36   "Insert text/plain headers with CHARSET and ENCODING."
37   (insert "MIME-Version: 1.0\n")
38   (insert "Content-Type: text/plain; charset="
39           (mail-quote-string (downcase (symbol-name charset))) "\n")
40   (insert "Content-Transfer-Encoding: "
41           (downcase (symbol-name encoding)) "\n"))
42
43 (defun mm-insert-multipart-headers ()
44   "Insert multipart/mixed headers."
45   (let ((boundary "=-=-="))
46     (insert "MIME-Version: 1.0\n")
47     (insert (format "Content-Type: multipart/mixed; boundary=\"%s\"\n"
48                     boundary))
49     boundary))
50
51 (defun mm-default-file-encoding (file)
52   "Return a default encoding for FILE."
53   (if (not (string-match "\\.[^.]+$" file))
54       "application/octet-stream"
55     (mailcap-extension-to-mime (match-string 0 file))))
56
57 (defun mm-encode-content-transfer-encoding (encoding &optional type)
58   (cond
59    ((eq encoding 'quoted-printable)
60     (quoted-printable-encode-region (point-min) (point-max)))
61    ((eq encoding 'base64)
62     (when (equal type "text/plain")
63       (goto-char (point-min))
64       (while (search-forward "\n" nil t)
65         (replace-match "\r\n" t t)))
66     (condition-case ()
67         (base64-encode-region (point-min) (point-max))
68       (error nil)))
69    ((memq encoding '(7bit 8bit binary))
70     )
71    ((null encoding)
72     )
73    ;;((eq encoding 'x-uuencode)
74    ;; (condition-case ()
75    ;;   (uudecode-encode-region (point-min) (point-max))
76    ;;   (error nil)))
77    ((functionp encoding)
78     (condition-case ()
79         (funcall encoding (point-min) (point-max))
80       (error nil)))
81    (t
82     (message "Unknown encoding %s; defaulting to 8bit" encoding))))
83
84 (defun mm-encode-buffer (type)
85   "Encode the buffer which contains data of TYPE.
86 The encoding used is returned."
87   (let* ((mime-type (if (stringp type) type (car type)))
88          (encoding
89           (or (and (listp type)
90                    (cadr (assq 'encoding type)))
91               (mm-content-transfer-encoding mime-type))))
92     (mm-encode-content-transfer-encoding encoding mime-type)
93     encoding))
94
95 (defun mm-insert-headers (type encoding &optional file)
96   "Insert headers for TYPE."
97   (insert "Content-Type: " type)
98   (when file
99     (insert ";\n\tname=\"" (file-name-nondirectory file) "\""))
100   (insert "\n")
101   (insert (format "Content-Transfer-Encoding: %s\n" encoding))
102   (insert "Content-Disposition: inline")
103   (when file
104     (insert ";\n\tfilename=\"" (file-name-nondirectory file) "\""))
105   (insert "\n")
106   (insert "\n"))
107
108 (defun mm-content-transfer-encoding (type)
109   "Return a CTE suitable for TYPE."
110   (let ((rules mm-content-transfer-encoding-defaults))
111     (catch 'found
112       (while rules
113         (when (string-match (caar rules) type)
114           (throw 'found (cadar rules)))
115         (pop rules)))))
116
117 (provide 'mm-encode)
118
119 ;;; mm-encode.el ends here