(mh-send-sub): Don't find components file in current directory--this
[bpt/emacs.git] / lisp / mh-e / mh-mime.el
CommitLineData
dda00b2c 1;;; mh-mime.el --- MH-E MIME support
c26cf6c8 2
e495eaec 3;; Copyright (C) 1993, 1995,
af435184 4;; 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
a1b4049d
BW
5
6;; Author: Bill Wohler <wohler@newt.com>
7;; Maintainer: Bill Wohler <wohler@newt.com>
8;; Keywords: mail
9;; See: mh-e.el
c26cf6c8 10
60370d40 11;; This file is part of GNU Emacs.
c26cf6c8 12
9b7bc076 13;; GNU Emacs is free software; you can redistribute it and/or modify
c26cf6c8
RS
14;; it under the terms of the GNU General Public License as published by
15;; the Free Software Foundation; either version 2, or (at your option)
16;; any later version.
17
9b7bc076 18;; GNU Emacs is distributed in the hope that it will be useful,
c26cf6c8
RS
19;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21;; GNU General Public License for more details.
22
23;; You should have received a copy of the GNU General Public License
b578f267 24;; along with GNU Emacs; see the file COPYING. If not, write to the
3a35cf56
LK
25;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
26;; Boston, MA 02110-1301, USA.
c26cf6c8
RS
27
28;;; Commentary:
29
dda00b2c
BW
30;; Message composition of MIME message is done with either MH-style
31;; directives for mhn or mhbuild (MH 6.8 or later) or MML (MIME Meta
32;; Language) tags.
33
34;; TODO:
35;; Paragraph code should not fill # lines if MIME enabled.
36;; Implement mh-auto-mh-to-mime (if non-nil, \\[mh-send-letter]
37;; invokes mh-mh-to-mime automatically before sending.)
38;; Actually, instead of mh-auto-mh-to-mime,
39;; should read automhnproc from profile.
40;; MIME option to mh-forward command to move to content-description
41;; insertion point.
c26cf6c8 42
847b8219
KH
43;;; Change Log:
44
c26cf6c8
RS
45;;; Code:
46
dda00b2c
BW
47(require 'mh-e)
48(require 'mh-gnus) ;needed because mh-gnus.el not compiled
7094eefe 49
dda00b2c 50(require 'font-lock)
bdcfe844 51(require 'gnus-util)
dda00b2c
BW
52(require 'mailcap)
53(require 'mm-decode)
54(require 'mm-view)
55(require 'mml)
bdcfe844 56
bdcfe844 57(autoload 'article-emphasize "gnus-art")
bdcfe844 58(autoload 'gnus-eval-format "gnus-spec")
dda00b2c
BW
59(autoload 'mail-content-type-get "mail-parse")
60(autoload 'mail-decode-encoded-word-string "mail-parse")
61(autoload 'mail-header-parse-content-type "mail-parse")
62(autoload 'mail-header-strip "mail-parse")
bdcfe844 63(autoload 'message-options-set-recipient "message")
dda00b2c 64(autoload 'mm-decode-body "mm-bodies")
1bea9ec4 65(autoload 'mm-uu-dissect "mm-uu")
0c47b17c 66(autoload 'mml-unsecure-message "mml-sec")
924df208 67(autoload 'rfc2047-decode-region "rfc2047")
0c47b17c 68(autoload 'widget-convert-button "wid-edit")
bdcfe844 69
dda00b2c
BW
70\f
71
72;;; Variables
73
74;; This has to be a macro, since we do: (setf (mh-buffer-data) ...)
c3d9274a 75;;;###mh-autoload
dda00b2c
BW
76(defmacro mh-buffer-data ()
77 "Convenience macro to get the MIME data structures of the current buffer."
78 `(gethash (current-buffer) mh-globals-hash))
79
80;; Structure to keep track of MIME handles on a per buffer basis.
81(mh-defstruct (mh-buffer-data (:conc-name mh-mime-)
82 (:constructor mh-make-buffer-data))
83 (handles ()) ; List of MIME handles
84 (handles-cache (make-hash-table)) ; Cache to avoid multiple decodes of
85 ; nested messages
86 (parts-count 0) ; The button number is generated from
87 ; this number
88 (part-index-hash (make-hash-table))) ; Avoid incrementing the part number
89 ; for nested messages
90
91(defvar mh-mm-inline-media-tests
92 `(("image/jpeg"
93 mm-inline-image
94 (lambda (handle)
95 (mm-valid-and-fit-image-p 'jpeg handle)))
96 ("image/png"
97 mm-inline-image
98 (lambda (handle)
99 (mm-valid-and-fit-image-p 'png handle)))
100 ("image/gif"
101 mm-inline-image
102 (lambda (handle)
103 (mm-valid-and-fit-image-p 'gif handle)))
104 ("image/tiff"
105 mm-inline-image
106 (lambda (handle)
107 (mm-valid-and-fit-image-p 'tiff handle)) )
108 ("image/xbm"
109 mm-inline-image
110 (lambda (handle)
111 (mm-valid-and-fit-image-p 'xbm handle)))
112 ("image/x-xbitmap"
113 mm-inline-image
114 (lambda (handle)
115 (mm-valid-and-fit-image-p 'xbm handle)))
116 ("image/xpm"
117 mm-inline-image
118 (lambda (handle)
119 (mm-valid-and-fit-image-p 'xpm handle)))
120 ("image/x-pixmap"
121 mm-inline-image
122 (lambda (handle)
123 (mm-valid-and-fit-image-p 'xpm handle)))
124 ("image/bmp"
125 mm-inline-image
126 (lambda (handle)
127 (mm-valid-and-fit-image-p 'bmp handle)))
128 ("image/x-portable-bitmap"
129 mm-inline-image
130 (lambda (handle)
131 (mm-valid-and-fit-image-p 'pbm handle)))
132 ("text/plain" mm-inline-text identity)
133 ("text/enriched" mm-inline-text identity)
134 ("text/richtext" mm-inline-text identity)
135 ("text/x-patch" mm-display-patch-inline
136 (lambda (handle)
137 (locate-library "diff-mode")))
138 ("application/emacs-lisp" mm-display-elisp-inline identity)
139 ("application/x-emacs-lisp" mm-display-elisp-inline identity)
140 ("text/html"
141 ,(if (fboundp 'mm-inline-text-html) 'mm-inline-text-html 'mm-inline-text)
142 (lambda (handle)
143 (or (and (boundp 'mm-inline-text-html-renderer)
144 mm-inline-text-html-renderer)
145 (and (boundp 'mm-text-html-renderer) mm-text-html-renderer))))
146 ("text/x-vcard"
06e7028b 147 mh-mm-inline-text-vcard
dda00b2c
BW
148 (lambda (handle)
149 (or (featurep 'vcard)
150 (locate-library "vcard"))))
151 ("message/delivery-status" mm-inline-text identity)
152 ("message/rfc822" mh-mm-inline-message identity)
153 ;;("message/partial" mm-inline-partial identity)
154 ;;("message/external-body" mm-inline-external-body identity)
155 ("text/.*" mm-inline-text identity)
156 ("audio/wav" mm-inline-audio
157 (lambda (handle)
158 (and (or (featurep 'nas-sound) (featurep 'native-sound))
159 (device-sound-enabled-p))))
160 ("audio/au"
161 mm-inline-audio
162 (lambda (handle)
163 (and (or (featurep 'nas-sound) (featurep 'native-sound))
164 (device-sound-enabled-p))))
165 ("application/pgp-signature" ignore identity)
166 ("application/x-pkcs7-signature" ignore identity)
167 ("application/pkcs7-signature" ignore identity)
168 ("application/x-pkcs7-mime" ignore identity)
169 ("application/pkcs7-mime" ignore identity)
170 ("multipart/alternative" ignore identity)
171 ("multipart/mixed" ignore identity)
172 ("multipart/related" ignore identity)
173 ;; Disable audio and image
174 ("audio/.*" ignore ignore)
175 ("image/.*" ignore ignore)
176 ;; Default to displaying as text
06e7028b 177 (".*" mm-inline-text mh-mm-readable-p))
dda00b2c 178 "Alist of media types/tests saying whether types can be displayed inline.")
0c47b17c 179
dda00b2c
BW
180(defvar mh-mime-save-parts-directory nil
181 "Default to use for `mh-mime-save-parts-default-directory'.
182Set from last use.")
2dcf34f9 183
dda00b2c
BW
184;; Copied from gnus-art.el (should be checked for other cool things that can
185;; be added to the buttons)
186(defvar mh-mime-button-commands
187 '((mh-press-button "\r" "Toggle Display")))
188(defvar mh-mime-button-map
189 (let ((map (make-sparse-keymap)))
190 (unless (>= (string-to-number emacs-version) 21)
191 ;; XEmacs doesn't care.
192 (set-keymap-parent map mh-show-mode-map))
193 (mh-do-in-gnu-emacs
194 (define-key map [mouse-2] 'mh-push-button))
195 (mh-do-in-xemacs
196 (define-key map '(button2) 'mh-push-button))
197 (dolist (c mh-mime-button-commands)
198 (define-key map (cadr c) (car c)))
199 map))
200(defvar mh-mime-button-line-format-alist
201 '((?T long-type ?s)
202 (?d description ?s)
203 (?p index ?s)
204 (?e dots ?s)))
205(defvar mh-mime-button-line-format "%{%([%p. %d%T]%)%}%e\n")
206(defvar mh-mime-security-button-pressed nil)
207(defvar mh-mime-security-button-line-format "%{%([[%t:%i]%D]%)%}\n")
208(defvar mh-mime-security-button-end-line-format "%{%([[End of %t]%D]%)%}\n")
209(defvar mh-mime-security-button-line-format-alist
210 '((?t type ?s)
211 (?i info ?s)
212 (?d details ?s)
213 (?D pressed-details ?s)))
214(defvar mh-mime-security-button-map
215 (let ((map (make-sparse-keymap)))
216 (unless (>= (string-to-number emacs-version) 21)
217 (set-keymap-parent map mh-show-mode-map))
218 (define-key map "\r" 'mh-press-button)
219 (mh-do-in-gnu-emacs
220 (define-key map [mouse-2] 'mh-push-button))
221 (mh-do-in-xemacs
222 (define-key map '(button2) 'mh-push-button))
223 map))
bdcfe844 224
dda00b2c 225\f
2dcf34f9 226
dda00b2c 227;;; MH-Folder Commands
0c47b17c 228
dda00b2c 229;; Alphabetical.
c26cf6c8 230
dda00b2c
BW
231;;;###mh-autoload
232(defun mh-display-with-external-viewer (part-index)
233 "View attachment externally.
c26cf6c8 234
dda00b2c
BW
235If Emacs does not know how to view an attachment, you could save
236it into a file and then run some program to open it. It is
237easier, however, to launch the program directly from MH-E with
238this command. While you'll most likely use this to view
239spreadsheets and documents, it is also useful to use your browser
240to view HTML attachments with higher fidelity than what Emacs can
241provide.
847b8219 242
dda00b2c
BW
243This command displays the attachment associated with the button
244under the cursor. If the cursor is not located over a button,
245then the cursor first moves to the next button, wrapping to the
246beginning of the message if necessary. You can provide a numeric
247prefix argument PART-INDEX to view the attachment labeled with
248that number.
bdcfe844 249
dda00b2c
BW
250This command tries to provide a reasonable default for the viewer
251by calling the Emacs function `mailcap-mime-info'. This function
252usually reads the file \"/etc/mailcap\"."
253 (interactive "P")
254 (when (consp part-index) (setq part-index (car part-index)))
255 (mh-folder-mime-action
256 part-index
257 #'(lambda ()
258 (let* ((part (get-text-property (point) 'mh-data))
259 (type (mm-handle-media-type part))
260 (methods (mapcar (lambda (x) (list (cdr (assoc 'viewer x))))
261 (mailcap-mime-info type 'all)))
262 (def (caar methods))
263 (prompt (format "Viewer%s: " (if def
264 (format " (default %s)" def)
265 "")))
266 (method (completing-read prompt methods nil nil nil nil def))
267 (folder mh-show-folder-buffer)
268 (buffer-read-only nil))
269 (when (string-match "^[^% \t]+$" method)
270 (setq method (concat method " %s")))
271 (flet ((mm-handle-set-external-undisplayer (handle function)
272 (mh-handle-set-external-undisplayer folder handle function)))
273 (unwind-protect (mm-display-external part method)
274 (set-buffer-modified-p nil)))))
275 nil))
847b8219 276
f0d73c14 277;;;###mh-autoload
dda00b2c
BW
278(defun mh-folder-inline-mime-part (part-index)
279 "Show attachment verbatim.
280
281You can view the raw contents of an attachment with this command.
282This command displays (or hides) the contents of the attachment
283associated with the button under the cursor verbatim. If the
284cursor is not located over a button, then the cursor first moves
285to the next button, wrapping to the beginning of the message if
286necessary.
287
288You can also provide a numeric prefix argument PART-INDEX to view
289the attachment labeled with that number."
290 (interactive "P")
291 (when (consp part-index) (setq part-index (car part-index)))
292 (mh-folder-mime-action part-index #'mh-mime-inline-part nil))
bdcfe844 293
dda00b2c
BW
294(defun mh-mime-inline-part ()
295 "Toggle display of the raw MIME part."
296 (interactive)
297 (let* ((buffer-read-only nil)
298 (data (get-text-property (point) 'mh-data))
299 (inserted-flag (get-text-property (point) 'mh-mime-inserted))
300 (displayed-flag (mm-handle-displayed-p data))
301 (point (point))
302 start end)
303 (cond ((and data (not inserted-flag) (not displayed-flag))
304 (let ((contents (mm-get-part data)))
305 (add-text-properties (line-beginning-position) (line-end-position)
306 '(mh-mime-inserted t))
307 (setq start (point-marker))
308 (forward-line 1)
309 (mm-insert-inline data contents)
310 (setq end (point-marker))
311 (add-text-properties
312 start (progn (goto-char start) (line-end-position))
313 `(mh-region (,start . ,end)))))
314 ((and data (or inserted-flag displayed-flag))
315 (mh-press-button)
316 (message "MIME part already inserted")))
317 (goto-char point)
318 (set-buffer-modified-p nil)))
bdcfe844 319
f0d73c14 320;;;###mh-autoload
dda00b2c
BW
321(defun mh-folder-save-mime-part (part-index)
322 "Save (output) attachment.
a1b4049d 323
dda00b2c
BW
324This command saves the attachment associated with the button under the
325cursor. If the cursor is not located over a button, then the cursor
326first moves to the next button, wrapping to the beginning of the
327message if necessary.
a1b4049d 328
dda00b2c
BW
329You can also provide a numeric prefix argument PART-INDEX to save the
330attachment labeled with that number.
f0d73c14 331
dda00b2c
BW
332This command prompts you for a filename and suggests a specific name
333if it is available."
334 (interactive "P")
335 (when (consp part-index) (setq part-index (car part-index)))
336 (mh-folder-mime-action part-index #'mh-mime-save-part nil))
0c47b17c 337
dda00b2c
BW
338(defun mh-mime-save-part ()
339 "Save MIME part at point."
340 (interactive)
341 (let ((data (get-text-property (point) 'mh-data)))
342 (when data
343 (let ((mm-default-directory
344 (file-name-as-directory (or mh-mime-save-parts-directory
345 default-directory))))
346 (mh-mm-save-part data)
347 (setq mh-mime-save-parts-directory mm-default-directory)))))
c26cf6c8 348
dda00b2c
BW
349;;;###mh-autoload
350(defun mh-folder-toggle-mime-part (part-index)
351 "View attachment.
352
353This command displays (or hides) the attachment associated with
354the button under the cursor. If the cursor is not located over a
355button, then the cursor first moves to the next button, wrapping
356to the beginning of the message if necessary. This command has
357the advantage over related commands of working from the MH-Folder
358buffer.
359
360You can also provide a numeric prefix argument PART-INDEX to view
361the attachment labeled with that number. If Emacs does not know
362how to display the attachment, then Emacs offers to save the
363attachment in a file."
364 (interactive "P")
365 (when (consp part-index) (setq part-index (car part-index)))
366 (mh-folder-mime-action part-index #'mh-press-button t))
c26cf6c8 367
c3d9274a 368;;;###mh-autoload
dda00b2c
BW
369(defun mh-mime-save-parts (prompt)
370 "Save attachments.
af435184 371
dda00b2c
BW
372You can save all of the attachments at once with this command.
373The attachments are saved in the directory specified by the
374option `mh-mime-save-parts-default-directory' unless you use a
375prefix argument PROMPT in which case you are prompted for the
376directory. These directories may be superseded by MH profile
377components, since this function calls on \"mhstore\" (\"mhn\") to
378do the work."
379 (interactive "P")
380 (let ((msg (if (eq major-mode 'mh-show-mode)
381 (mh-show-buffer-message-number)
382 (mh-get-msg-num t)))
383 (folder (if (eq major-mode 'mh-show-mode)
384 mh-show-folder-buffer
385 mh-current-folder))
386 (command (if (mh-variant-p 'nmh) "mhstore" "mhn"))
387 (directory
388 (cond
389 ((and (or prompt
390 (equal nil mh-mime-save-parts-default-directory)
391 (equal t mh-mime-save-parts-default-directory))
392 (not mh-mime-save-parts-directory))
393 (read-file-name "Store in directory: " nil nil t nil))
394 ((and (or prompt
395 (equal t mh-mime-save-parts-default-directory))
396 mh-mime-save-parts-directory)
397 (read-file-name (format
398 "Store in directory (default %s): "
399 mh-mime-save-parts-directory)
400 "" mh-mime-save-parts-directory t ""))
401 ((stringp mh-mime-save-parts-default-directory)
402 mh-mime-save-parts-default-directory)
403 (t
404 mh-mime-save-parts-directory))))
405 (if (and (equal directory "") mh-mime-save-parts-directory)
406 (setq directory mh-mime-save-parts-directory))
407 (if (not (file-directory-p directory))
408 (message "No directory specified")
409 (if (equal nil mh-mime-save-parts-default-directory)
410 (setq mh-mime-save-parts-directory directory))
411 (save-excursion
412 (set-buffer (get-buffer-create mh-log-buffer))
413 (cd directory)
414 (setq mh-mime-save-parts-directory directory)
415 (let ((initial-size (mh-truncate-log-buffer)))
416 (apply 'call-process
417 (expand-file-name command mh-progs) nil t nil
418 (mh-list-to-string (list folder msg "-auto")))
419 (if (> (buffer-size) initial-size)
420 (save-window-excursion
421 (switch-to-buffer-other-window mh-log-buffer)
422 (sit-for 3))))))))
bdcfe844 423
dda00b2c
BW
424;;;###mh-autoload
425(defun mh-toggle-mh-decode-mime-flag ()
426 "Toggle the value of `mh-decode-mime-flag'."
427 (interactive)
428 (setq mh-decode-mime-flag (not mh-decode-mime-flag))
429 (mh-show nil t)
430 (message "%s" (if mh-decode-mime-flag
431 "Processing attachments normally"
432 "Displaying raw message")))
c26cf6c8 433
c3d9274a 434;;;###mh-autoload
dda00b2c
BW
435(defun mh-toggle-mime-buttons ()
436 "Toggle option `mh-display-buttons-for-inline-parts-flag'."
437 (interactive)
438 (setq mh-display-buttons-for-inline-parts-flag
439 (not mh-display-buttons-for-inline-parts-flag))
440 (mh-show nil t))
af435184 441
dda00b2c 442\f
0c47b17c 443
dda00b2c
BW
444;;; MIME Display Routines
445
446(defun mh-mm-inline-message (handle)
447 "Display message, HANDLE.
448The function decodes the message and displays it. It avoids
449decoding the same message multiple times."
450 (let ((b (point))
451 (clean-message-header mh-clean-message-header-flag)
452 (invisible-headers mh-invisible-header-fields-compiled)
453 (visible-headers nil))
454 (save-excursion
455 (save-restriction
456 (narrow-to-region b b)
457 (mm-insert-part handle)
458 (mh-mime-display
459 (or (gethash handle (mh-mime-handles-cache (mh-buffer-data)))
460 (setf (gethash handle (mh-mime-handles-cache (mh-buffer-data)))
461 (let ((handles (mm-dissect-buffer nil)))
462 (if handles
06e7028b 463 (mh-mm-uu-dissect-text-parts handles)
dda00b2c
BW
464 (setq handles (mm-uu-dissect)))
465 (setf (mh-mime-handles (mh-buffer-data))
06e7028b 466 (mh-mm-merge-handles
dda00b2c
BW
467 handles (mh-mime-handles (mh-buffer-data))))
468 handles))))
469
470 (goto-char (point-min))
471 (mh-show-xface)
472 (cond (clean-message-header
473 (mh-clean-msg-header (point-min)
474 invisible-headers
475 visible-headers)
476 (goto-char (point-min)))
477 (t
478 (mh-start-of-uncleaned-message)))
479 (mh-decode-message-header)
480 (mh-show-addr)
481 ;; The other highlighting types don't need anything special
482 (when (eq mh-highlight-citation-style 'gnus)
483 (mh-gnus-article-highlight-citation))
484 (goto-char (point-min))
485 (insert "\n------- Forwarded Message\n\n")
486 (mh-display-smileys)
487 (mh-display-emphasis)
488 (mm-handle-set-undisplayer
489 handle
490 `(lambda ()
491 (let (buffer-read-only)
492 (if (fboundp 'remove-specifier)
493 ;; This is only valid on XEmacs.
494 (mapcar (lambda (prop)
495 (remove-specifier
496 (face-property 'default prop) (current-buffer)))
497 '(background background-pixmap foreground)))
498 (delete-region ,(point-min-marker) ,(point-max-marker)))))))))
c26cf6c8 499
f0d73c14 500;;;###mh-autoload
dda00b2c
BW
501(defun mh-decode-message-header ()
502 "Decode RFC2047 encoded message header fields."
503 (when mh-decode-mime-flag
504 (let ((buffer-read-only nil))
505 (rfc2047-decode-region (point-min) (mh-mail-header-end)))))
af435184 506
dda00b2c
BW
507;;;###mh-autoload
508(defun mh-mime-display (&optional pre-dissected-handles)
509 "Display (and possibly decode) MIME handles.
510Optional argument, PRE-DISSECTED-HANDLES is a list of MIME
511handles. If present they are displayed otherwise the buffer is
512parsed and then displayed."
513 (let ((handles ())
514 (folder mh-show-folder-buffer)
515 (raw-message-data (buffer-string)))
516 (flet ((mm-handle-set-external-undisplayer
517 (handle function)
518 (mh-handle-set-external-undisplayer folder handle function)))
519 (goto-char (point-min))
520 (unless (search-forward "\n\n" nil t)
521 (goto-char (point-max))
522 (insert "\n\n"))
0c47b17c 523
dda00b2c
BW
524 (condition-case err
525 (progn
526 ;; If needed dissect the current buffer
527 (if pre-dissected-handles
528 (setq handles pre-dissected-handles)
529 (if (setq handles (mm-dissect-buffer nil))
06e7028b 530 (mh-mm-uu-dissect-text-parts handles)
dda00b2c
BW
531 (setq handles (mm-uu-dissect)))
532 (setf (mh-mime-handles (mh-buffer-data))
06e7028b
BW
533 (mh-mm-merge-handles handles
534 (mh-mime-handles (mh-buffer-data))))
dda00b2c
BW
535 (unless handles
536 (mh-decode-message-body)))
0c47b17c 537
dda00b2c
BW
538 (cond ((and handles
539 (or (not (stringp (car handles)))
540 (cdr handles)))
541 ;; Go to start of message body
542 (goto-char (point-min))
543 (or (search-forward "\n\n" nil t)
544 (goto-char (point-max)))
0c47b17c 545
dda00b2c
BW
546 ;; Delete the body
547 (delete-region (point) (point-max))
0c47b17c 548
dda00b2c
BW
549 ;; Display the MIME handles
550 (mh-mime-display-part handles))
551 (t
552 (mh-signature-highlight))))
553 (error
554 (message "Could not display body: %s" (error-message-string err))
555 (delete-region (point-min) (point-max))
556 (insert raw-message-data))))))
c26cf6c8 557
dda00b2c
BW
558(defun mh-decode-message-body ()
559 "Decode message based on charset.
560If message has been encoded for transfer take that into account."
561 (let (ct charset cte)
f0d73c14 562 (goto-char (point-min))
dda00b2c
BW
563 (re-search-forward "\n\n" nil t)
564 (save-restriction
565 (narrow-to-region (point-min) (point))
566 (setq ct (ignore-errors (mail-header-parse-content-type
567 (message-fetch-field "Content-Type" t)))
568 charset (mail-content-type-get ct 'charset)
569 cte (message-fetch-field "Content-Transfer-Encoding")))
570 (when (stringp cte) (setq cte (mail-header-strip cte)))
571 (when (or (not ct) (equal (car ct) "text/plain"))
572 (save-restriction
573 (narrow-to-region (min (1+ (mh-mail-header-end)) (point-max))
574 (point-max))
575 (mm-decode-body charset
576 (and cte (intern (downcase
577 (gnus-strip-whitespace cte))))
578 (car ct))))))
f0d73c14 579
dda00b2c
BW
580(defun mh-mime-display-part (handle)
581 "Decides the viewer to call based on the type of HANDLE."
582 (cond ((null handle)
583 nil)
584 ((not (stringp (car handle)))
585 (mh-mime-display-single handle))
586 ((equal (car handle) "multipart/alternative")
587 (mh-mime-display-alternative (cdr handle)))
588 ((and mh-pgp-support-flag
589 (or (equal (car handle) "multipart/signed")
590 (equal (car handle) "multipart/encrypted")))
591 (mh-mime-display-security handle))
592 (t
593 (mh-mime-display-mixed (cdr handle)))))
af435184 594
dda00b2c
BW
595(defun mh-mime-display-mixed (handles)
596 "Display the list of MIME parts, HANDLES recursively."
597 (mapcar #'mh-mime-display-part handles))
60370d40 598
dda00b2c
BW
599(defun mh-mime-display-alternative (handles)
600 "Choose among the alternatives, HANDLES the part that will be displayed.
601If no part is preferred then all the parts are displayed."
602 (let* ((preferred (mm-preferred-alternative handles))
603 (others (loop for x in handles unless (eq x preferred) collect x)))
604 (cond ((and preferred
605 (stringp (car preferred)))
606 (mh-mime-display-part preferred)
607 (mh-mime-maybe-display-alternatives others))
608 (preferred
609 (save-restriction
610 (narrow-to-region (point) (if (eobp) (point) (1+ (point))))
611 (mh-mime-display-single preferred)
612 (mh-mime-maybe-display-alternatives others)
613 (goto-char (point-max))))
614 (t
615 (mh-mime-display-mixed handles)))))
924df208 616
dda00b2c
BW
617(defun mh-mime-maybe-display-alternatives (alternatives)
618 "Show buttons for ALTERNATIVES.
619If `mh-mime-display-alternatives-flag' is non-nil then display
620buttons for alternative parts that are usually suppressed."
621 (when (and mh-display-buttons-for-alternatives-flag alternatives)
622 (insert "\n----------------------------------------------------\n")
623 (insert "Alternatives:\n")
624 (dolist (x alternatives)
625 (insert "\n")
626 (mh-insert-mime-button x (mh-mime-part-index x) nil))
627 (insert "\n----------------------------------------------------\n")))
bdcfe844 628
dda00b2c
BW
629(defun mh-mime-display-security (handle)
630 "Display PGP encrypted/signed message, HANDLE."
631 (save-restriction
632 (narrow-to-region (point) (point))
633 (insert "\n")
634 (mh-insert-mime-security-button handle)
635 (mh-mime-display-mixed (cdr handle))
636 (insert "\n")
637 (let ((mh-mime-security-button-line-format
638 mh-mime-security-button-end-line-format))
639 (mh-insert-mime-security-button handle))
06e7028b 640 (mh-mm-set-handle-multipart-parameter
dda00b2c 641 handle 'mh-region (cons (point-min-marker) (point-max-marker)))))
bdcfe844 642
dda00b2c
BW
643(defun mh-mime-display-single (handle)
644 "Display a leaf node, HANDLE in the MIME tree."
645 (let* ((type (mm-handle-media-type handle))
646 (small-image-flag (mh-small-image-p handle))
647 (attachmentp (equal (car (mm-handle-disposition handle))
648 "attachment"))
649 (inlinep (and (equal (car (mm-handle-disposition handle)) "inline")
650 (mm-inlinable-p handle)
651 (mm-inlined-p handle)))
652 (displayp (or inlinep ; show if inline OR
653 (mh-inline-vcard-p handle); inline vcard OR
654 (and (not attachmentp) ; if not an attachment
655 (or small-image-flag ; and small image
656 ; and user wants inline
657 (and (not (equal
658 (mm-handle-media-supertype handle)
659 "image"))
660 (mm-inlinable-p handle)
661 (mm-inlined-p handle)))))))
662 (save-restriction
663 (narrow-to-region (point) (if (eobp) (point) (1+ (point))))
664 (cond ((and mh-pgp-support-flag
665 (equal type "application/pgp-signature"))
666 nil) ; skip signatures as they are already handled...
667 ((not displayp)
668 (insert "\n")
669 (mh-insert-mime-button handle (mh-mime-part-index handle) nil))
670 ((and displayp
671 (not mh-display-buttons-for-inline-parts-flag))
672 (or (mm-display-part handle)
673 (mm-display-part handle))
674 (mh-signature-highlight handle))
675 ((and displayp
676 mh-display-buttons-for-inline-parts-flag)
677 (insert "\n")
678 (mh-insert-mime-button handle (mh-mime-part-index handle) nil)
679 (forward-line -1)
680 (mh-mm-display-part handle)))
681 (goto-char (point-max)))))
0c47b17c 682
dda00b2c
BW
683;; There is a bug in Gnus inline image display due to which an extra line
684;; gets inserted every time it is viewed. To work around that problem we are
685;; using an extra property 'mh-region to remember the region that is added
686;; when the button is clicked. The region is then deleted to make sure that
687;; no extra lines get inserted.
688(defun mh-mm-display-part (handle)
689 "Toggle display of button for MIME part, HANDLE."
690 (beginning-of-line)
691 (let ((id (get-text-property (point) 'mh-part))
692 (point (point))
693 (window (selected-window))
694 (mail-parse-charset 'nil)
695 (mail-parse-ignored-charsets nil)
696 region buffer-read-only)
697 (save-excursion
698 (unwind-protect
699 (let ((win (get-buffer-window (current-buffer) t)))
700 (when win
701 (select-window win))
702 (goto-char point)
bdcfe844 703
dda00b2c
BW
704 (if (mm-handle-displayed-p handle)
705 ;; This will remove the part.
706 (progn
707 ;; Delete the button and displayed part (if any)
708 (let ((region (get-text-property point 'mh-region)))
709 (when region
710 (mh-funcall-if-exists
711 remove-images (car region) (cdr region)))
712 (mm-display-part handle)
713 (when region
714 (delete-region (car region) (cdr region))))
715 ;; Delete button (if it still remains). This happens for
716 ;; externally displayed parts where the previous step does
717 ;; nothing.
718 (unless (eolp)
719 (delete-region (point) (progn (forward-line) (point)))))
720 (save-restriction
721 (delete-region (point) (progn (forward-line 1) (point)))
722 (narrow-to-region (point) (point))
723 ;; Maybe we need another unwind-protect here.
724 (when (equal (mm-handle-media-supertype handle) "image")
725 (insert "\n"))
726 (when (and (not (eq (ignore-errors (mm-display-part handle))
727 'inline))
728 (equal (mm-handle-media-supertype handle)
729 "image"))
730 (goto-char (point-min))
731 (delete-char 1))
732 (when (equal (mm-handle-media-supertype handle) "text")
733 (when (eq mh-highlight-citation-style 'gnus)
734 (mh-gnus-article-highlight-citation))
735 (mh-display-smileys)
736 (mh-display-emphasis)
737 (mh-signature-highlight handle))
738 (setq region (cons (progn (goto-char (point-min))
739 (point-marker))
740 (progn (goto-char (point-max))
741 (point-marker)))))))
742 (when (window-live-p window)
743 (select-window window))
744 (goto-char point)
745 (beginning-of-line)
746 (mh-insert-mime-button handle id (mm-handle-displayed-p handle))
747 (goto-char point)
748 (when region
749 (add-text-properties (line-beginning-position) (line-end-position)
750 `(mh-region ,region)))))))
2dcf34f9 751
dda00b2c
BW
752(defun mh-mime-part-index (handle)
753 "Generate the button number for MIME part, HANDLE.
754Notice that a hash table is used to display the same number when
755buttons need to be displayed multiple times (for instance when
756nested messages are opened)."
757 (or (gethash handle (mh-mime-part-index-hash (mh-buffer-data)))
758 (setf (gethash handle (mh-mime-part-index-hash (mh-buffer-data)))
759 (incf (mh-mime-parts-count (mh-buffer-data))))))
bdcfe844 760
dda00b2c
BW
761(defun mh-small-image-p (handle)
762 "Decide whether HANDLE is a \"small\" image that can be displayed inline.
763This is only useful if a Content-Disposition header is not present."
764 (let ((media-test (caddr (assoc (car (mm-handle-type handle))
765 mh-mm-inline-media-tests)))
766 (mm-inline-large-images t))
767 (and media-test
768 (equal (mm-handle-media-supertype handle) "image")
769 (funcall media-test handle) ; Since mm-inline-large-images is T,
770 ; this only tells us if the image is
771 ; something that emacs can display
772 (let* ((image (mm-get-image handle)))
773 (or (mh-do-in-xemacs
774 (and (mh-funcall-if-exists glyphp image)
775 (< (glyph-width image)
776 (or mh-max-inline-image-width (window-pixel-width)))
777 (< (glyph-height image)
778 (or mh-max-inline-image-height
779 (window-pixel-height)))))
780 (mh-do-in-gnu-emacs
781 (let ((size (mh-funcall-if-exists image-size image)))
782 (and size
783 (< (cdr size) (or mh-max-inline-image-height
784 (1- (window-height))))
785 (< (car size) (or mh-max-inline-image-width
786 (window-width)))))))))))
f0d73c14 787
dda00b2c
BW
788(defun mh-inline-vcard-p (handle)
789 "Decide if HANDLE is a vcard that must be displayed inline."
790 (let ((type (mm-handle-type handle)))
791 (and (or (featurep 'vcard) (fboundp 'vcard-pretty-print))
792 (consp type)
793 (equal (car type) "text/x-vcard")
794 (save-excursion
795 (save-restriction
796 (widen)
797 (goto-char (point-min))
798 (not (mh-signature-separator-p)))))))
f0d73c14 799
dda00b2c
BW
800(defun mh-signature-highlight (&optional handle)
801 "Highlight message signature in HANDLE.
802The optional argument, HANDLE is a MIME handle if the function is
803being used to highlight the signature in a MIME part."
804 (let ((regexp
805 (cond ((not handle) "^-- $")
806 ((not (and (equal (mm-handle-media-supertype handle) "text")
807 (equal (mm-handle-media-subtype handle) "html")))
808 "^-- $")
809 ((eq (mh-mm-text-html-renderer) 'lynx) "^ --$")
810 (t "^--$"))))
811 (save-excursion
812 (goto-char (point-max))
813 (when (re-search-backward regexp nil t)
814 (mh-do-in-gnu-emacs
815 (let ((ov (make-overlay (point) (point-max))))
816 (overlay-put ov 'face 'mh-show-signature)
817 (overlay-put ov 'evaporate t)))
818 (mh-do-in-xemacs
819 (set-extent-property (make-extent (point) (point-max))
820 'face 'mh-show-signature))))))
2dcf34f9 821
dda00b2c 822\f
bdcfe844 823
dda00b2c 824;;; Button Display
bdcfe844 825
04f6a2d1 826;; Shush compiler.
dda00b2c 827(eval-when-compile (mh-do-in-xemacs (defvar dots) (defvar type) (defvar ov)))
2dcf34f9 828
dda00b2c
BW
829(defun mh-insert-mime-button (handle index displayed)
830 "Insert MIME button for HANDLE.
831INDEX is the part number that will be DISPLAYED. It is also used
832by commands like \"K v\" which operate on individual MIME parts."
833 ;; The button could be displayed by a previous decode. In that case
834 ;; undisplay it if we need a hidden button.
835 (when (and (mm-handle-displayed-p handle) (not displayed))
836 (mm-display-part handle))
837 (let ((name (or (mail-content-type-get (mm-handle-type handle) 'name)
838 (mail-content-type-get (mm-handle-disposition handle)
839 'filename)
840 (mail-content-type-get (mm-handle-type handle) 'url)
841 ""))
842 (type (mm-handle-media-type handle))
843 (description (mail-decode-encoded-word-string
844 (or (mm-handle-description handle) "")))
845 (dots (if (or displayed (mm-handle-displayed-p handle)) " " "..."))
846 long-type begin end)
847 (if (string-match ".*/" name) (setq name (substring name (match-end 0))))
848 (setq long-type (concat type (and (not (equal name ""))
849 (concat "; " name))))
850 (unless (equal description "")
851 (setq long-type (concat " --- " long-type)))
852 (unless (bolp) (insert "\n"))
853 (setq begin (point))
854 (gnus-eval-format
855 mh-mime-button-line-format mh-mime-button-line-format-alist
06e7028b 856 `(,@(mh-gnus-local-map-property mh-mime-button-map)
dda00b2c
BW
857 mh-callback mh-mm-display-part
858 mh-part ,index
859 mh-data ,handle))
860 (setq end (point))
861 (widget-convert-button
862 'link begin end
863 :mime-handle handle
864 :action 'mh-widget-press-button
865 :button-keymap mh-mime-button-map
866 :help-echo
867 "Mouse-2 click or press RET (in show buffer) to toggle display")
868 (dolist (ov (mh-funcall-if-exists overlays-in begin end))
869 (mh-funcall-if-exists overlay-put ov 'evaporate t))))
bdcfe844 870
dda00b2c
BW
871;; Shush compiler.
872(eval-when-compile
873 (when (< emacs-major-version 22)
874 (defvar mm-verify-function-alist)
875 (defvar mm-decrypt-function-alist))
876 (mh-do-in-xemacs
877 (defvar pressed-details)))
f0d73c14 878
dda00b2c
BW
879(defun mh-insert-mime-security-button (handle)
880 "Display buttons for PGP message, HANDLE."
06e7028b 881 (let* ((protocol (mh-mm-handle-multipart-ctl-parameter handle 'protocol))
dda00b2c
BW
882 (crypto-type (or (nth 2 (assoc protocol mm-verify-function-alist))
883 (nth 2 (assoc protocol mm-decrypt-function-alist))
884 "Unknown"))
885 (type (concat crypto-type
886 (if (equal (car handle) "multipart/signed")
887 " Signed" " Encrypted")
888 " Part"))
06e7028b 889 (info (or (mh-mm-handle-multipart-ctl-parameter handle 'gnus-info)
dda00b2c 890 "Undecided"))
06e7028b 891 (details (mh-mm-handle-multipart-ctl-parameter handle 'gnus-details))
dda00b2c
BW
892 pressed-details begin end face)
893 (setq details (if details (concat "\n" details) ""))
894 (setq pressed-details (if mh-mime-security-button-pressed details ""))
895 (setq face (mh-mime-security-button-face info))
896 (unless (bolp) (insert "\n"))
897 (setq begin (point))
898 (gnus-eval-format
899 mh-mime-security-button-line-format
900 mh-mime-security-button-line-format-alist
06e7028b 901 `(,@(mh-gnus-local-map-property mh-mime-security-button-map)
dda00b2c
BW
902 mh-button-pressed ,mh-mime-security-button-pressed
903 mh-callback mh-mime-security-press-button
904 mh-line-format ,mh-mime-security-button-line-format
905 mh-data ,handle))
906 (setq end (point))
907 (widget-convert-button 'link begin end
908 :mime-handle handle
909 :action 'mh-widget-press-button
910 :button-keymap mh-mime-security-button-map
911 :button-face face
912 :help-echo "Mouse-2 click or press RET (in show buffer) to see security details.")
913 (dolist (ov (mh-funcall-if-exists overlays-in begin end))
914 (mh-funcall-if-exists overlay-put ov 'evaporate t))
915 (when (equal info "Failed")
916 (let* ((type (if (equal (car handle) "multipart/signed")
917 "verification" "decryption"))
918 (warning (if (equal type "decryption")
919 "(passphrase may be incorrect)" "")))
920 (message "%s %s failed %s" crypto-type type warning)))))
2dcf34f9 921
dda00b2c
BW
922(defun mh-mime-security-button-face (info)
923 "Return the button face to use for encrypted/signed mail based on INFO."
924 (cond ((string-match "OK" info) ;Decrypted mail
925 'mh-show-pgg-good)
926 ((string-match "Failed" info) ;Decryption failed or signature invalid
927 'mh-show-pgg-bad)
928 ((string-match "Undecided" info);Unprocessed mail
929 'mh-show-pgg-unknown)
930 ((string-match "Untrusted" info);Key not trusted
931 'mh-show-pgg-unknown)
932 (t
933 'mh-show-pgg-good)))
f0d73c14 934
dda00b2c 935\f
2dcf34f9 936
dda00b2c
BW
937;;; Button Handlers
938
939(defun mh-folder-mime-action (part-index action include-security-flag)
940 "Go to PART-INDEX and carry out ACTION.
941
942If PART-INDEX is nil then go to the next part in the buffer. The
943search for the next buffer wraps around if end of buffer is reached.
944If argument INCLUDE-SECURITY-FLAG is non-nil then include security
945info buttons when searching for a suitable parts."
946 (unless mh-showing-mode
947 (mh-show))
948 (mh-in-show-buffer (mh-show-buffer)
949 (let ((criterion
950 (cond (part-index
951 (lambda (p)
952 (let ((part (get-text-property p 'mh-part)))
953 (and (integerp part) (= part part-index)))))
954 (t (lambda (p)
955 (if include-security-flag
956 (get-text-property p 'mh-data)
957 (integerp (get-text-property p 'mh-part)))))))
958 (point (point)))
959 (cond ((and (get-text-property point 'mh-part)
960 (or (null part-index)
961 (= (get-text-property point 'mh-part) part-index)))
962 (funcall action))
963 ((and (get-text-property point 'mh-data)
964 include-security-flag
965 (null part-index))
966 (funcall action))
967 (t
968 (mh-goto-next-button nil criterion)
969 (if (= (point) point)
970 (message "No matching MIME part found")
971 (funcall action)))))))
f0d73c14
BW
972
973;;;###mh-autoload
dda00b2c
BW
974(defun mh-goto-next-button (backward-flag &optional criterion)
975 "Search for next button satisfying criterion.
976
977If BACKWARD-FLAG is non-nil search backward in the buffer for a mime
978button.
979If CRITERION is a function or a symbol which has a function binding
980then that function must return non-nil at the button we stop."
981 (unless (or (and (symbolp criterion) (fboundp criterion))
982 (functionp criterion))
983 (setq criterion (lambda (x) t)))
984 ;; Move to the next button in the buffer satisfying criterion
985 (goto-char (or (save-excursion
986 (beginning-of-line)
987 ;; Find point before current button
988 (let ((point-before-current-button
989 (save-excursion
990 (while (get-text-property (point) 'mh-data)
991 (unless (= (forward-line
992 (if backward-flag 1 -1))
993 0)
994 (if backward-flag
995 (goto-char (point-min))
996 (goto-char (point-max)))))
997 (point))))
998 ;; Skip over current button
999 (while (and (get-text-property (point) 'mh-data)
1000 (not (if backward-flag (bobp) (eobp))))
1001 (forward-line (if backward-flag -1 1)))
1002 ;; Stop at next MIME button if any exists.
1003 (block loop
1004 (while (/= (progn
1005 (unless (= (forward-line
1006 (if backward-flag -1 1))
1007 0)
1008 (if backward-flag
1009 (goto-char (point-max))
1010 (goto-char (point-min)))
1011 (beginning-of-line))
1012 (point))
1013 point-before-current-button)
1014 (when (and (get-text-property (point) 'mh-data)
1015 (funcall criterion (point)))
1016 (return-from loop (point))))
1017 nil)))
1018 (point))))
2dcf34f9 1019
dda00b2c
BW
1020(defun mh-widget-press-button (widget el)
1021 "Callback for widget, WIDGET.
1022Parameter EL is unused."
1023 (goto-char (widget-get widget :from))
1024 (mh-press-button))
bdcfe844 1025
dda00b2c
BW
1026(defun mh-press-button ()
1027 "View contents of button.
bdcfe844 1028
dda00b2c
BW
1029This command is a toggle so if you use it again on the same
1030attachment, the attachment is hidden."
1031 (interactive)
1032 (let ((mm-inline-media-tests mh-mm-inline-media-tests)
1033 (data (get-text-property (point) 'mh-data))
1034 (function (get-text-property (point) 'mh-callback))
1035 (buffer-read-only nil)
1036 (folder mh-show-folder-buffer))
1037 (flet ((mm-handle-set-external-undisplayer
1038 (handle function)
1039 (mh-handle-set-external-undisplayer folder handle function)))
1040 (when (and function (eolp))
1041 (backward-char))
1042 (unwind-protect (and function (funcall function data))
1043 (set-buffer-modified-p nil)))))
bdcfe844 1044
dda00b2c
BW
1045(defun mh-push-button (event)
1046 "Click MIME button for EVENT.
bdcfe844 1047
dda00b2c
BW
1048If the MIME part is visible then it is removed. Otherwise the
1049part is displayed. This function is called when the mouse is used
1050to click the MIME button."
1051 (interactive "e")
1052 (mh-do-at-event-location event
1053 (let ((folder mh-show-folder-buffer)
1054 (mm-inline-media-tests mh-mm-inline-media-tests)
1055 (data (get-text-property (point) 'mh-data))
1056 (function (get-text-property (point) 'mh-callback)))
1057 (flet ((mm-handle-set-external-undisplayer (handle func)
1058 (mh-handle-set-external-undisplayer folder handle func)))
1059 (and function (funcall function data))))))
bdcfe844
BW
1060
1061(defun mh-handle-set-external-undisplayer (folder handle function)
1062 "Replacement for `mm-handle-set-external-undisplayer'.
2dcf34f9
BW
1063
1064This is only called in recent versions of Gnus. The MIME handles
1065are stored in data structures corresponding to MH-E folder buffer
1066FOLDER instead of in Gnus (as in the original). The MIME part,
1067HANDLE is associated with the undisplayer FUNCTION."
06e7028b 1068 (if (mh-mm-keep-viewer-alive-p handle)
bdcfe844 1069 (let ((new-handle (copy-sequence handle)))
c3d9274a
BW
1070 (mm-handle-set-undisplayer new-handle function)
1071 (mm-handle-set-undisplayer handle nil)
bdcfe844
BW
1072 (save-excursion
1073 (set-buffer folder)
1074 (push new-handle (mh-mime-handles (mh-buffer-data)))))
1075 (mm-handle-set-undisplayer handle function)))
1076
dda00b2c
BW
1077(defun mh-mime-security-press-button (handle)
1078 "Callback from security button for part HANDLE."
06e7028b 1079 (if (mh-mm-handle-multipart-ctl-parameter handle 'gnus-info)
dda00b2c 1080 (mh-mime-security-show-details handle)
06e7028b 1081 (let ((region (mh-mm-handle-multipart-ctl-parameter handle 'mh-region))
dda00b2c
BW
1082 point)
1083 (setq point (point))
1084 (goto-char (car region))
1085 (delete-region (car region) (cdr region))
06e7028b 1086 (with-current-buffer (mh-mm-handle-multipart-ctl-parameter handle 'buffer)
dda00b2c
BW
1087 (let* ((mm-verify-option 'known)
1088 (mm-decrypt-option 'known)
06e7028b 1089 (new (mh-mm-possibly-verify-or-decrypt (cdr handle) handle)))
dda00b2c 1090 (unless (eq new (cdr handle))
06e7028b 1091 (mh-mm-destroy-parts (cdr handle))
dda00b2c
BW
1092 (setcdr handle new))))
1093 (mh-mime-display-security handle)
1094 (goto-char point))))
1095
1096;; I rewrote the security part because Gnus doesn't seem to ever minimize
1097;; the button. That is once the mime-security button is pressed there seems
1098;; to be no way of getting rid of the inserted text.
1099(defun mh-mime-security-show-details (handle)
1100 "Toggle display of detailed security info for HANDLE."
06e7028b 1101 (let ((details (mh-mm-handle-multipart-ctl-parameter handle 'gnus-details)))
dda00b2c
BW
1102 (when details
1103 (let ((mh-mime-security-button-pressed
1104 (not (get-text-property (point) 'mh-button-pressed)))
1105 (mh-mime-security-button-line-format
1106 (get-text-property (point) 'mh-line-format)))
1107 (forward-char -1)
1108 (while (eq (get-text-property (point) 'mh-line-format)
1109 mh-mime-security-button-line-format)
1110 (forward-char -1))
1111 (forward-char)
1112 (save-restriction
1113 (narrow-to-region (point) (point))
1114 (mh-insert-mime-security-button handle))
1115 (delete-region
1116 (point)
1117 (or (text-property-not-all
1118 (point) (point-max)
1119 'mh-line-format mh-mime-security-button-line-format)
1120 (point-max)))
1121 (forward-line -1)))))
1122
bdcfe844
BW
1123\f
1124
dda00b2c 1125;;; Miscellaneous Article Washing
bdcfe844 1126
c3d9274a 1127;;;###mh-autoload
bdcfe844
BW
1128(defun mh-add-missing-mime-version-header ()
1129 "Some mail programs don't put a MIME-Version header.
2dcf34f9
BW
1130I have seen this only in spam, so maybe we shouldn't fix
1131this ;-)"
bdcfe844
BW
1132 (save-excursion
1133 (goto-char (point-min))
a66894d8
BW
1134 (re-search-forward "\n\n" nil t)
1135 (save-restriction
1136 (narrow-to-region (point-min) (point))
1137 (when (and (message-fetch-field "content-type")
1138 (not (message-fetch-field "mime-version")))
1139 (goto-char (point-min))
bdcfe844
BW
1140 (insert "MIME-Version: 1.0\n")))))
1141
c3d9274a 1142;;;###mh-autoload
bdcfe844 1143(defun mh-display-smileys ()
0c47b17c 1144 "Display smileys."
a66894d8
BW
1145 (when (and mh-graphical-smileys-flag (mh-small-show-buffer-p))
1146 (mh-funcall-if-exists smiley-region (point-min) (point-max))))
bdcfe844 1147
c3d9274a 1148;;;###mh-autoload
bdcfe844 1149(defun mh-display-emphasis ()
0c47b17c 1150 "Display graphical emphasis."
a66894d8 1151 (when (and mh-graphical-emphasis-flag (mh-small-show-buffer-p))
c3d9274a 1152 (flet ((article-goto-body ())) ; shadow this function to do nothing
bdcfe844
BW
1153 (save-excursion
1154 (goto-char (point-min))
1155 (article-emphasize)))))
1156
dda00b2c
BW
1157(defun mh-small-show-buffer-p ()
1158 "Check if show buffer is small.
1159This is used to decide if smileys and graphical emphasis should be
1160displayed."
1161 (let ((max nil))
1162 (when (and (boundp 'font-lock-maximum-size) font-lock-maximum-size)
1163 (cond ((numberp font-lock-maximum-size)
1164 (setq max font-lock-maximum-size))
1165 ((listp font-lock-maximum-size)
1166 (setq max (cdr (or (assoc 'mh-show-mode font-lock-maximum-size)
1167 (assoc t font-lock-maximum-size)))))))
1168 (or (not (numberp max)) (>= (/ max 8) (buffer-size)))))
bdcfe844 1169
dda00b2c 1170\f
bdcfe844 1171
dda00b2c 1172;;; MH-Letter Commands
553fb735 1173
dda00b2c 1174;; MH-E commands are alphabetical; specific support routines follow command.
bdcfe844 1175
dda00b2c
BW
1176;;;###mh-autoload
1177(defun mh-compose-forward (&optional description folder range)
1178 "Add tag to forward a message.
bdcfe844 1179
dda00b2c
BW
1180You are prompted for a content DESCRIPTION, the name of the
1181FOLDER in which the messages to forward are located, and a RANGE
1182of messages, which defaults to the current message in that
1183folder. Check the documentation of `mh-interactive-range' to see
1184how RANGE is read in interactive use.
924df208 1185
dda00b2c
BW
1186The option `mh-compose-insertion' controls what type of tags are inserted."
1187 (interactive
1188 (let* ((description
1189 (mml-minibuffer-read-description))
1190 (folder
1191 (mh-prompt-for-folder "Message from"
1192 mh-sent-from-folder nil))
1193 (default
1194 (if (and (equal folder mh-sent-from-folder)
1195 (numberp mh-sent-from-msg))
1196 mh-sent-from-msg
1197 (nth 0 (mh-translate-range folder "cur"))))
1198 (range
1199 (mh-read-range "Forward" folder
1200 (or (and default
1201 (number-to-string default))
1202 t)
1203 t t)))
1204 (list description folder range)))
1205 (let ((messages (mapconcat 'identity (mh-list-to-string range) " ")))
1206 (dolist (message (mh-translate-range folder messages))
1207 (if (equal mh-compose-insertion 'mml)
1208 (mh-mml-forward-message description folder (format "%s" message))
1209 (mh-mh-forward-message description folder (format "%s" message))))))
d103d8b3 1210
924df208 1211;;;###mh-autoload
dda00b2c
BW
1212(defun mh-mml-forward-message (description folder message)
1213 "Forward a message as attachment.
924df208 1214
dda00b2c
BW
1215The function will prompt the user for a DESCRIPTION, a FOLDER and
1216MESSAGE number."
1217 (let ((msg (if (and (equal message "") (numberp mh-sent-from-msg))
1218 mh-sent-from-msg
1219 (string-to-number message))))
1220 (cond ((integerp msg)
1221 (if (string= "" description)
1222 ;; Rationale: mml-attach-file constructs a malformed composition
1223 ;; if the description string is empty. This fixes SF #625168.
1224 (mml-attach-file (format "%s%s/%d"
1225 mh-user-path (substring folder 1) msg)
1226 "message/rfc822")
1227 (mml-attach-file (format "%s%s/%d"
1228 mh-user-path (substring folder 1) msg)
1229 "message/rfc822"
1230 description)))
1231 (t (error "The message number, %s, is not a integer" msg)))))
924df208 1232
dda00b2c
BW
1233(defun mh-mh-forward-message (&optional description folder messages)
1234 "Add tag to forward a message.
1235You are prompted for a content DESCRIPTION, the name of the
1236FOLDER in which the messages to forward are located, and the
1237MESSAGES' numbers.
924df208 1238
dda00b2c
BW
1239See also \\[mh-mh-to-mime]."
1240 (interactive (list
1241 (mml-minibuffer-read-description)
1242 (mh-prompt-for-folder "Message from" mh-sent-from-folder nil)
1243 (read-string (concat "Messages"
1244 (if (numberp mh-sent-from-msg)
1245 (format " (default %d): "
1246 mh-sent-from-msg)
1247 ": ")))))
1248 (beginning-of-line)
1249 (insert "#forw [")
1250 (and description
1251 (not (string= description ""))
1252 (insert description))
1253 (insert "]")
1254 (and folder
1255 (not (string= folder ""))
1256 (insert " " folder))
1257 (if (and messages
1258 (not (string= messages "")))
1259 (let ((start (point)))
1260 (insert " " messages)
1261 (subst-char-in-region start (point) ?, ? ))
1262 (if (numberp mh-sent-from-msg)
1263 (insert " " (int-to-string mh-sent-from-msg))))
1264 (insert "\n"))
bdcfe844 1265
dda00b2c
BW
1266;;;###mh-autoload
1267(defun mh-compose-insertion (&optional inline)
1268 "Add tag to include a file such as an image or sound.
bdcfe844 1269
dda00b2c
BW
1270You are prompted for the filename containing the object, the
1271media type if it cannot be determined automatically, and a
1272content description. If you're using MH-style directives, you
1273will also be prompted for additional attributes.
bdcfe844 1274
dda00b2c
BW
1275The option `mh-compose-insertion' controls what type of tags are
1276inserted. Optional argument INLINE means make it an inline
1277attachment."
1278 (interactive "P")
1279 (if (equal mh-compose-insertion 'mml)
1280 (if inline
1281 (mh-mml-attach-file "inline")
1282 (mh-mml-attach-file))
1283 (call-interactively 'mh-mh-attach-file)))
bdcfe844 1284
dda00b2c
BW
1285(defun mh-mml-attach-file (&optional disposition)
1286 "Add a tag to insert a MIME message part from a file.
bdcfe844 1287
dda00b2c
BW
1288You are prompted for the filename containing the object, the
1289media type if it cannot be determined automatically, a content
1290description and the DISPOSITION of the attachment.
a66894d8 1291
dda00b2c
BW
1292This is basically `mml-attach-file' from Gnus, modified such that a prefix
1293argument yields an \"inline\" disposition and Content-Type is determined
1294automatically."
1295 (let* ((file (mml-minibuffer-read-file "Attach file: "))
1296 (type (mh-minibuffer-read-type file))
1297 (description (mml-minibuffer-read-description))
1298 (dispos (or disposition
06e7028b 1299 (mh-mml-minibuffer-read-disposition type))))
dda00b2c
BW
1300 (mml-insert-empty-tag 'part 'type type 'filename file
1301 'disposition dispos 'description description)))
bdcfe844 1302
dda00b2c
BW
1303(defun mh-mh-attach-file (filename type description attributes)
1304 "Add a tag to insert a MIME message part from a file.
1305You are prompted for the FILENAME containing the object, the
1306media TYPE if it cannot be determined automatically, and a
1307content DESCRIPTION. In addition, you are also prompted for
1308additional ATTRIBUTES.
bdcfe844 1309
dda00b2c
BW
1310See also \\[mh-mh-to-mime]."
1311 (interactive (let ((filename (mml-minibuffer-read-file "Attach file: ")))
1312 (list
1313 filename
1314 (mh-minibuffer-read-type filename)
1315 (mml-minibuffer-read-description)
1316 (read-string "Attributes: "
1317 (concat "name=\""
1318 (file-name-nondirectory filename)
1319 "\"")))))
1320 (mh-mh-compose-type filename type description attributes))
bdcfe844 1321
dda00b2c
BW
1322(defun mh-mh-compose-type (filename type
1323 &optional description attributes comment)
1324 "Insert an MH-style directive to insert a file.
1325The file specified by FILENAME is encoded as TYPE. An optional
1326DESCRIPTION is used as the Content-Description field, optional
1327set of ATTRIBUTES and an optional COMMENT can also be included."
1328 (beginning-of-line)
1329 (insert "#" type)
1330 (and attributes
1331 (insert "; " attributes))
1332 (and comment
1333 (insert " (" comment ")"))
1334 (insert " [")
1335 (and description
1336 (insert description))
1337 (insert "] " (expand-file-name filename))
1338 (insert "\n"))
c3d9274a 1339
dda00b2c
BW
1340;;;###mh-autoload
1341(defun mh-mh-compose-anon-ftp (host filename type description)
1342 "Add tag to include anonymous ftp reference to a file.
bdcfe844 1343
dda00b2c
BW
1344You can have your message initiate an \"ftp\" transfer when the
1345recipient reads the message. You are prompted for the remote HOST
1346and FILENAME, the media TYPE, and the content DESCRIPTION.
f0d73c14 1347
dda00b2c
BW
1348See also \\[mh-mh-to-mime]."
1349 (interactive (list
1350 (read-string "Remote host: ")
1351 (read-string "Remote filename: ")
1352 (mh-minibuffer-read-type "DUMMY-FILENAME")
1353 (mml-minibuffer-read-description)))
1354 (mh-mh-compose-external-type "anon-ftp" host filename
1355 type description))
924df208 1356
dda00b2c
BW
1357;;;###mh-autoload
1358(defun mh-mh-compose-external-compressed-tar (host filename description)
1359 "Add tag to include anonymous ftp reference to a compressed tar file.
bdcfe844 1360
dda00b2c
BW
1361In addition to retrieving the file via anonymous \"ftp\" as per
1362the command \\[mh-mh-compose-anon-ftp], the file will also be
1363uncompressed and untarred. You are prompted for the remote HOST
1364and FILENAME and the content DESCRIPTION.
bdcfe844 1365
dda00b2c
BW
1366See also \\[mh-mh-to-mime]."
1367 (interactive (list
1368 (read-string "Remote host: ")
1369 (read-string "Remote filename: ")
1370 (mml-minibuffer-read-description)))
1371 (mh-mh-compose-external-type "anon-ftp" host filename
1372 "application/octet-stream"
1373 description
1374 "type=tar; conversions=x-compress"
1375 "mode=image"))
1376
1377;; RFC 2045 - Multipurpose Internet Mail Extensions (MIME) Part One:
1378;; Format of Internet Message Bodies.
1379;; RFC 2046 - Multipurpose Internet Mail Extensions (MIME) Part Two:
1380;; Media Types.
1381;; RFC 2049 - Multipurpose Internet Mail Extensions (MIME) Part Five:
1382;; Conformance Criteria and Examples.
1383;; RFC 2017 - Definition of the URL MIME External-Body Access-Type
1384;; RFC 1738 - Uniform Resource Locators (URL)
1385(defvar mh-access-types
1386 '(("anon-ftp") ; RFC2046 Anonymous File Transfer Protocol
1387 ("file") ; RFC1738 Host-specific file names
1388 ("ftp") ; RFC2046 File Transfer Protocol
1389 ("gopher") ; RFC1738 The Gopher Protocol
1390 ("http") ; RFC1738 Hypertext Transfer Protocol
1391 ("local-file") ; RFC2046 Local file access
1392 ("mail-server") ; RFC2046 mail-server Electronic mail address
1393 ("mailto") ; RFC1738 Electronic mail address
1394 ("news") ; RFC1738 Usenet news
1395 ("nntp") ; RFC1738 Usenet news using NNTP access
1396 ("propspero") ; RFC1738 Prospero Directory Service
1397 ("telnet") ; RFC1738 Telnet
1398 ("tftp") ; RFC2046 Trivial File Transfer Protocol
1399 ("url") ; RFC2017 URL scheme MIME access-type Protocol
1400 ("wais")) ; RFC1738 Wide Area Information Servers
1401 "Valid MIME access-type values.")
bdcfe844 1402
c3d9274a 1403;;;###mh-autoload
dda00b2c
BW
1404(defun mh-mh-compose-external-type (access-type host filename type
1405 &optional description
1406 attributes parameters
1407 comment)
1408 "Add tag to refer to a remote file.
553fb735 1409
dda00b2c
BW
1410This command is a general utility for referencing external files.
1411In fact, all of the other commands that insert directives to
1412access external files call this command. You are prompted for the
1413ACCESS-TYPE, remote HOST and FILENAME, and content TYPE. If you
1414provide a prefix argument, you are also prompted for a content
1415DESCRIPTION, ATTRIBUTES, PARAMETERS, and a COMMENT.
bdcfe844 1416
dda00b2c
BW
1417See also \\[mh-mh-to-mime]."
1418 (interactive (list
1419 (completing-read "Access type: " mh-access-types)
1420 (read-string "Remote host: ")
1421 (read-string "Remote filename: ")
1422 (mh-minibuffer-read-type "DUMMY-FILENAME")
1423 (if current-prefix-arg (mml-minibuffer-read-description))
1424 (if current-prefix-arg (read-string "Attributes: "))
1425 (if current-prefix-arg (read-string "Parameters: "))
1426 (if current-prefix-arg (read-string "Comment: "))))
1427 (beginning-of-line)
1428 (insert "#@" type)
1429 (and attributes
1430 (insert "; " attributes))
1431 (and comment
1432 (insert " (" comment ") "))
1433 (insert " [")
1434 (and description
1435 (insert description))
1436 (insert "] ")
1437 (insert "access-type=" access-type "; ")
1438 (insert "site=" host)
1439 (insert "; name=" (file-name-nondirectory filename))
1440 (let ((directory (file-name-directory filename)))
1441 (and directory
1442 (insert "; directory=\"" directory "\"")))
1443 (and parameters
1444 (insert "; " parameters))
1445 (insert "\n"))
2dcf34f9 1446
dda00b2c
BW
1447(defvar mh-mh-to-mime-args nil
1448 "Extra arguments for \\[mh-mh-to-mime] to pass to the \"mhbuild\" command.
1449The arguments are passed to \"mhbuild\" if \\[mh-mh-to-mime] is
1450given a prefix argument. Normally default arguments to
1451\"mhbuild\" are specified in the MH profile.")
bdcfe844 1452
c3d9274a 1453;;;###mh-autoload
dda00b2c
BW
1454(defun mh-mh-to-mime (&optional extra-args)
1455 "Compose MIME message from MH-style directives.
bdcfe844 1456
dda00b2c
BW
1457Typically, you send a message with attachments just like any other
1458message. However, you may take a sneak preview of the MIME encoding if
1459you wish by running this command.
bdcfe844 1460
dda00b2c
BW
1461If you wish to pass additional arguments to \"mhbuild\" (\"mhn\")
1462to affect how it builds your message, use the option
1463`mh-mh-to-mime-args'. For example, you can build a consistency
1464check into the message by setting `mh-mh-to-mime-args' to
1465\"-check\". The recipient of your message can then run \"mhbuild
1466-check\" on the message--\"mhbuild\" (\"mhn\") will complain if
1467the message has been corrupted on the way. This command only
1468consults this option when given a prefix argument EXTRA-ARGS.
553fb735 1469
dda00b2c
BW
1470The hook `mh-mh-to-mime-hook' is called after the message has been
1471formatted.
2dcf34f9 1472
dda00b2c
BW
1473The effects of this command can be undone by running
1474\\[mh-mh-to-mime-undo]."
1475 (interactive "*P")
1476 (mh-mh-quote-unescaped-sharp)
1477 (save-buffer)
1478 (message "Running %s..." (if (mh-variant-p 'nmh) "mhbuild" "mhn"))
1479 (cond
1480 ((mh-variant-p 'nmh)
1481 (mh-exec-cmd-error nil
1482 "mhbuild"
1483 (if extra-args mh-mh-to-mime-args)
1484 buffer-file-name))
1485 (t
1486 (mh-exec-cmd-error (format "mhdraft=%s" buffer-file-name)
1487 "mhn"
1488 (if extra-args mh-mh-to-mime-args)
1489 buffer-file-name)))
1490 (revert-buffer t t)
1491 (message "Running %s...done" (if (mh-variant-p 'nmh) "mhbuild" "mhn"))
1492 (run-hooks 'mh-mh-to-mime-hook))
2dcf34f9 1493
dda00b2c
BW
1494(defun mh-mh-quote-unescaped-sharp ()
1495 "Quote \"#\" characters that haven't been quoted for \"mhbuild\".
1496If the \"#\" character is present in the first column, but it isn't
1497part of a MH-style directive then \"mhbuild\" gives an error.
1498This function will quote all such characters."
1499 (save-excursion
1500 (goto-char (point-min))
1501 (while (re-search-forward "^#" nil t)
1502 (beginning-of-line)
1503 (unless (mh-mh-directive-present-p (point) (line-end-position))
1504 (insert "#"))
1505 (goto-char (line-end-position)))))
f0d73c14 1506
dda00b2c
BW
1507;;;###mh-autoload
1508(defun mh-mh-to-mime-undo (noconfirm)
1509 "Undo effects of \\[mh-mh-to-mime].
bdcfe844 1510
dda00b2c
BW
1511It does this by reverting to a backup file. You are prompted to
1512confirm this action, but you can avoid the confirmation by adding
1513a prefix argument NOCONFIRM."
1514 (interactive "*P")
1515 (if (null buffer-file-name)
1516 (error "Buffer does not seem to be associated with any file"))
1517 (let ((backup-strings '("," "#"))
1518 backup-file)
1519 (while (and backup-strings
1520 (not (file-exists-p
1521 (setq backup-file
1522 (concat (file-name-directory buffer-file-name)
1523 (car backup-strings)
1524 (file-name-nondirectory buffer-file-name)
1525 ".orig")))))
1526 (setq backup-strings (cdr backup-strings)))
1527 (or backup-strings
1528 (error "Backup file for %s no longer exists" buffer-file-name))
1529 (or noconfirm
1530 (yes-or-no-p (format "Revert buffer from file %s? "
1531 backup-file))
1532 (error "Revert not confirmed"))
1533 (let ((buffer-read-only nil))
1534 (erase-buffer)
1535 (insert-file-contents backup-file))
1536 (after-find-file nil)))
bdcfe844 1537
dda00b2c
BW
1538;; Shush compiler.
1539(eval-when-compile (defvar mh-identity-pgg-default-user-id))
bdcfe844 1540
dda00b2c
BW
1541;;;###mh-autoload
1542(defun mh-mml-secure-message-encrypt (method)
1543 "Add tag to encrypt the message.
e495eaec 1544
dda00b2c
BW
1545A proper multipart message is created for you when you send the
1546message. Use the command \\[mh-mml-unsecure-message] to remove
1547this tag. Use a prefix argument METHOD to be prompted for one of
1548the possible security methods (see `mh-mml-method-default')."
1549 (interactive (list (mh-mml-query-cryptographic-method)))
1550 (mh-secure-message method "encrypt" mh-identity-pgg-default-user-id))
bdcfe844 1551
dda00b2c
BW
1552;;;###mh-autoload
1553(defun mh-mml-secure-message-sign (method)
1554 "Add tag to sign the message.
bdcfe844 1555
dda00b2c
BW
1556A proper multipart message is created for you when you send the
1557message. Use the command \\[mh-mml-unsecure-message] to remove
1558this tag. Use a prefix argument METHOD to be prompted for one of
1559the possible security methods (see `mh-mml-method-default')."
1560 (interactive (list (mh-mml-query-cryptographic-method)))
1561 (mh-secure-message method "sign" mh-identity-pgg-default-user-id))
bdcfe844 1562
dda00b2c
BW
1563;;;###mh-autoload
1564(defun mh-mml-secure-message-signencrypt (method)
1565 "Add tag to encrypt and sign the message.
bdcfe844 1566
dda00b2c
BW
1567A proper multipart message is created for you when you send the
1568message. Use the command \\[mh-mml-unsecure-message] to remove
1569this tag. Use a prefix argument METHOD to be prompted for one of
1570the possible security methods (see `mh-mml-method-default')."
1571 (interactive (list (mh-mml-query-cryptographic-method)))
1572 (mh-secure-message method "signencrypt" mh-identity-pgg-default-user-id))
1573
1574(defvar mh-mml-cryptographic-method-history ())
1575
1576(defun mh-mml-query-cryptographic-method ()
1577 "Read the cryptographic method to use."
1578 (if current-prefix-arg
1579 (let ((def (or (car mh-mml-cryptographic-method-history)
1580 mh-mml-method-default)))
1581 (completing-read (format "Method (default %s): " def)
1582 '(("pgp") ("pgpmime") ("smime"))
1583 nil t nil 'mh-mml-cryptographic-method-history def))
1584 mh-mml-method-default))
1585
1586(defun mh-secure-message (method mode &optional identity)
1587 "Add tag to encrypt or sign message.
1588
1589METHOD should be one of: \"pgpmime\", \"pgp\", \"smime\".
1590MODE should be one of: \"sign\", \"encrypt\", \"signencrypt\", \"none\".
1591IDENTITY is optionally the default-user-id to use."
1592 (if (not mh-pgp-support-flag)
1593 (error "Your version of Gnus does not support PGP/GPG")
1594 ;; Check the arguments
1595 (let ((valid-methods (list "pgpmime" "pgp" "smime"))
1596 (valid-modes (list "sign" "encrypt" "signencrypt" "none")))
1597 (if (not (member method valid-methods))
1598 (error "Method %s is invalid" method))
1599 (if (not (member mode valid-modes))
1600 (error "Mode %s is invalid" mode))
1601 (mml-unsecure-message)
1602 (if (not (string= mode "none"))
1603 (save-excursion
1604 (goto-char (point-min))
1605 (mh-goto-header-end 1)
1606 (if mh-identity-pgg-default-user-id
1607 (mml-insert-tag 'secure 'method method 'mode mode
1608 'sender mh-identity-pgg-default-user-id)
1609 (mml-insert-tag 'secure 'method method 'mode mode)))))))
1610
1611;;;###mh-autoload
1612(defun mh-mml-to-mime ()
1613 "Compose MIME message from MML tags.
1614
1615Typically, you send a message with attachments just like any
1616other message. However, you may take a sneak preview of the MIME
1617encoding if you wish by running this command.
1618
1619This action can be undone by running \\[undo]."
1620 (interactive)
1621 (require 'message)
1622 (when mh-pgp-support-flag ;; This is only needed for PGP
1623 (message-options-set-recipient))
1624 (let ((saved-text (buffer-string))
1625 (buffer (current-buffer))
1626 (modified-flag (buffer-modified-p)))
1627 (condition-case err (mml-to-mime)
1628 (error
1629 (with-current-buffer buffer
1630 (delete-region (point-min) (point-max))
1631 (insert saved-text)
1632 (set-buffer-modified-p modified-flag))
1633 (error (error-message-string err))))))
1634
1635;;;###mh-autoload
1636(defun mh-mml-unsecure-message ()
1637 "Remove any secure message tags."
1638 (interactive)
1639 (if (not mh-pgp-support-flag)
1640 (error "Your version of Gnus does not support PGP/GPG")
1641 (mml-unsecure-message)))
1642
1643\f
1644
1645;;; Support Routines for MH-Letter Commands
1646
1647;;;###mh-autoload
1648(defun mh-mml-tag-present-p ()
1649 "Check if the current buffer has text which may be a MML tag."
1650 (save-excursion
1651 (goto-char (point-min))
1652 (re-search-forward
1653 (concat
1654 "\\(<#\\(mml\\|part\\)\\(.\\|\n\\)*>[ \n\t]*<#/\\(mml\\|part\\)>\\|"
1655 "^<#secure.+>$\\)")
1656 nil t)))
1657
1658(defvar mh-media-type-regexp
1659 (concat (regexp-opt '("text" "image" "audio" "video" "application"
1660 "multipart" "message") t)
1661 "/[-.+a-zA-Z0-9]+")
1662 "Regexp matching valid media types used in MIME attachment compositions.")
1663
1664;;;###mh-autoload
1665(defun mh-mh-directive-present-p (&optional begin end)
1666 "Check if the text between BEGIN and END might be a MH-style directive.
1667The optional argument BEGIN defaults to the beginning of the
1668buffer, while END defaults to the the end of the buffer."
1669 (unless begin (setq begin (point-min)))
1670 (unless end (setq end (point-max)))
1671 (save-excursion
1672 (block 'search-for-mh-directive
1673 (goto-char begin)
1674 (while (re-search-forward "^#" end t)
1675 (let ((s (buffer-substring-no-properties (point) (line-end-position))))
1676 (cond ((equal s ""))
1677 ((string-match "^forw[ \t\n]+" s)
1678 (return-from 'search-for-mh-directive t))
1679 (t (let ((first-token (car (split-string s "[ \t;@]"))))
1680 (when (and first-token
1681 (string-match mh-media-type-regexp
1682 first-token))
1683 (return-from 'search-for-mh-directive t)))))))
1684 nil)))
1685
1686(defun mh-minibuffer-read-type (filename &optional default)
1687 "Return the content type associated with the given FILENAME.
1688If the \"file\" command exists and recognizes the given file,
1689then its value is returned\; otherwise, the user is prompted for
1690a type (see `mailcap-mime-types' and for Emacs 20,
1691`mh-mime-content-types').
1692Optional argument DEFAULT is returned if a type isn't entered."
1693 (mailcap-parse-mimetypes)
1694 (let* ((default (or default
1695 (mm-default-file-encoding filename)
1696 "application/octet-stream"))
1697 (probed-type (mh-file-mime-type filename))
1698 (type (or (and (not (equal probed-type "application/octet-stream"))
1699 probed-type)
1700 (completing-read
1701 (format "Content type (default %s): " default)
1702 (mapcar 'list (mailcap-mime-types))))))
1703 (if (not (equal type ""))
1704 type
1705 default)))
1706
1707;;;###mh-autoload
1708(defun mh-file-mime-type (filename)
1709 "Return MIME type of FILENAME from file command.
1710Returns nil if file command not on system."
1711 (cond
1712 ((not (mh-have-file-command))
1713 nil) ;no file command, exit now
1714 ((not (and (file-exists-p filename)
1715 (file-readable-p filename)))
1716 nil) ;no file or not readable, ditto
1717 (t
bdcfe844 1718 (save-excursion
dda00b2c
BW
1719 (let ((tmp-buffer (get-buffer-create mh-temp-buffer)))
1720 (set-buffer tmp-buffer)
1721 (unwind-protect
1722 (progn
1723 (call-process "file" nil '(t nil) nil "-b" "-i"
1724 (expand-file-name filename))
1725 (goto-char (point-min))
1726 (if (not (re-search-forward mh-media-type-regexp nil t))
1727 nil
1728 (mh-file-mime-type-substitute (match-string 0) filename)))
1729 (kill-buffer tmp-buffer)))))))
bdcfe844 1730
dda00b2c
BW
1731(defvar mh-file-mime-type-substitutions
1732 '(("application/msword" "\.xls" "application/ms-excel")
1733 ("application/msword" "\.ppt" "application/ms-powerpoint")
1734 ("text/plain" "\.vcf" "text/x-vcard"))
1735 "Substitutions to make for Content-Type returned from file command.
1736The first element is the Content-Type returned by the file command.
1737The second element is a regexp matching the file name, usually the
1738extension.
1739The third element is the Content-Type to replace with.")
1740
1741(defun mh-file-mime-type-substitute (content-type filename)
1742 "Return possibly changed CONTENT-TYPE on the FILENAME.
1743Substitutions are made from the `mh-file-mime-type-substitutions'
1744variable."
1745 (let ((subst mh-file-mime-type-substitutions)
1746 (type) (match) (answer content-type)
1747 (case-fold-search t))
1748 (while subst
1749 (setq type (car (car subst))
1750 match (elt (car subst) 1))
1751 (if (and (string-equal content-type type)
1752 (string-match match filename))
1753 (setq answer (elt (car subst) 2)
1754 subst nil)
1755 (setq subst (cdr subst))))
1756 answer))
1757
1758(defvar mh-have-file-command 'undefined
1759 "Cached value of function `mh-have-file-command'.
1760Do not reference this variable directly as it might not have been
1761initialized. Always use the command `mh-have-file-command'.")
1762
1763;;;###mh-autoload
1764(defun mh-have-file-command ()
1765 "Return t if 'file' command is on the system.
1766'file -i' is used to get MIME type of composition insertion."
1767 (when (eq mh-have-file-command 'undefined)
1768 (setq mh-have-file-command
1769 (and (fboundp 'executable-find)
1770 (executable-find "file") ; file command exists
1771 ; and accepts -i and -b args.
1772 (zerop (call-process "file" nil nil nil "-i" "-b"
1773 (expand-file-name "inc" mh-progs))))))
1774 mh-have-file-command)
1775
1776\f
1777
1778;;; MIME Cleanup
1779
1780;;;###mh-autoload
1781(defun mh-mime-cleanup ()
1782 "Free the decoded MIME parts."
1783 (let ((mime-data (gethash (current-buffer) mh-globals-hash)))
1784 ;; This is for Emacs, what about XEmacs?
1785 (mh-funcall-if-exists remove-images (point-min) (point-max))
1786 (when mime-data
06e7028b 1787 (mh-mm-destroy-parts (mh-mime-handles mime-data))
dda00b2c
BW
1788 (remhash (current-buffer) mh-globals-hash))))
1789
1790;;;###mh-autoload
1791(defun mh-destroy-postponed-handles ()
1792 "Free MIME data for externally displayed MIME parts."
1793 (let ((mime-data (mh-buffer-data)))
1794 (when mime-data
06e7028b 1795 (mh-mm-destroy-parts (mh-mime-handles mime-data)))
dda00b2c 1796 (remhash (current-buffer) mh-globals-hash)))
bdcfe844
BW
1797
1798(provide 'mh-mime)
1799
cee9f5c6
BW
1800;; Local Variables:
1801;; indent-tabs-mode: nil
1802;; sentence-end-double-space: nil
1803;; End:
bdcfe844 1804
cee9f5c6 1805;; arch-tag: 0dd36518-1b64-4a84-8f4e-59f422d3f002
60370d40 1806;;; mh-mime.el ends here