1 ;;; mm-bodies.el --- Functions for decoding MIME things
2 ;; Copyright (C) 1998 Free Software Foundation, Inc.
4 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
5 ;; MORIOKA Tomohiko <morioka@jaist.ac.jp>
6 ;; This file is part of GNU Emacs.
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)
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.
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.
28 (or (fboundp 'base64-encode-region)
29 (autoload 'base64-decode-region "base64" nil t)))
34 (defun mm-encode-body ()
36 Should be called narrowed to the body that is to be encoded.
37 If there is more than one non-ASCII MULE charset, then list of found
38 MULE charsets are returned.
39 If successful, the MIME charset is returned.
40 If no encoding was done, nil is returned."
42 (goto-char (point-min))
44 (delq 'ascii (find-charset-region (point-min) (point-max))))
51 ((> (length charsets) 1)
56 (mm-mime-charset (car charsets) (point-min) (point-max)))
60 (not (mm-coding-system-equal
61 mime-charset buffer-file-coding-system)))
63 (if (eq (char-charset (following-char)) 'ascii)
66 (narrow-to-region start (point))
67 (mm-encode-coding-region start (point) mime-charset)
68 (goto-char (point-max)))
71 (setq start (point))))
74 (mm-encode-coding-region start (point) mime-charset)
78 (defun mm-body-encoding ()
79 "Return the encoding of the current buffer."
81 (null (delq 'ascii (find-charset-region (point-min) (point-max))))
82 ;;;!!!The following is necessary because the function
83 ;;;!!!above seems to return the wrong result under Emacs 20.3.
86 (goto-char (point-min))
87 (skip-chars-forward "\0-\177")
93 ;;; Functions for decoding
96 (defun mm-decode-content-transfer-encoding (encoding)
98 ((eq encoding 'quoted-printable)
99 (quoted-printable-decode-region (point-min) (point-max)))
100 ((eq encoding 'base64)
102 (base64-decode-region (point-min) (point-max))
104 ((memq encoding '(7bit 8bit binary))
109 (error "Can't decode encoding %s" encoding))))
111 (defun mm-decode-body (charset encoding)
112 "Decode the current article that has been encoded with ENCODING.
113 The characters in CHARSET should then be decoded."
114 (setq charset (or charset rfc2047-default-charset))
117 (mm-decode-content-transfer-encoding encoding))
118 (when (featurep 'mule)
121 (setq mule-charset (mm-charset-to-coding-system charset))
122 buffer-file-coding-system
123 ;;(not (mm-coding-system-equal
124 ;; buffer-file-coding-system mule-charset))
126 (mm-decode-coding-region (point-min) (point-max) mule-charset))))))
130 ;; mm-bodies.el ends here