* gnus-art.el (gnus-mime-copy-part): Find name parameter in Content-Type header
[gnus] / lisp / mm-decode.el
1 ;;; mm-decode.el --- Functions for decoding MIME things
2
3 ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 ;;   2005, 2006 Free Software Foundation, Inc.
5
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;;      MORIOKA Tomohiko <morioka@jaist.ac.jp>
8 ;; This file is part of GNU Emacs.
9
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 2, or (at your option)
13 ;; any later version.
14
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.
19
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.
24
25 ;;; Commentary:
26
27 ;;; Code:
28
29 (require 'mail-parse)
30 (require 'mailcap)
31 (require 'mm-bodies)
32 (eval-when-compile (require 'cl)
33                    (require 'term))
34
35 (eval-and-compile
36   (autoload 'mm-inline-partial "mm-partial")
37   (autoload 'mm-inline-external-body "mm-extern")
38   (autoload 'mm-extern-cache-contents "mm-extern")
39   (autoload 'mm-insert-inline "mm-view"))
40
41 (defvar gnus-current-window-configuration)
42
43 (add-hook 'gnus-exit-gnus-hook 'mm-destroy-postponed-undisplay-list)
44
45 (defgroup mime-display ()
46   "Display of MIME in mail and news articles."
47   :link '(custom-manual "(emacs-mime)Display Customization")
48   :version "21.1"
49   :group 'mail
50   :group 'news
51   :group 'multimedia)
52
53 (defgroup mime-security ()
54   "MIME security in mail and news articles."
55   :link '(custom-manual "(emacs-mime)Display Customization")
56   :group 'mail
57   :group 'news
58   :group 'multimedia)
59
60 ;;; Convenience macros.
61
62 (defmacro mm-handle-buffer (handle)
63   `(nth 0 ,handle))
64 (defmacro mm-handle-type (handle)
65   `(nth 1 ,handle))
66 (defsubst mm-handle-media-type (handle)
67   (if (stringp (car handle))
68       (car handle)
69     (car (mm-handle-type handle))))
70 (defsubst mm-handle-media-supertype (handle)
71   (car (split-string (mm-handle-media-type handle) "/")))
72 (defsubst mm-handle-media-subtype (handle)
73   (cadr (split-string (mm-handle-media-type handle) "/")))
74 (defmacro mm-handle-encoding (handle)
75   `(nth 2 ,handle))
76 (defmacro mm-handle-undisplayer (handle)
77   `(nth 3 ,handle))
78 (defmacro mm-handle-set-undisplayer (handle function)
79   `(setcar (nthcdr 3 ,handle) ,function))
80 (defmacro mm-handle-disposition (handle)
81   `(nth 4 ,handle))
82 (defmacro mm-handle-description (handle)
83   `(nth 5 ,handle))
84 (defmacro mm-handle-cache (handle)
85   `(nth 6 ,handle))
86 (defmacro mm-handle-set-cache (handle contents)
87   `(setcar (nthcdr 6 ,handle) ,contents))
88 (defmacro mm-handle-id (handle)
89   `(nth 7 ,handle))
90 (defmacro mm-handle-multipart-original-buffer (handle)
91   `(get-text-property 0 'buffer (car ,handle)))
92 (defmacro mm-handle-multipart-from (handle)
93   `(get-text-property 0 'from (car ,handle)))
94 (defmacro mm-handle-multipart-ctl-parameter (handle parameter)
95   `(get-text-property 0 ,parameter (car ,handle)))
96
97 (defmacro mm-make-handle (&optional buffer type encoding undisplayer
98                                     disposition description cache
99                                     id)
100   `(list ,buffer ,type ,encoding ,undisplayer
101          ,disposition ,description ,cache ,id))
102
103 (defcustom mm-text-html-renderer
104   (cond ((locate-library "w3") 'w3)
105         ((executable-find "w3m") (if (locate-library "w3m")
106                                      'w3m
107                                    'w3m-standalone))
108         ((executable-find "links") 'links)
109         ((executable-find "lynx") 'lynx)
110         (t 'html2text))
111   "Render of HTML contents.
112 It is one of defined renderer types, or a rendering function.
113 The defined renderer types are:
114 `w3'   : use Emacs/W3;
115 `w3m'  : use emacs-w3m;
116 `w3m-standalone': use w3m;
117 `links': use links;
118 `lynx' : use lynx;
119 `html2text' : use html2text;
120 nil    : use external viewer."
121   :version "22.1"
122   :type '(choice (const w3)
123                  (const w3m)
124                  (const w3m-standalone)
125                  (const links)
126                  (const lynx)
127                  (const html2text)
128                  (const nil)
129                  (function))
130   :group 'mime-display)
131
132 (defvar mm-inline-text-html-renderer nil
133   "Function used for rendering inline HTML contents.
134 It is suggested to customize `mm-text-html-renderer' instead.")
135
136 (defcustom mm-inline-text-html-with-images nil
137   "If non-nil, Gnus will allow retrieving images in HTML contents with
138 the <img> tags.  It has no effect on Emacs/w3.  See also the
139 documentation for the `mm-w3m-safe-url-regexp' variable."
140   :version "22.1"
141   :type 'boolean
142   :group 'mime-display)
143
144 (defcustom mm-w3m-safe-url-regexp "\\`cid:"
145   "Regexp matching URLs which are considered to be safe.
146 Some HTML mails might contain a nasty trick used by spammers, using
147 the <img> tag which is far more evil than the [Click Here!] button.
148 It is most likely intended to check whether the ominous spam mail has
149 reached your eyes or not, in which case the spammer knows for sure
150 that your email address is valid.  It is done by embedding an
151 identifier string into a URL that you might automatically retrieve
152 when displaying the image.  The default value is \"\\\\`cid:\" which only
153 matches parts embedded to the Multipart/Related type MIME contents and
154 Gnus will never connect to the spammer's site arbitrarily.  You may
155 set this variable to nil if you consider all urls to be safe."
156   :version "22.1"
157   :type '(choice (regexp :tag "Regexp")
158                  (const :tag "All URLs are safe" nil))
159   :group 'mime-display)
160
161 (defcustom mm-inline-text-html-with-w3m-keymap t
162   "If non-nil, use emacs-w3m command keys in the article buffer."
163   :version "22.1"
164   :type 'boolean
165   :group 'mime-display)
166
167 (defcustom mm-enable-external t
168   "Indicate whether external MIME handlers should be used.
169
170 If t, all defined external MIME handlers are used.  If nil, files are saved by
171 `mailcap-save-binary-file'.  If it is the symbol `ask', you are prompted
172 before the external MIME handler is invoked."
173   :version "22.1"
174   :type '(choice (const :tag "Always" t)
175                  (const :tag "Never" nil)
176                  (const :tag "Ask" ask))
177   :group 'mime-display)
178
179 (defcustom mm-inline-media-tests
180   '(("image/p?jpeg"
181      mm-inline-image
182      (lambda (handle)
183        (mm-valid-and-fit-image-p 'jpeg handle)))
184     ("image/png"
185      mm-inline-image
186      (lambda (handle)
187        (mm-valid-and-fit-image-p 'png handle)))
188     ("image/gif"
189      mm-inline-image
190      (lambda (handle)
191        (mm-valid-and-fit-image-p 'gif handle)))
192     ("image/tiff"
193      mm-inline-image
194      (lambda (handle)
195        (mm-valid-and-fit-image-p 'tiff handle)) )
196     ("image/xbm"
197      mm-inline-image
198      (lambda (handle)
199        (mm-valid-and-fit-image-p 'xbm handle)))
200     ("image/x-xbitmap"
201      mm-inline-image
202      (lambda (handle)
203        (mm-valid-and-fit-image-p 'xbm handle)))
204     ("image/xpm"
205      mm-inline-image
206      (lambda (handle)
207        (mm-valid-and-fit-image-p 'xpm handle)))
208     ("image/x-xpixmap"
209      mm-inline-image
210      (lambda (handle)
211        (mm-valid-and-fit-image-p 'xpm handle)))
212     ("image/bmp"
213      mm-inline-image
214      (lambda (handle)
215        (mm-valid-and-fit-image-p 'bmp handle)))
216     ("image/x-portable-bitmap"
217      mm-inline-image
218      (lambda (handle)
219        (mm-valid-and-fit-image-p 'pbm handle)))
220     ("text/plain" mm-inline-text identity)
221     ("text/enriched" mm-inline-text identity)
222     ("text/richtext" mm-inline-text identity)
223     ("text/x-patch" mm-display-patch-inline
224      (lambda (handle)
225        ;; If the diff-mode.el package is installed, the function is
226        ;; autoloaded.  Checking (locate-library "diff-mode") would be trying
227        ;; to cater to broken installations.  OTOH checking the function
228        ;; makes it possible to install another package which provides an
229        ;; alternative implementation of diff-mode.  --Stef
230        (fboundp 'diff-mode)))
231     ("application/emacs-lisp" mm-display-elisp-inline identity)
232     ("application/x-emacs-lisp" mm-display-elisp-inline identity)
233     ("text/dns" mm-display-dns-inline identity)
234     ("text/html"
235      mm-inline-text-html
236      (lambda (handle)
237        (or mm-inline-text-html-renderer
238            mm-text-html-renderer)))
239     ("text/x-vcard"
240      mm-inline-text-vcard
241      (lambda (handle)
242        (or (featurep 'vcard)
243            (locate-library "vcard"))))
244     ("message/delivery-status" mm-inline-text identity)
245     ("message/rfc822" mm-inline-message identity)
246     ("message/partial" mm-inline-partial identity)
247     ("message/external-body" mm-inline-external-body identity)
248     ("text/.*" mm-inline-text identity)
249     ("audio/wav" mm-inline-audio
250      (lambda (handle)
251        (and (or (featurep 'nas-sound) (featurep 'native-sound))
252             (device-sound-enabled-p))))
253     ("audio/au"
254      mm-inline-audio
255      (lambda (handle)
256        (and (or (featurep 'nas-sound) (featurep 'native-sound))
257             (device-sound-enabled-p))))
258     ("application/pgp-signature" ignore identity)
259     ("application/x-pkcs7-signature" ignore identity)
260     ("application/pkcs7-signature" ignore identity)
261     ("application/x-pkcs7-mime" ignore identity)
262     ("application/pkcs7-mime" ignore identity)
263     ("multipart/alternative" ignore identity)
264     ("multipart/mixed" ignore identity)
265     ("multipart/related" ignore identity)
266     ;; Disable audio and image
267     ("audio/.*" ignore ignore)
268     ("image/.*" ignore ignore)
269     ;; Default to displaying as text
270     (".*" mm-inline-text mm-readable-p))
271   "Alist of media types/tests saying whether types can be displayed inline."
272   :type '(repeat (list (regexp :tag "MIME type")
273                        (function :tag "Display function")
274                        (function :tag "Display test")))
275   :group 'mime-display)
276
277 (defcustom mm-inlined-types
278   '("image/.*" "text/.*" "message/delivery-status" "message/rfc822"
279     "message/partial" "message/external-body" "application/emacs-lisp"
280     "application/x-emacs-lisp"
281     "application/pgp-signature" "application/x-pkcs7-signature"
282     "application/pkcs7-signature" "application/x-pkcs7-mime"
283     "application/pkcs7-mime"
284     ;; Mutt still uses this even though it has already been withdrawn.
285     "application/pgp")
286   "List of media types that are to be displayed inline.
287 See also `mm-inline-media-tests', which says how to display a media
288 type inline."
289   :type '(repeat regexp)
290   :group 'mime-display)
291
292 (defcustom mm-keep-viewer-alive-types
293   '("application/postscript" "application/msword" "application/vnd.ms-excel"
294     "application/pdf" "application/x-dvi")
295   "List of media types for which the external viewer will not be killed
296 when selecting a different article."
297   :version "22.1"
298   :type '(repeat regexp)
299   :group 'mime-display)
300
301 (defcustom mm-automatic-display
302   '("text/plain" "text/enriched" "text/richtext" "text/html" "text/x-verbatim"
303     "text/x-vcard" "image/.*" "message/delivery-status" "multipart/.*"
304     "message/rfc822" "text/x-patch" "text/dns" "application/pgp-signature"
305     "application/emacs-lisp" "application/x-emacs-lisp"
306     "application/x-pkcs7-signature"
307     "application/pkcs7-signature" "application/x-pkcs7-mime"
308     "application/pkcs7-mime"
309     ;; Mutt still uses this even though it has already been withdrawn.
310     "application/pgp")
311   "A list of MIME types to be displayed automatically."
312   :type '(repeat regexp)
313   :group 'mime-display)
314
315 (defcustom mm-attachment-override-types '("text/x-vcard"
316                                           "application/pkcs7-mime"
317                                           "application/x-pkcs7-mime"
318                                           "application/pkcs7-signature"
319                                           "application/x-pkcs7-signature")
320   "Types to have \"attachment\" ignored if they can be displayed inline."
321   :type '(repeat regexp)
322   :group 'mime-display)
323
324 (defcustom mm-inline-override-types nil
325   "Types to be treated as attachments even if they can be displayed inline."
326   :type '(repeat regexp)
327   :group 'mime-display)
328
329 (defcustom mm-automatic-external-display nil
330   "List of MIME type regexps that will be displayed externally automatically."
331   :type '(repeat regexp)
332   :group 'mime-display)
333
334 (defcustom mm-discouraged-alternatives nil
335   "List of MIME types that are discouraged when viewing multipart/alternative.
336 Viewing agents are supposed to view the last possible part of a message,
337 as that is supposed to be the richest.  However, users may prefer other
338 types instead, and this list says what types are most unwanted.  If,
339 for instance, text/html parts are very unwanted, and text/richtext are
340 somewhat unwanted, then the value of this variable should be set
341 to:
342
343  (\"text/html\" \"text/richtext\")
344
345 Adding \"image/.*\" might also be useful.  Spammers use it as the
346 prefered part of multipart/alternative messages.  See also
347 `gnus-buttonized-mime-types', to which adding \"multipart/alternative\"
348 enables you to choose manually one of two types those mails include."
349   :type '(repeat regexp) ;; See `mm-preferred-alternative-precedence'.
350   :group 'mime-display)
351
352 (defcustom mm-tmp-directory
353   (if (fboundp 'temp-directory)
354       (temp-directory)
355     (if (boundp 'temporary-file-directory)
356         temporary-file-directory
357       "/tmp/"))
358   "Where mm will store its temporary files."
359   :type 'directory
360   :group 'mime-display)
361
362 (defcustom mm-inline-large-images nil
363   "If non-nil, then all images fit in the buffer."
364   :type 'boolean
365   :group 'mime-display)
366
367 (defvar mm-file-name-rewrite-functions
368   '(mm-file-name-delete-control mm-file-name-delete-gotchas)
369   "*List of functions used for rewriting file names of MIME parts.
370 Each function takes a file name as input and returns a file name.
371
372 Ready-made functions include
373 `mm-file-name-delete-control'
374 `mm-file-name-delete-gotchas'
375 `mm-file-name-delete-whitespace',
376 `mm-file-name-trim-whitespace',
377 `mm-file-name-collapse-whitespace',
378 `mm-file-name-replace-whitespace',
379 `capitalize', `downcase', `upcase', and
380 `upcase-initials'.")
381
382 (defvar mm-path-name-rewrite-functions nil
383   "*List of functions for rewriting the full file names of MIME parts.
384 This is used when viewing parts externally, and is meant for
385 transforming the absolute name so that non-compliant programs can find
386 the file where it's saved.
387
388 Each function takes a file name as input and returns a file name.")
389
390 (defvar mm-file-name-replace-whitespace nil
391   "String used for replacing whitespace characters; default is `\"_\"'.")
392
393 (defcustom mm-default-directory nil
394   "The default directory where mm will save files.
395 If not set, `default-directory' will be used."
396   :type '(choice directory (const :tag "Default" nil))
397   :group 'mime-display)
398
399 (defcustom mm-attachment-file-modes 384
400   "Set the mode bits of saved attachments to this integer."
401   :version "22.1"
402   :type 'integer
403   :group 'mime-display)
404
405 (defcustom mm-external-terminal-program "xterm"
406   "The program to start an external terminal."
407   :version "22.1"
408   :type 'string
409   :group 'mime-display)
410
411 ;;; Internal variables.
412
413 (defvar mm-last-shell-command "")
414 (defvar mm-content-id-alist nil)
415 (defvar mm-postponed-undisplay-list nil)
416
417 ;; According to RFC2046, in particular, in a digest, the default
418 ;; Content-Type value for a body part is changed from "text/plain" to
419 ;; "message/rfc822".
420 (defvar mm-dissect-default-type "text/plain")
421
422 (autoload 'mml2015-verify "mml2015")
423 (autoload 'mml2015-verify-test "mml2015")
424 (autoload 'mml-smime-verify "mml-smime")
425 (autoload 'mml-smime-verify-test "mml-smime")
426
427 (defvar mm-verify-function-alist
428   '(("application/pgp-signature" mml2015-verify "PGP" mml2015-verify-test)
429     ("application/x-gnus-pgp-signature" mm-uu-pgp-signed-extract-1 "PGP"
430      mm-uu-pgp-signed-test)
431     ("application/pkcs7-signature" mml-smime-verify "S/MIME"
432      mml-smime-verify-test)
433     ("application/x-pkcs7-signature" mml-smime-verify "S/MIME"
434      mml-smime-verify-test)))
435
436 (defcustom mm-verify-option 'never
437   "Option of verifying signed parts.
438 `never', not verify; `always', always verify;
439 `known', only verify known protocols.  Otherwise, ask user."
440   :version "22.1"
441   :type '(choice (item always)
442                  (item never)
443                  (item :tag "only known protocols" known)
444                  (item :tag "ask" nil))
445   :group 'mime-security)
446
447 (autoload 'mml2015-decrypt "mml2015")
448 (autoload 'mml2015-decrypt-test "mml2015")
449
450 (defvar mm-decrypt-function-alist
451   '(("application/pgp-encrypted" mml2015-decrypt "PGP" mml2015-decrypt-test)
452     ("application/x-gnus-pgp-encrypted" mm-uu-pgp-encrypted-extract-1 "PGP"
453      mm-uu-pgp-encrypted-test)))
454
455 (defcustom mm-decrypt-option nil
456   "Option of decrypting encrypted parts.
457 `never', not decrypt; `always', always decrypt;
458 `known', only decrypt known protocols.  Otherwise, ask user."
459   :version "22.1"
460   :type '(choice (item always)
461                  (item never)
462                  (item :tag "only known protocols" known)
463                  (item :tag "ask" nil))
464   :group 'mime-security)
465
466 (defvar mm-viewer-completion-map
467   (let ((map (make-sparse-keymap 'mm-viewer-completion-map)))
468     (set-keymap-parent map minibuffer-local-completion-map)
469     ;; Should we bind other key to minibuffer-complete-word?
470     (define-key map " " 'self-insert-command)
471     map)
472   "Keymap for input viewer with completion.")
473
474 (defvar mm-viewer-completion-map
475   (let ((map (make-sparse-keymap 'mm-viewer-completion-map)))
476     (set-keymap-parent map minibuffer-local-completion-map)
477     ;; Should we bind other key to minibuffer-complete-word?
478     (define-key map " " 'self-insert-command)
479     map)
480   "Keymap for input viewer with completion.")
481
482 ;;; The functions.
483
484 (defun mm-alist-to-plist (alist)
485   "Convert association list ALIST into the equivalent property-list form.
486 The plist is returned.  This converts from
487
488 \((a . 1) (b . 2) (c . 3))
489
490 into
491
492 \(a 1 b 2 c 3)
493
494 The original alist is not modified.  See also `destructive-alist-to-plist'."
495   (let (plist)
496     (while alist
497       (let ((el (car alist)))
498         (setq plist (cons (cdr el) (cons (car el) plist))))
499       (setq alist (cdr alist)))
500     (nreverse plist)))
501
502 (defun mm-keep-viewer-alive-p (handle)
503   "Say whether external viewer for HANDLE should stay alive."
504   (let ((types mm-keep-viewer-alive-types)
505         (type (mm-handle-media-type handle))
506         ty)
507     (catch 'found
508       (while (setq ty (pop types))
509         (when (string-match ty type)
510           (throw 'found t))))))
511
512 (defun mm-handle-set-external-undisplayer (handle function)
513   "Set the undisplayer for HANDLE to FUNCTION.
514 Postpone undisplaying of viewers for types in
515 `mm-keep-viewer-alive-types'."
516   (if (mm-keep-viewer-alive-p handle)
517       (let ((new-handle (copy-sequence handle)))
518         (mm-handle-set-undisplayer new-handle function)
519         (mm-handle-set-undisplayer handle nil)
520         (push new-handle mm-postponed-undisplay-list))
521     (mm-handle-set-undisplayer handle function)))
522
523 (defun mm-destroy-postponed-undisplay-list ()
524   (when mm-postponed-undisplay-list
525     (message "Destroying external MIME viewers")
526     (mm-destroy-parts mm-postponed-undisplay-list)))
527
528 (defun mm-dissect-buffer (&optional no-strict-mime loose-mime from)
529   "Dissect the current buffer and return a list of MIME handles."
530   (save-excursion
531     (let (ct ctl type subtype cte cd description id result)
532       (save-restriction
533         (mail-narrow-to-head)
534         (when (or no-strict-mime
535                   loose-mime
536                   (mail-fetch-field "mime-version"))
537           (setq ct (mail-fetch-field "content-type")
538                 ctl (and ct (mail-header-parse-content-type ct))
539                 cte (mail-fetch-field "content-transfer-encoding")
540                 cd (mail-fetch-field "content-disposition")
541                 description (mail-fetch-field "content-description")
542                 id (mail-fetch-field "content-id"))
543           (unless from
544             (setq from (mail-fetch-field "from")))
545           ;; FIXME: In some circumstances, this code is running within
546           ;; an unibyte macro.  mail-extract-address-components
547           ;; creates unibyte buffers. This `if', though not a perfect
548           ;; solution, avoids most of them.
549           (if from
550               (setq from (cadr (mail-extract-address-components from))))))
551       (if (or (not ctl)
552               (not (string-match "/" (car ctl))))
553           (mm-dissect-singlepart
554            (list mm-dissect-default-type)
555            (and cte (intern (downcase (mail-header-strip cte))))
556            no-strict-mime
557            (and cd (mail-header-parse-content-disposition cd))
558            description)
559         (setq type (split-string (car ctl) "/"))
560         (setq subtype (cadr type)
561               type (pop type))
562         (setq
563          result
564          (cond
565           ((equal type "multipart")
566            (let ((mm-dissect-default-type (if (equal subtype "digest")
567                                               "message/rfc822"
568                                             "text/plain"))
569                  (start (cdr (assq 'start (cdr ctl)))))
570              (add-text-properties 0 (length (car ctl))
571                                   (mm-alist-to-plist (cdr ctl)) (car ctl))
572
573              ;; what really needs to be done here is a way to link a
574              ;; MIME handle back to it's parent MIME handle (in a multilevel
575              ;; MIME article).  That would probably require changing
576              ;; the mm-handle API so we simply store the multipart buffer
577              ;; name as a text property of the "multipart/whatever" string.
578              (add-text-properties 0 (length (car ctl))
579                                   (list 'buffer (mm-copy-to-buffer)
580                                         'from from
581                                         'start start)
582                                   (car ctl))
583              (cons (car ctl) (mm-dissect-multipart ctl from))))
584           (t
585            (mm-possibly-verify-or-decrypt
586             (mm-dissect-singlepart
587              ctl
588              (and cte (intern (downcase (mail-header-strip cte))))
589              no-strict-mime
590              (and cd (mail-header-parse-content-disposition cd))
591              description id)
592             ctl))))
593         (when id
594           (when (string-match " *<\\(.*\\)> *" id)
595             (setq id (match-string 1 id)))
596           (push (cons id result) mm-content-id-alist))
597         result))))
598
599 (defun mm-dissect-singlepart (ctl cte &optional force cdl description id)
600   (when (or force
601             (if (equal "text/plain" (car ctl))
602                 (assoc 'format ctl)
603               t))
604     (mm-make-handle
605      (mm-copy-to-buffer) ctl cte nil cdl description nil id)))
606
607 (defun mm-dissect-multipart (ctl from)
608   (goto-char (point-min))
609   (let* ((boundary (concat "\n--" (mail-content-type-get ctl 'boundary)))
610          (close-delimiter (concat (regexp-quote boundary) "--[ \t]*$"))
611          start parts
612          (end (save-excursion
613                 (goto-char (point-max))
614                 (if (re-search-backward close-delimiter nil t)
615                     (match-beginning 0)
616                   (point-max)))))
617     (setq boundary (concat (regexp-quote boundary) "[ \t]*$"))
618     (while (and (< (point) end) (re-search-forward boundary end t))
619       (goto-char (match-beginning 0))
620       (when start
621         (save-excursion
622           (save-restriction
623             (narrow-to-region start (point))
624             (setq parts (nconc (list (mm-dissect-buffer t nil from)) parts)))))
625       (end-of-line 2)
626       (or (looking-at boundary)
627           (forward-line 1))
628       (setq start (point)))
629     (when (and start (< start end))
630       (save-excursion
631         (save-restriction
632           (narrow-to-region start end)
633           (setq parts (nconc (list (mm-dissect-buffer t nil from)) parts)))))
634     (mm-possibly-verify-or-decrypt (nreverse parts) ctl)))
635
636 (defun mm-copy-to-buffer ()
637   "Copy the contents of the current buffer to a fresh buffer."
638   (save-excursion
639     (let ((obuf (current-buffer))
640           beg)
641       (goto-char (point-min))
642       (search-forward-regexp "^\n" nil t)
643       (setq beg (point))
644       (set-buffer
645        ;; Preserve the data's unibyteness (for url-insert-file-contents).
646        (let ((default-enable-multibyte-characters (mm-multibyte-p)))
647          (generate-new-buffer " *mm*")))
648       (insert-buffer-substring obuf beg)
649       (current-buffer))))
650
651 (defun mm-display-parts (handle &optional no-default)
652   (if (stringp (car handle))
653       (mapcar 'mm-display-parts (cdr handle))
654     (if (bufferp (car handle))
655         (save-restriction
656           (narrow-to-region (point) (point))
657           (mm-display-part handle)
658           (goto-char (point-max)))
659       (mapcar 'mm-display-parts handle))))
660
661 (defun mm-display-part (handle &optional no-default)
662   "Display the MIME part represented by HANDLE.
663 Returns nil if the part is removed; inline if displayed inline;
664 external if displayed external."
665   (save-excursion
666     (mailcap-parse-mailcaps)
667     (if (mm-handle-displayed-p handle)
668         (mm-remove-part handle)
669       (let* ((ehandle (if (equal (mm-handle-media-type handle)
670                                  "message/external-body")
671                           (progn
672                             (unless (mm-handle-cache handle)
673                               (mm-extern-cache-contents handle))
674                             (mm-handle-cache handle))
675                         handle))
676              (type (mm-handle-media-type ehandle))
677              (method (mailcap-mime-info type))
678              (filename (or (mail-content-type-get
679                             (mm-handle-disposition handle) 'filename)
680                            (mail-content-type-get
681                             (mm-handle-type handle) 'name)
682                            "<file>"))
683              (external mm-enable-external))
684         (if (and (mm-inlinable-p ehandle)
685                  (mm-inlined-p ehandle))
686             (progn
687               (forward-line 1)
688               (mm-display-inline handle)
689               'inline)
690           (when (or method
691                     (not no-default))
692             (if (and (not method)
693                      (equal "text" (car (split-string type "/"))))
694                 (progn
695                   (forward-line 1)
696                   (mm-insert-inline handle (mm-get-part handle))
697                   'inline)
698               (if (and method ;; If nil, we always use "save".
699                        (stringp method) ;; 'mailcap-save-binary-file
700                        (or (eq mm-enable-external t)
701                            (and (eq mm-enable-external 'ask)
702                                 (y-or-n-p
703                                  (concat
704                                   "Display part (" type
705                                   ") using external program"
706                                   ;; Can non-string method ever happen?
707                                   (if (stringp method)
708                                       (concat
709                                        " \"" (format method filename) "\"")
710                                     "")
711                                   "? ")))))
712                   (setq external t)
713                 (setq external nil))
714               (if external
715                   (mm-display-external
716                    handle (or method 'mailcap-save-binary-file))
717                 (mm-display-external
718                  handle 'mailcap-save-binary-file)))))))))
719
720 (defun mm-display-external (handle method)
721   "Display HANDLE using METHOD."
722   (let ((outbuf (current-buffer)))
723     (mm-with-unibyte-buffer
724       (if (functionp method)
725           (let ((cur (current-buffer)))
726             (if (eq method 'mailcap-save-binary-file)
727                 (progn
728                   (set-buffer (generate-new-buffer " *mm*"))
729                   (setq method nil))
730               (mm-insert-part handle)
731               (let ((win (get-buffer-window cur t)))
732                 (when win
733                   (select-window win)))
734               (switch-to-buffer (generate-new-buffer " *mm*")))
735             (buffer-disable-undo)
736             (mm-set-buffer-file-coding-system mm-binary-coding-system)
737             (insert-buffer-substring cur)
738             (goto-char (point-min))
739             (when method
740               (message "Viewing with %s" method))
741             (let ((mm (current-buffer))
742                   (non-viewer (assq 'non-viewer
743                                     (mailcap-mime-info
744                                      (mm-handle-media-type handle) t))))
745               (unwind-protect
746                   (if method
747                       (funcall method)
748                     (mm-save-part handle))
749                 (when (and (not non-viewer)
750                            method)
751                   (mm-handle-set-undisplayer handle mm)))))
752         ;; The function is a string to be executed.
753         (mm-insert-part handle)
754         (let* ((dir (mm-make-temp-file
755                      (expand-file-name "emm." mm-tmp-directory) 'dir))
756                (filename (or
757                           (mail-content-type-get
758                            (mm-handle-disposition handle) 'filename)
759                           (mail-content-type-get
760                            (mm-handle-type handle) 'name)))
761                (mime-info (mailcap-mime-info
762                            (mm-handle-media-type handle) t))
763                (needsterm (or (assoc "needsterm" mime-info)
764                               (assoc "needsterminal" mime-info)))
765                (copiousoutput (assoc "copiousoutput" mime-info))
766                file buffer)
767           ;; We create a private sub-directory where we store our files.
768           (set-file-modes dir 448)
769           (if filename
770               (setq file (expand-file-name
771                           (gnus-map-function mm-file-name-rewrite-functions
772                                              (file-name-nondirectory filename))
773                           dir))
774             ;; Use nametemplate (defined in RFC1524) if it is specified
775             ;; in mailcap.
776             (let ((suffix (cdr (assoc "nametemplate" mime-info))))
777               (if (and suffix
778                        (string-match "\\`%s\\(\\..+\\)\\'" suffix))
779                   (setq suffix (match-string 1 suffix))
780                 ;; Otherwise, use a suffix according to
781                 ;; `mailcap-mime-extensions'.
782                 (setq suffix (car (rassoc (mm-handle-media-type handle)
783                                           mailcap-mime-extensions))))
784               (setq file (mm-make-temp-file (expand-file-name "mm." dir)
785                                             nil suffix))))
786           (let ((coding-system-for-write mm-binary-coding-system))
787             (write-region (point-min) (point-max) file nil 'nomesg))
788           (message "Viewing with %s" method)
789           (cond
790            (needsterm
791             (let ((command (mm-mailcap-command
792                             method file (mm-handle-type handle))))
793               (unwind-protect
794                   (if window-system
795                       (start-process "*display*" nil
796                                      mm-external-terminal-program
797                                      "-e" shell-file-name
798                                      shell-command-switch command)
799                     (require 'term)
800                     (require 'gnus-win)
801                     (set-buffer
802                      (setq buffer
803                            (make-term "display"
804                                       shell-file-name
805                                       nil
806                                       shell-command-switch command)))
807                     (term-mode)
808                     (term-char-mode)
809                     (set-process-sentinel
810                      (get-buffer-process buffer)
811                      `(lambda (process state)
812                         (if (eq 'exit (process-status process))
813                             (gnus-configure-windows
814                              ',gnus-current-window-configuration))))
815                     (gnus-configure-windows 'display-term))
816                 (mm-handle-set-external-undisplayer handle (cons file buffer)))
817               (message "Displaying %s..." command))
818             'external)
819            (copiousoutput
820             (with-current-buffer outbuf
821               (forward-line 1)
822               (mm-insert-inline
823                handle
824                (unwind-protect
825                    (progn
826                      (call-process shell-file-name nil
827                                    (setq buffer
828                                          (generate-new-buffer " *mm*"))
829                                    nil
830                                    shell-command-switch
831                                    (mm-mailcap-command
832                                     method file (mm-handle-type handle)))
833                      (if (buffer-live-p buffer)
834                          (with-current-buffer buffer
835                            (buffer-string))))
836                  (progn
837                    (ignore-errors (delete-file file))
838                    (ignore-errors (delete-directory
839                                    (file-name-directory file)))
840                    (ignore-errors (kill-buffer buffer))))))
841             'inline)
842            (t
843             ;; Deleting the temp file should be postponed for some wrappers,
844             ;; shell scripts, and so on, which might exit right after having
845             ;; started a viewer command as a background job.
846             (let ((command (mm-mailcap-command
847                             method file (mm-handle-type handle))))
848               (unwind-protect
849                   (progn
850                     (start-process "*display*"
851                                    (setq buffer
852                                          (generate-new-buffer " *mm*"))
853                                    shell-file-name
854                                    shell-command-switch command)
855                     (set-process-sentinel
856                      (get-buffer-process buffer)
857                      (lexical-let ;; Don't use `let'.
858                          ;; Function used to remove temp file and directory.
859                          ((fn `(lambda nil
860                                  ;; Don't use `ignore-errors'.
861                                  (condition-case nil
862                                      (delete-file ,file)
863                                    (error))
864                                  (condition-case nil
865                                      (delete-directory
866                                       ,(file-name-directory file))
867                                    (error))))
868                           ;; Form uses to kill the process buffer and
869                           ;; remove the undisplayer.
870                           (fm `(progn
871                                  (kill-buffer ,buffer)
872                                  ,(macroexpand
873                                    (list 'mm-handle-set-undisplayer
874                                          (list 'quote handle)
875                                          nil))))
876                           ;; Message to be issued when the process exits.
877                           (done (format "Displaying %s...done" command))
878                           ;; In particular, the timer object (which is
879                           ;; a vector in Emacs but is a list in XEmacs)
880                           ;; requires that it is lexically scoped.
881                           (timer (run-at-time 2.0 nil 'ignore)))
882                        (lambda (process state)
883                          (when (eq 'exit (process-status process))
884                            (if (memq timer timer-list)
885                                (timer-set-function timer fn)
886                              (funcall fn))
887                            (ignore-errors (eval fm))
888                            (message "%s" done))))))
889                 (mm-handle-set-external-undisplayer
890                  handle (cons file buffer)))
891               (message "Displaying %s..." command))
892             'external)))))))
893
894 (defun mm-mailcap-command (method file type-list)
895   (let ((ctl (cdr type-list))
896         (beg 0)
897         (uses-stdin t)
898         out sub total)
899     (while (string-match "%{\\([^}]+\\)}\\|'%s'\\|\"%s\"\\|%s\\|%t\\|%%"
900                          method beg)
901       (push (substring method beg (match-beginning 0)) out)
902       (setq beg (match-end 0)
903             total (match-string 0 method)
904             sub (match-string 1 method))
905       (cond
906        ((string= total "%%")
907         (push "%" out))
908        ((or (string= total "%s")
909             ;; We do our own quoting.
910             (string= total "'%s'")
911             (string= total "\"%s\""))
912         (setq uses-stdin nil)
913         (push (shell-quote-argument
914                (gnus-map-function mm-path-name-rewrite-functions file)) out))
915        ((string= total "%t")
916         (push (shell-quote-argument (car type-list)) out))
917        (t
918         (push (shell-quote-argument (or (cdr (assq (intern sub) ctl)) "")) out))))
919     (push (substring method beg (length method)) out)
920     (when uses-stdin
921       (push "<" out)
922       (push (shell-quote-argument
923              (gnus-map-function mm-path-name-rewrite-functions file))
924             out))
925     (mapconcat 'identity (nreverse out) "")))
926
927 (defun mm-remove-parts (handles)
928   "Remove the displayed MIME parts represented by HANDLES."
929   (if (and (listp handles)
930            (bufferp (car handles)))
931       (mm-remove-part handles)
932     (let (handle)
933       (while (setq handle (pop handles))
934         (cond
935          ((stringp handle)
936           (when (buffer-live-p (get-text-property 0 'buffer handle))
937             (kill-buffer (get-text-property 0 'buffer handle))))
938          ((and (listp handle)
939                (stringp (car handle)))
940           (mm-remove-parts (cdr handle)))
941          (t
942           (mm-remove-part handle)))))))
943
944 (defun mm-destroy-parts (handles)
945   "Remove the displayed MIME parts represented by HANDLES."
946   (if (and (listp handles)
947            (bufferp (car handles)))
948       (mm-destroy-part handles)
949     (let (handle)
950       (while (setq handle (pop handles))
951         (cond
952          ((stringp handle)
953           (when (buffer-live-p (get-text-property 0 'buffer handle))
954             (kill-buffer (get-text-property 0 'buffer handle))))
955          ((and (listp handle)
956                (stringp (car handle)))
957           (mm-destroy-parts handle))
958          (t
959           (mm-destroy-part handle)))))))
960
961 (defun mm-remove-part (handle)
962   "Remove the displayed MIME part represented by HANDLE."
963   (when (listp handle)
964     (let ((object (mm-handle-undisplayer handle)))
965       (ignore-errors
966         (cond
967          ;; Internally displayed part.
968          ((mm-annotationp object)
969           (delete-annotation object))
970          ((or (functionp object)
971               (and (listp object)
972                    (eq (car object) 'lambda)))
973           (funcall object))
974          ;; Externally displayed part.
975          ((consp object)
976           (condition-case ()
977               (while (get-buffer-process (cdr object))
978                 (interrupt-process (get-buffer-process (cdr object)))
979                 (message "Waiting for external displayer to die...")
980                 (sit-for 1))
981             (quit)
982             (error))
983           (ignore-errors (and (cdr object) (kill-buffer (cdr object))))
984           (message "Waiting for external displayer to die...done")
985           (ignore-errors (delete-file (car object)))
986           (ignore-errors (delete-directory (file-name-directory
987                                             (car object)))))
988          ((bufferp object)
989           (when (buffer-live-p object)
990             (kill-buffer object)))))
991       (mm-handle-set-undisplayer handle nil))))
992
993 (defun mm-display-inline (handle)
994   (let* ((type (mm-handle-media-type handle))
995          (function (cadr (mm-assoc-string-match mm-inline-media-tests type))))
996     (funcall function handle)
997     (goto-char (point-min))))
998
999 (defun mm-assoc-string-match (alist type)
1000   (dolist (elem alist)
1001     (when (string-match (car elem) type)
1002       (return elem))))
1003
1004 (defun mm-automatic-display-p (handle)
1005   "Say whether the user wants HANDLE to be displayed automatically."
1006   (let ((methods mm-automatic-display)
1007         (type (mm-handle-media-type handle))
1008         method result)
1009     (while (setq method (pop methods))
1010       (when (and (not (mm-inline-override-p handle))
1011                  (string-match method type))
1012         (setq result t
1013               methods nil)))
1014     result))
1015
1016 (defun mm-inlinable-p (handle)
1017   "Say whether HANDLE can be displayed inline."
1018   (let ((alist mm-inline-media-tests)
1019         (type (mm-handle-media-type handle))
1020         test)
1021     (while alist
1022       (when (string-match (caar alist) type)
1023         (setq test (caddar alist)
1024               alist nil)
1025         (setq test (funcall test handle)))
1026       (pop alist))
1027     test))
1028
1029 (defun mm-inlined-p (handle)
1030   "Say whether the user wants HANDLE to be displayed inline."
1031   (let ((methods mm-inlined-types)
1032         (type (mm-handle-media-type handle))
1033         method result)
1034     (while (setq method (pop methods))
1035       (when (and (not (mm-inline-override-p handle))
1036                  (string-match method type))
1037         (setq result t
1038               methods nil)))
1039     result))
1040
1041 (defun mm-attachment-override-p (handle)
1042   "Say whether HANDLE should have attachment behavior overridden."
1043   (let ((types mm-attachment-override-types)
1044         (type (mm-handle-media-type handle))
1045         ty)
1046     (catch 'found
1047       (while (setq ty (pop types))
1048         (when (and (string-match ty type)
1049                    (mm-inlinable-p handle))
1050           (throw 'found t))))))
1051
1052 (defun mm-inline-override-p (handle)
1053   "Say whether HANDLE should have inline behavior overridden."
1054   (let ((types mm-inline-override-types)
1055         (type (mm-handle-media-type handle))
1056         ty)
1057     (catch 'found
1058       (while (setq ty (pop types))
1059         (when (string-match ty type)
1060           (throw 'found t))))))
1061
1062 (defun mm-automatic-external-display-p (type)
1063   "Return the user-defined method for TYPE."
1064   (let ((methods mm-automatic-external-display)
1065         method result)
1066     (while (setq method (pop methods))
1067       (when (string-match method type)
1068         (setq result t
1069               methods nil)))
1070     result))
1071
1072 (defun mm-destroy-part (handle)
1073   "Destroy the data structures connected to HANDLE."
1074   (when (listp handle)
1075     (mm-remove-part handle)
1076     (when (buffer-live-p (mm-handle-buffer handle))
1077       (kill-buffer (mm-handle-buffer handle)))))
1078
1079 (defun mm-handle-displayed-p (handle)
1080   "Say whether HANDLE is displayed or not."
1081   (mm-handle-undisplayer handle))
1082
1083 ;;;
1084 ;;; Functions for outputting parts
1085 ;;;
1086
1087 (defmacro mm-with-part (handle &rest forms)
1088   "Run FORMS in the temp buffer containing the contents of HANDLE."
1089   `(let* ((handle ,handle)
1090           ;; The multibyteness of the temp buffer should be turned on
1091           ;; if inserting a multibyte string.  Contrarily, the buffer's
1092           ;; multibyteness should be off if inserting a unibyte string,
1093           ;; especially if a string contains 8bit data.
1094           (default-enable-multibyte-characters
1095             (with-current-buffer (mm-handle-buffer handle)
1096               (mm-multibyte-p))))
1097      (with-temp-buffer
1098        (insert-buffer-substring (mm-handle-buffer handle))
1099        (mm-disable-multibyte)
1100        (mm-decode-content-transfer-encoding
1101         (mm-handle-encoding handle)
1102         (mm-handle-media-type handle))
1103        ,@forms)))
1104 (put 'mm-with-part 'lisp-indent-function 1)
1105 (put 'mm-with-part 'edebug-form-spec '(body))
1106
1107 (defun mm-get-part (handle &optional no-cache)
1108   "Return the contents of HANDLE as a string.
1109 If NO-CACHE is non-nil, cached contents of a message/external-body part
1110 are ignored."
1111   (if (and (not no-cache)
1112            (equal (mm-handle-media-type handle) "message/external-body"))
1113       (progn
1114         (unless (mm-handle-cache handle)
1115           (mm-extern-cache-contents handle))
1116         (with-current-buffer (mm-handle-buffer (mm-handle-cache handle))
1117           (buffer-string)))
1118     (mm-with-part handle
1119       (buffer-string))))
1120
1121 (defun mm-insert-part (handle &optional no-cache)
1122   "Insert the contents of HANDLE in the current buffer.
1123 If NO-CACHE is non-nil, cached contents of a message/external-body part
1124 are ignored."
1125   (save-excursion
1126     (insert
1127      (cond ((eq (mail-content-type-get (mm-handle-type handle) 'charset)
1128                 'gnus-decoded)
1129             (with-current-buffer (mm-handle-buffer handle)
1130               (buffer-string)))
1131            ((mm-multibyte-p)
1132             (mm-string-as-multibyte (mm-get-part handle no-cache)))
1133            (t
1134             (mm-get-part handle no-cache))))))
1135
1136 (defun mm-file-name-delete-whitespace (file-name)
1137   "Remove all whitespace characters from FILE-NAME."
1138   (while (string-match "\\s-+" file-name)
1139     (setq file-name (replace-match "" t t file-name)))
1140   file-name)
1141
1142 (defun mm-file-name-trim-whitespace (file-name)
1143   "Remove leading and trailing whitespace characters from FILE-NAME."
1144   (when (string-match "\\`\\s-+" file-name)
1145     (setq file-name (substring file-name (match-end 0))))
1146   (when (string-match "\\s-+\\'" file-name)
1147     (setq file-name (substring file-name 0 (match-beginning 0))))
1148   file-name)
1149
1150 (defun mm-file-name-collapse-whitespace (file-name)
1151   "Collapse multiple whitespace characters in FILE-NAME."
1152   (while (string-match "\\s-\\s-+" file-name)
1153     (setq file-name (replace-match " " t t file-name)))
1154   file-name)
1155
1156 (defun mm-file-name-replace-whitespace (file-name)
1157   "Replace whitespace characters in FILE-NAME with underscores.
1158 Set the option `mm-file-name-replace-whitespace' to any other
1159 string if you do not like underscores."
1160   (let ((s (or mm-file-name-replace-whitespace "_")))
1161     (while (string-match "\\s-" file-name)
1162       (setq file-name (replace-match s t t file-name))))
1163   file-name)
1164
1165 (defun mm-file-name-delete-control (filename)
1166   "Delete control characters from FILENAME."
1167   (gnus-replace-in-string filename "[\x00-\x1f\x7f]" ""))
1168
1169 (defun mm-file-name-delete-gotchas (filename)
1170   "Delete shell gotchas from FILENAME."
1171   (setq filename (gnus-replace-in-string filename "[<>|]" ""))
1172   (gnus-replace-in-string filename "^[.-]+" ""))
1173
1174 (defun mm-save-part (handle &optional prompt)
1175   "Write HANDLE to a file.
1176 PROMPT overrides the default one used to ask user for a file name."
1177   (let ((filename (or (mail-content-type-get
1178                        (mm-handle-disposition handle) 'filename)
1179                       (mail-content-type-get
1180                        (mm-handle-type handle) 'name)))
1181         file)
1182     (when filename
1183       (setq filename (gnus-map-function mm-file-name-rewrite-functions
1184                                         (file-name-nondirectory filename))))
1185     (setq file
1186           (mm-with-multibyte
1187            (read-file-name (or prompt "Save MIME part to: ")
1188                            (or mm-default-directory default-directory)
1189                            nil nil (or filename ""))))
1190     (setq mm-default-directory (file-name-directory file))
1191     (and (or (not (file-exists-p file))
1192              (yes-or-no-p (format "File %s already exists; overwrite? "
1193                                   file)))
1194          (progn
1195            (mm-save-part-to-file handle file)
1196            file))))
1197
1198 (defun mm-save-part-to-file (handle file)
1199   (mm-with-unibyte-buffer
1200     (mm-insert-part handle)
1201     (let ((coding-system-for-write 'binary)
1202           (current-file-modes (default-file-modes))
1203           ;; Don't re-compress .gz & al.  Arguably we should make
1204           ;; `file-name-handler-alist' nil, but that would chop
1205           ;; ange-ftp, which is reasonable to use here.
1206           (inhibit-file-name-operation 'write-region)
1207           (inhibit-file-name-handlers
1208            (cons 'jka-compr-handler inhibit-file-name-handlers)))
1209       (set-default-file-modes mm-attachment-file-modes)
1210       (unwind-protect
1211           (write-region (point-min) (point-max) file)
1212         (set-default-file-modes current-file-modes)))))
1213
1214 (defun mm-pipe-part (handle)
1215   "Pipe HANDLE to a process."
1216   (let* ((name (mail-content-type-get (mm-handle-type handle) 'name))
1217          (command
1218           (read-string "Shell command on MIME part: " mm-last-shell-command)))
1219     (mm-with-unibyte-buffer
1220       (mm-insert-part handle)
1221       (let ((coding-system-for-write 'binary))
1222         (shell-command-on-region (point-min) (point-max) command nil)))))
1223
1224 (defun mm-interactively-view-part (handle)
1225   "Display HANDLE using METHOD."
1226   (let* ((type (mm-handle-media-type handle))
1227          (methods
1228           (mapcar (lambda (i) (list (cdr (assoc 'viewer i))))
1229                   (mailcap-mime-info type 'all)))
1230          (method (let ((minibuffer-local-completion-map
1231                         mm-viewer-completion-map))
1232                    (completing-read "Viewer: " methods))))
1233     (when (string= method "")
1234       (error "No method given"))
1235     (if (string-match "^[^% \t]+$" method)
1236         (setq method (concat method " %s")))
1237     (mm-display-external handle method)))
1238
1239 (defun mm-preferred-alternative (handles &optional preferred)
1240   "Say which of HANDLES are preferred."
1241   (let ((prec (if preferred (list preferred)
1242                 (mm-preferred-alternative-precedence handles)))
1243         p h result type handle)
1244     (while (setq p (pop prec))
1245       (setq h handles)
1246       (while h
1247         (setq handle (car h))
1248         (setq type (mm-handle-media-type handle))
1249         (when (and (equal p type)
1250                    (mm-automatic-display-p handle)
1251                    (or (stringp (car handle))
1252                        (not (mm-handle-disposition handle))
1253                        (equal (car (mm-handle-disposition handle))
1254                               "inline")))
1255           (setq result handle
1256                 h nil
1257                 prec nil))
1258         (pop h)))
1259     result))
1260
1261 (defun mm-preferred-alternative-precedence (handles)
1262   "Return the precedence based on HANDLES and `mm-discouraged-alternatives'."
1263   (let ((seq (nreverse (mapcar #'mm-handle-media-type
1264                                handles))))
1265     (dolist (disc (reverse mm-discouraged-alternatives))
1266       (dolist (elem (copy-sequence seq))
1267         (when (string-match disc elem)
1268           (setq seq (nconc (delete elem seq) (list elem))))))
1269     seq))
1270
1271 (defun mm-get-content-id (id)
1272   "Return the handle(s) referred to by ID."
1273   (cdr (assoc id mm-content-id-alist)))
1274
1275 (defconst mm-image-type-regexps
1276   '(("/\\*.*XPM.\\*/" . xpm)
1277     ("P[1-6]" . pbm)
1278     ("GIF8" . gif)
1279     ("\377\330" . jpeg)
1280     ("\211PNG\r\n" . png)
1281     ("#define" . xbm)
1282     ("\\(MM\0\\*\\)\\|\\(II\\*\0\\)" . tiff)
1283     ("%!PS" . postscript))
1284   "Alist of (REGEXP . IMAGE-TYPE) pairs used to auto-detect image types.
1285 When the first bytes of an image file match REGEXP, it is assumed to
1286 be of image type IMAGE-TYPE.")
1287
1288 ;; Steal from image.el. image-type-from-data suffers multi-line matching bug.
1289 (defun mm-image-type-from-buffer ()
1290   "Determine the image type from data in the current buffer.
1291 Value is a symbol specifying the image type or nil if type cannot
1292 be determined."
1293   (let ((types mm-image-type-regexps)
1294         type)
1295     (goto-char (point-min))
1296     (while (and types (null type))
1297       (let ((regexp (car (car types)))
1298             (image-type (cdr (car types))))
1299         (when (looking-at regexp)
1300           (setq type image-type))
1301         (setq types (cdr types))))
1302     type))
1303
1304 (defun mm-get-image (handle)
1305   "Return an image instance based on HANDLE."
1306   (let ((type (mm-handle-media-subtype handle))
1307         spec)
1308     ;; Allow some common translations.
1309     (setq type
1310           (cond
1311            ((equal type "x-pixmap")
1312             "xpm")
1313            ((equal type "x-xbitmap")
1314             "xbm")
1315            ((equal type "x-portable-bitmap")
1316             "pbm")
1317            (t type)))
1318     (or (mm-handle-cache handle)
1319         (mm-with-unibyte-buffer
1320           (mm-insert-part handle)
1321           (prog1
1322               (setq spec
1323                     (ignore-errors
1324                       ;; Avoid testing `make-glyph' since W3 may define
1325                       ;; a bogus version of it.
1326                       (if (fboundp 'create-image)
1327                           (create-image (buffer-string)
1328                                         (or (mm-image-type-from-buffer)
1329                                             (intern type))
1330                                         'data-p)
1331                         (mm-create-image-xemacs type))))
1332             (mm-handle-set-cache handle spec))))))
1333
1334 (defun mm-create-image-xemacs (type)
1335   (cond
1336    ((equal type "xbm")
1337     ;; xbm images require special handling, since
1338     ;; the only way to create glyphs from these
1339     ;; (without a ton of work) is to write them
1340     ;; out to a file, and then create a file
1341     ;; specifier.
1342     (let ((file (mm-make-temp-file
1343                  (expand-file-name "emm" mm-tmp-directory)
1344                  nil ".xbm")))
1345       (unwind-protect
1346           (progn
1347             (write-region (point-min) (point-max) file)
1348             (make-glyph (list (cons 'x file))))
1349         (ignore-errors
1350           (delete-file file)))))
1351    (t
1352     (make-glyph
1353      (vector
1354       (or (mm-image-type-from-buffer)
1355           (intern type))
1356       :data (buffer-string))))))
1357
1358 (defun mm-image-fit-p (handle)
1359   "Say whether the image in HANDLE will fit the current window."
1360   (let ((image (mm-get-image handle)))
1361     (if (fboundp 'glyph-width)
1362         ;; XEmacs' glyphs can actually tell us about their width, so
1363         ;; lets be nice and smart about them.
1364         (or mm-inline-large-images
1365             (and (< (glyph-width image) (window-pixel-width))
1366                  (< (glyph-height image) (window-pixel-height))))
1367       (let* ((size (image-size image))
1368              (w (car size))
1369              (h (cdr size)))
1370         (or mm-inline-large-images
1371             (and (< h (1- (window-height))) ; Don't include mode line.
1372                  (< w (window-width))))))))
1373
1374 (defun mm-valid-image-format-p (format)
1375   "Say whether FORMAT can be displayed natively by Emacs."
1376   (cond
1377    ;; Handle XEmacs
1378    ((fboundp 'valid-image-instantiator-format-p)
1379     (valid-image-instantiator-format-p format))
1380    ;; Handle Emacs 21
1381    ((fboundp 'image-type-available-p)
1382     (and (display-graphic-p)
1383          (image-type-available-p format)))
1384    ;; Nobody else can do images yet.
1385    (t
1386     nil)))
1387
1388 (defun mm-valid-and-fit-image-p (format handle)
1389   "Say whether FORMAT can be displayed natively and HANDLE fits the window."
1390   (and (mm-valid-image-format-p format)
1391        (mm-image-fit-p handle)))
1392
1393 (defun mm-find-part-by-type (handles type &optional notp recursive)
1394   "Search in HANDLES for part with TYPE.
1395 If NOTP, returns first non-matching part.
1396 If RECURSIVE, search recursively."
1397   (let (handle)
1398     (while handles
1399       (if (and recursive (stringp (caar handles)))
1400           (if (setq handle (mm-find-part-by-type (cdar handles) type
1401                                                  notp recursive))
1402               (setq handles nil))
1403         (if (if notp
1404                 (not (equal (mm-handle-media-type (car handles)) type))
1405               (equal (mm-handle-media-type (car handles)) type))
1406             (setq handle (car handles)
1407                   handles nil)))
1408       (setq handles (cdr handles)))
1409     handle))
1410
1411 (defun mm-find-raw-part-by-type (ctl type &optional notp)
1412   (goto-char (point-min))
1413   (let* ((boundary (concat "--" (mm-handle-multipart-ctl-parameter ctl
1414                                                                    'boundary)))
1415          (close-delimiter (concat "^" (regexp-quote boundary) "--[ \t]*$"))
1416          start
1417          (end (save-excursion
1418                 (goto-char (point-max))
1419                 (if (re-search-backward close-delimiter nil t)
1420                     (match-beginning 0)
1421                   (point-max))))
1422          result)
1423     (setq boundary (concat "^" (regexp-quote boundary) "[ \t]*$"))
1424     (while (and (not result)
1425                 (re-search-forward boundary end t))
1426       (goto-char (match-beginning 0))
1427       (when start
1428         (save-excursion
1429           (save-restriction
1430             (narrow-to-region start (1- (point)))
1431             (when (let* ((ct (mail-fetch-field "content-type"))
1432                          (ctl (and ct (mail-header-parse-content-type ct))))
1433                     (if notp
1434                         (not (equal (car ctl) type))
1435                       (equal (car ctl) type)))
1436               (setq result (buffer-string))))))
1437       (forward-line 1)
1438       (setq start (point)))
1439     (when (and (not result) start)
1440       (save-excursion
1441         (save-restriction
1442           (narrow-to-region start end)
1443           (when (let* ((ct (mail-fetch-field "content-type"))
1444                        (ctl (and ct (mail-header-parse-content-type ct))))
1445                   (if notp
1446                       (not (equal (car ctl) type))
1447                     (equal (car ctl) type)))
1448             (setq result (buffer-string))))))
1449     result))
1450
1451 (defvar mm-security-handle nil)
1452
1453 (defsubst mm-set-handle-multipart-parameter (handle parameter value)
1454   ;; HANDLE could be a CTL.
1455   (when handle
1456     (put-text-property 0 (length (car handle)) parameter value
1457                        (car handle))))
1458
1459 (defun mm-possibly-verify-or-decrypt (parts ctl)
1460   (let ((type (car ctl))
1461         (subtype (cadr (split-string (car ctl) "/")))
1462         (mm-security-handle ctl) ;; (car CTL) is the type.
1463         protocol func functest)
1464     (cond
1465      ((or (equal type "application/x-pkcs7-mime")
1466           (equal type "application/pkcs7-mime"))
1467       (with-temp-buffer
1468         (when (and (cond
1469                     ((eq mm-decrypt-option 'never) nil)
1470                     ((eq mm-decrypt-option 'always) t)
1471                     ((eq mm-decrypt-option 'known) t)
1472                     (t (y-or-n-p
1473                         (format "Decrypt (S/MIME) part? "))))
1474                    (mm-view-pkcs7 parts))
1475           (setq parts (mm-dissect-buffer t)))))
1476      ((equal subtype "signed")
1477       (unless (and (setq protocol
1478                          (mm-handle-multipart-ctl-parameter ctl 'protocol))
1479                    (not (equal protocol "multipart/mixed")))
1480         ;; The message is broken or draft-ietf-openpgp-multsig-01.
1481         (let ((protocols mm-verify-function-alist))
1482           (while protocols
1483             (if (and (or (not (setq functest (nth 3 (car protocols))))
1484                          (funcall functest parts ctl))
1485                      (mm-find-part-by-type parts (caar protocols) nil t))
1486                 (setq protocol (caar protocols)
1487                       protocols nil)
1488               (setq protocols (cdr protocols))))))
1489       (setq func (nth 1 (assoc protocol mm-verify-function-alist)))
1490       (when (cond
1491              ((eq mm-verify-option 'never) nil)
1492              ((eq mm-verify-option 'always) t)
1493              ((eq mm-verify-option 'known)
1494               (and func
1495                    (or (not (setq functest
1496                                   (nth 3 (assoc protocol
1497                                                 mm-verify-function-alist))))
1498                        (funcall functest parts ctl))))
1499              (t
1500               (y-or-n-p
1501                (format "Verify signed (%s) part? "
1502                        (or (nth 2 (assoc protocol mm-verify-function-alist))
1503                            (format "protocol=%s" protocol))))))
1504         (save-excursion
1505           (if func
1506               (funcall func parts ctl)
1507             (mm-set-handle-multipart-parameter
1508              mm-security-handle 'gnus-details
1509              (format "Unknown sign protocol (%s)" protocol))))))
1510      ((equal subtype "encrypted")
1511       (unless (setq protocol
1512                     (mm-handle-multipart-ctl-parameter ctl 'protocol))
1513         ;; The message is broken.
1514         (let ((parts parts))
1515           (while parts
1516             (if (assoc (mm-handle-media-type (car parts))
1517                        mm-decrypt-function-alist)
1518                 (setq protocol (mm-handle-media-type (car parts))
1519                       parts nil)
1520               (setq parts (cdr parts))))))
1521       (setq func (nth 1 (assoc protocol mm-decrypt-function-alist)))
1522       (when (cond
1523              ((eq mm-decrypt-option 'never) nil)
1524              ((eq mm-decrypt-option 'always) t)
1525              ((eq mm-decrypt-option 'known)
1526               (and func
1527                    (or (not (setq functest
1528                                   (nth 3 (assoc protocol
1529                                                 mm-decrypt-function-alist))))
1530                        (funcall functest parts ctl))))
1531              (t
1532               (y-or-n-p
1533                (format "Decrypt (%s) part? "
1534                        (or (nth 2 (assoc protocol mm-decrypt-function-alist))
1535                            (format "protocol=%s" protocol))))))
1536         (save-excursion
1537           (if func
1538               (setq parts (funcall func parts ctl))
1539             (mm-set-handle-multipart-parameter
1540              mm-security-handle 'gnus-details
1541              (format "Unknown encrypt protocol (%s)" protocol))))))
1542      (t nil))
1543     parts))
1544
1545 (defun mm-multiple-handles (handles)
1546   (and (listp handles)
1547        (> (length handles) 1)
1548        (or (listp (car handles))
1549            (stringp (car handles)))))
1550
1551 (defun mm-complicated-handles (handles)
1552   (and (listp (car handles))
1553        (> (length handles) 1)))
1554
1555 (defun mm-merge-handles (handles1 handles2)
1556   (append
1557    (if (listp (car handles1))
1558        handles1
1559      (list handles1))
1560    (if (listp (car handles2))
1561        handles2
1562      (list handles2))))
1563
1564 (defun mm-readable-p (handle)
1565   "Say whether the content of HANDLE is readable."
1566   (and (< (with-current-buffer (mm-handle-buffer handle)
1567             (buffer-size)) 10000)
1568        (mm-with-unibyte-buffer
1569          (mm-insert-part handle)
1570          (and (eq (mm-body-7-or-8) '7bit)
1571               (not (mm-long-lines-p 76))))))
1572
1573 (provide 'mm-decode)
1574
1575 ;; arch-tag: 4f35d360-56b8-4030-9388-3ed82d359b9b
1576 ;;; mm-decode.el ends here