1 ;;; mm-bodies.el --- Functions for decoding MIME things
3 ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;; MORIOKA Tomohiko <morioka@jaist.ac.jp>
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 3, or (at your option)
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23 ;; Boston, MA 02110-1301, USA.
31 (unless (fboundp 'declare-function
) (defmacro declare-function
(&rest r
))))
37 (defvar mm-uu-yenc-decode-function
)
38 (defvar mm-uu-decode-function
)
39 (defvar mm-uu-binhex-decode-function
)
41 ;; 8bit treatment gets any char except: 0x32 - 0x7f, LF, TAB, BEL,
42 ;; BS, vertical TAB, form feed, and ^_
44 ;; Note that CR is *not* included, as that would allow a non-paired CR
45 ;; in the body contrary to RFC 2822:
47 ;; - CR and LF MUST only occur together as CRLF; they MUST NOT
48 ;; appear independently in the body.
50 (defvar mm-7bit-chars
"\x20-\x7f\n\t\x7\x8\xb\xc\x1f")
52 (defcustom mm-body-charset-encoding-alist
53 '((iso-2022-jp .
7bit
)
54 (iso-2022-jp-2 .
7bit
)
55 ;; We MUST encode UTF-16 because it can contain \0's which is
56 ;; known to break servers.
57 ;; Note: UTF-16 variants are invalid for text parts [RFC 2781],
58 ;; so this can't happen :-/.
59 ;; PPS: Yes, it can happen if the user specifies UTF-16 in the MML
64 "Alist of MIME charsets to encodings.
65 Valid encodings are `7bit', `8bit', `quoted-printable' and `base64'."
66 :type
'(repeat (cons (symbol :tag
"charset")
67 (choice :tag
"encoding"
70 (const quoted-printable
)
74 (autoload 'message-options-get
"message")
75 (declare-function message-options-set
"message" (symbol value
))
77 (defun mm-encode-body (&optional charset
)
79 Should be called narrowed to the body that is to be encoded.
80 If there is more than one non-ASCII MULE charset in the body, then the
81 list of MULE charsets found is returned.
82 If CHARSET is non-nil, it is used as the MIME charset to encode the body.
83 If successful, the MIME charset is returned.
84 If no encoding was done, nil is returned."
85 (if (not (mm-multibyte-p))
86 ;; In the non-Mule case, we search for non-ASCII chars and
87 ;; return the value of `mail-parse-charset' if any are found.
90 (goto-char (point-min))
91 (if (re-search-forward "[^\x0-\x7f]" nil t
)
92 (or mail-parse-charset
93 (message-options-get 'mm-encody-body-charset
)
95 'mm-encody-body-charset
96 (mm-read-coding-system "Charset used in the article: ")))
97 ;; The logic in `mml-generate-mime-1' confirms that it's OK
98 ;; to return nil here.
103 (mm-encode-coding-region (point-min) (point-max)
104 (mm-charset-to-coding-system charset
))
106 (goto-char (point-min))
107 (let ((charsets (mm-find-mime-charset-region (point-min) (point-max)
113 ;; Too many charsets.
114 ((> (length charsets
) 1)
119 (setq charset
(car charsets
))
120 (mm-encode-coding-region (point-min) (point-max)
121 (mm-charset-to-coding-system charset
))))
124 (defun mm-long-lines-p (length)
125 "Say whether any of the lines in the buffer is longer than LENGTH."
127 (goto-char (point-min))
129 (while (and (not (eobp))
130 (not (> (current-column) length
)))
133 (and (> (current-column) length
)
136 (defvar message-posting-charset
)
138 (defun mm-body-encoding (charset &optional encoding
)
139 "Do Content-Transfer-Encoding and return the encoding of the current buffer."
140 (when (stringp encoding
)
141 (setq encoding
(intern (downcase encoding
))))
142 (let ((bits (mm-body-7-or-8))
143 (longp (mm-long-lines-p 1000)))
147 (not (and mm-use-ultra-safe-encoding
148 (or (save-excursion (re-search-forward " $" nil t
))
149 (save-excursion (re-search-forward "^From " nil t
)))))
152 ((and (not mm-use-ultra-safe-encoding
)
154 (not (cdr (assq charset mm-body-charset-encoding-alist
)))
155 (or (eq t
(cdr message-posting-charset
))
156 (memq charset
(cdr message-posting-charset
))
157 (eq charset mail-parse-charset
)))
160 (let ((encoding (or encoding
161 (cdr (assq charset mm-body-charset-encoding-alist
))
163 (when mm-use-ultra-safe-encoding
164 (setq encoding
(mm-safer-encoding encoding
)))
165 (mm-encode-content-transfer-encoding encoding
"text/plain")
168 (defun mm-body-7-or-8 ()
169 "Say whether the body is 7bit or 8bit."
171 (goto-char (point-min))
172 (skip-chars-forward mm-7bit-chars
)
178 ;;; Functions for decoding
181 (defun mm-decode-content-transfer-encoding (encoding &optional type
)
182 "Decodes buffer encoded with ENCODING, returning success status.
183 If TYPE is `text/plain' CRLF->LF translation may occur."
185 (condition-case error
187 ((eq encoding
'quoted-printable
)
188 (quoted-printable-decode-region (point-min) (point-max))
190 ((eq encoding
'base64
)
191 (base64-decode-region
193 ;; Some mailers insert whitespace
194 ;; junk at the end which
195 ;; base64-decode-region dislikes.
196 ;; Also remove possible junk which could
197 ;; have been added by mailing list software.
199 (goto-char (point-min))
200 (while (re-search-forward "^[\t ]*\r?\n" nil t
)
201 (delete-region (match-beginning 0) (match-end 0)))
202 (goto-char (point-max))
203 (when (re-search-backward "^[A-Za-z0-9+/]+=*[\t ]*$" nil t
)
206 ((memq encoding
'(nil 7bit
8bit binary
))
209 ((memq encoding
'(x-uuencode x-uue
))
211 (funcall mm-uu-decode-function
(point-min) (point-max))
213 ((eq encoding
'x-binhex
)
215 (funcall mm-uu-binhex-decode-function
(point-min) (point-max))
217 ((eq encoding
'x-yenc
)
219 (funcall mm-uu-yenc-decode-function
(point-min) (point-max))
221 ((functionp encoding
)
222 (funcall encoding
(point-min) (point-max))
225 (message "Unknown encoding %s; defaulting to 8bit" encoding
)))
227 (message "Error while decoding: %s" error
)
231 (memq encoding
'(base64 x-uuencode x-uue x-binhex x-yenc
))
232 (string-match "\\`text/" type
))
233 (goto-char (point-min))
234 (while (search-forward "\r\n" nil t
)
235 (replace-match "\n" t t
)))))
237 (defun mm-decode-body (charset &optional encoding type
)
238 "Decode the current article that has been encoded with ENCODING to CHARSET.
239 ENCODING is a MIME content transfer encoding.
240 CHARSET is the MIME charset with which to decode the data after transfer
241 decoding. If it is nil, default to `mail-parse-charset'."
242 (when (stringp charset
)
243 (setq charset
(intern (downcase charset
))))
244 (when (or (not charset
)
245 (eq 'gnus-all mail-parse-ignored-charsets
)
246 (memq 'gnus-all mail-parse-ignored-charsets
)
247 (memq charset mail-parse-ignored-charsets
))
248 (setq charset mail-parse-charset
))
251 (mm-decode-content-transfer-encoding encoding type
))
252 (when (and (featurep 'mule
) ;; Fixme: Wrong test for unibyte session.
253 (not (eq charset
'gnus-decoded
)))
254 (let ((coding-system (mm-charset-to-coding-system
255 ;; Allow overwrite using
256 ;; `mm-charset-override-alist'.
258 (if (and (not coding-system
)
259 (listp mail-parse-ignored-charsets
)
260 (memq 'gnus-unknown mail-parse-ignored-charsets
))
262 (mm-charset-to-coding-system mail-parse-charset
)))
263 (when (and charset coding-system
264 ;; buffer-file-coding-system
265 ;;Article buffer is nil coding system
268 (or (not (eq coding-system
'ascii
))
269 (setq coding-system mail-parse-charset
)))
270 (mm-decode-coding-region (point-min) (point-max)
272 (setq buffer-file-coding-system
273 (if (boundp 'last-coding-system-used
)
274 (symbol-value 'last-coding-system-used
)
277 (defun mm-decode-string (string charset
)
278 "Decode STRING with CHARSET."
279 (when (stringp charset
)
280 (setq charset
(intern (downcase charset
))))
281 (when (or (not charset
)
282 (eq 'gnus-all mail-parse-ignored-charsets
)
283 (memq 'gnus-all mail-parse-ignored-charsets
)
284 (memq charset mail-parse-ignored-charsets
))
285 (setq charset mail-parse-charset
))
287 (when (featurep 'mule
)
288 (let ((coding-system (mm-charset-to-coding-system
290 ;; Allow overwrite using
291 ;; `mm-charset-override-alist'.
293 (if (and (not coding-system
)
294 (listp mail-parse-ignored-charsets
)
295 (memq 'gnus-unknown mail-parse-ignored-charsets
))
297 (mm-charset-to-coding-system mail-parse-charset
)))
298 (when (and charset coding-system
300 (or (not (eq coding-system
'ascii
))
301 (setq coding-system mail-parse-charset
)))
302 (mm-decode-coding-string string coding-system
))))
307 ;; arch-tag: 41104bb6-4443-4ca9-8d5c-ff87ecf27d8d
308 ;;; mm-bodies.el ends here