Importing Pterodactyl Gnus v0.93.
[elisp/gnus.git-] / lisp / mml.el
1 ;;; mml.el --- A package for parsing and validating MML documents
2 ;; Copyright (C) 1998,99 Free Software Foundation, Inc.
3
4 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
5 ;; This file is part of GNU Emacs.
6
7 ;; GNU Emacs is free software; you can redistribute it and/or modify
8 ;; it under the terms of the GNU General Public License as published by
9 ;; the Free Software Foundation; either version 2, or (at your option)
10 ;; any later version.
11
12 ;; GNU Emacs is distributed in the hope that it will be useful,
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 ;; GNU General Public License for more details.
16
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
19 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 ;; Boston, MA 02111-1307, USA.
21
22 ;;; Commentary:
23
24 ;;; Code:
25
26 (require 'mm-util)
27 (require 'mm-bodies)
28 (require 'mm-encode)
29 (require 'mm-decode)
30
31 (eval-and-compile
32   (autoload 'message-make-message-id "message"))
33
34 (defvar mml-syntax-table
35   (let ((table (copy-syntax-table emacs-lisp-mode-syntax-table)))
36     (modify-syntax-entry ?\\ "/" table)
37     (modify-syntax-entry ?< "(" table)
38     (modify-syntax-entry ?> ")" table)
39     (modify-syntax-entry ?@ "w" table)
40     (modify-syntax-entry ?/ "w" table)
41     (modify-syntax-entry ?= " " table)
42     (modify-syntax-entry ?* " " table)
43     (modify-syntax-entry ?\; " " table)
44     (modify-syntax-entry ?\' " " table)
45     table))
46
47 (defun mml-parse ()
48   "Parse the current buffer as an MML document."
49   (goto-char (point-min))
50   (let ((table (syntax-table)))
51     (unwind-protect
52         (progn
53           (set-syntax-table mml-syntax-table)
54           (mml-parse-1))
55       (set-syntax-table table))))
56
57 (defun mml-parse-1 ()
58   "Parse the current buffer as an MML document."
59   (let (struct tag point contents charsets warn)
60     (while (and (not (eobp))
61                 (not (looking-at "<#/multipart")))
62       (cond
63        ((looking-at "<#multipart")
64         (push (nconc (mml-read-tag) (mml-parse-1)) struct))
65        ((looking-at "<#external")
66         (push (nconc (mml-read-tag) (list (cons 'contents (mml-read-part))))
67               struct))
68        (t
69         (if (looking-at "<#part")
70             (setq tag (mml-read-tag))
71           (setq tag (list 'part '(type . "text/plain"))
72                 warn t))
73         (setq point (point)
74               contents (mml-read-part)
75               charsets (mm-find-mime-charset-region point (point)))
76         (if (< (length charsets) 2)
77             (push (nconc tag (list (cons 'contents contents)))
78                   struct)
79           (let ((nstruct (mml-parse-singlepart-with-multiple-charsets
80                           tag point (point))))
81             (when (and warn
82                        (not
83                         (y-or-n-p
84                          (format
85                           "Warning: Your message contains %d parts.  Really send? "
86                           (length nstruct)))))
87               (error "Edit your message to use only one charset"))
88             (setq struct (nconc nstruct struct)))))))
89     (unless (eobp)
90       (forward-line 1))
91     (nreverse struct)))
92
93 (defun mml-parse-singlepart-with-multiple-charsets (orig-tag beg end)
94   (save-excursion
95     (narrow-to-region beg end)
96     (goto-char (point-min))
97     (let ((current (mm-mime-charset (char-charset (following-char))))
98           charset struct space newline paragraph)
99       (while (not (eobp))
100         (cond
101          ;; The charset remains the same.
102          ((or (eq (setq charset (mm-mime-charset
103                                  (char-charset (following-char)))) 'us-ascii)
104               (eq charset current)))
105          ;; The initial charset was ascii.
106          ((eq current 'us-ascii)
107           (setq current charset
108                 space nil
109                 newline nil
110                 paragraph nil))
111          ;; We have a change in charsets.
112          (t
113           (push (append
114                  orig-tag
115                  (list (cons 'contents
116                              (buffer-substring-no-properties
117                               beg (or paragraph newline space (point))))))
118                 struct)
119           (setq beg (or paragraph newline space (point))
120                 current charset
121                 space nil
122                 newline nil
123                 paragraph nil)))
124         ;; Compute places where it might be nice to break the part.
125         (cond
126          ((memq (following-char) '(?  ?\t))
127           (setq space (1+ (point))))
128          ((eq (following-char) ?\n)
129           (setq newline (1+ (point))))
130          ((and (eq (following-char) ?\n)
131                (not (bobp))
132                (eq (char-after (1- (point))) ?\n))
133           (setq paragraph (point))))
134         (forward-char 1))
135       ;; Do the final part.
136       (unless (= beg (point))
137         (push (append orig-tag
138                       (list (cons 'contents
139                                   (buffer-substring-no-properties
140                                    beg (point)))))
141               struct))
142       struct)))
143
144 (defun mml-read-tag ()
145   "Read a tag and return the contents."
146   (let (contents name elem val)
147     (forward-char 2)
148     (setq name (buffer-substring-no-properties
149                 (point) (progn (forward-sexp 1) (point))))
150     (skip-chars-forward " \t\n")
151     (while (not (looking-at ">"))
152       (setq elem (buffer-substring-no-properties
153                   (point) (progn (forward-sexp 1) (point))))
154       (skip-chars-forward "= \t\n")
155       (setq val (buffer-substring-no-properties
156                  (point) (progn (forward-sexp 1) (point))))
157       (when (string-match "^\"\\(.*\\)\"$" val)
158         (setq val (match-string 1 val)))
159       (push (cons (intern elem) val) contents)
160       (skip-chars-forward " \t\n"))
161     (forward-char 1)
162     (skip-chars-forward " \t\n")
163     (cons (intern name) (nreverse contents))))
164
165 (defun mml-read-part ()
166   "Return the buffer up till the next part, multipart or closing part or multipart."
167   (let ((beg (point)))
168     ;; If the tag ended at the end of the line, we go to the next line.
169     (when (looking-at "[ \t]*\n")
170       (forward-line 1))
171     (if (re-search-forward
172          "<#\\(/\\)?\\(multipart\\|part\\|external\\)." nil t)
173         (prog1
174             (buffer-substring-no-properties beg (match-beginning 0))
175           (if (or (not (match-beginning 1))
176                   (equal (match-string 2) "multipart"))
177               (goto-char (match-beginning 0))
178             (when (looking-at "[ \t]*\n")
179               (forward-line 1))))
180       (buffer-substring-no-properties beg (goto-char (point-max))))))
181
182 (defvar mml-boundary nil)
183 (defvar mml-base-boundary "-=-=")
184 (defvar mml-multipart-number 0)
185
186 (defun mml-generate-mime ()
187   "Generate a MIME message based on the current MML document."
188   (let ((cont (mml-parse))
189         (mml-multipart-number 0))
190     (if (not cont)
191         nil
192       (with-temp-buffer
193         (if (and (consp (car cont))
194                  (= (length cont) 1))
195             (mml-generate-mime-1 (car cont))
196           (mml-generate-mime-1 (nconc (list 'multipart '(type . "mixed"))
197                                       cont)))
198         (buffer-string)))))
199
200 (defun mml-generate-mime-1 (cont)
201   (cond
202    ((eq (car cont) 'part)
203     (let (coded encoding charset filename type)
204       (setq type (or (cdr (assq 'type cont)) "text/plain"))
205       (if (member (car (split-string type "/")) '("text" "message"))
206           (with-temp-buffer
207             (cond
208              ((cdr (assq 'buffer cont))
209               (insert-buffer-substring (cdr (assq 'buffer cont))))
210              ((and (setq filename (cdr (assq 'filename cont)))
211                    (not (equal (cdr (assq 'nofile cont)) "yes")))
212               (mm-insert-file-contents filename))
213              (t
214               (save-restriction
215                 (narrow-to-region (point) (point))
216                 (insert (cdr (assq 'contents cont)))
217                 ;; Remove quotes from quoted tags.
218                 (goto-char (point-min))
219                 (while (re-search-forward
220                         "<#!+/?\\(part\\|multipart\\|external\\)" nil t)
221                   (delete-region (+ (match-beginning 0) 2)
222                                  (+ (match-beginning 0) 3))))))
223             (setq charset (mm-encode-body))
224             (setq encoding (mm-body-encoding charset))
225             (setq coded (buffer-string)))
226         (mm-with-unibyte-buffer
227           (cond
228            ((cdr (assq 'buffer cont))
229             (insert-buffer-substring (cdr (assq 'buffer cont))))
230            ((and (setq filename (cdr (assq 'filename cont)))
231                  (not (equal (cdr (assq 'nofile cont)) "yes")))
232             (mm-insert-file-contents filename))
233            (t
234             (insert (cdr (assq 'contents cont)))))
235           (setq encoding (mm-encode-buffer type)
236                 coded (buffer-string))))
237       (mml-insert-mime-headers cont type charset encoding)
238       (insert "\n")
239       (insert coded)))
240    ((eq (car cont) 'external)
241     (insert "Content-Type: message/external-body")
242     (let ((parameters (mml-parameter-string
243                        cont '(expiration size permission)))
244           (name (cdr (assq 'name cont))))
245       (when name
246         (setq name (mml-parse-file-name name))
247         (if (stringp name)
248             (mml-insert-parameter
249              (mail-header-encode-parameter "name" name)
250              "access-type=local-file")
251           (mml-insert-parameter
252            (mail-header-encode-parameter
253             "name" (file-name-nondirectory (nth 2 name)))
254            (mail-header-encode-parameter "site" (nth 1 name))
255            (mail-header-encode-parameter
256             "directory" (file-name-directory (nth 2 name))))
257           (mml-insert-parameter
258            (concat "access-type="
259                    (if (member (nth 0 name) '("ftp@" "anonymous@"))
260                        "anon-ftp"
261                      "ftp")))))      
262       (when parameters
263         (mml-insert-parameter-string
264          cont '(expiration size permission))))
265     (insert "\n\n")
266     (insert "Content-Type: " (cdr (assq 'type cont)) "\n")
267     (insert "Content-ID: " (message-make-message-id) "\n")
268     (insert "Content-Transfer-Encoding: "
269             (or (cdr (assq 'encoding cont)) "binary"))
270     (insert "\n\n")
271     (insert (or (cdr (assq 'contents cont))))
272     (insert "\n"))
273    ((eq (car cont) 'multipart)
274     (let ((mml-boundary (mml-compute-boundary cont)))
275       (insert (format "Content-Type: multipart/%s; boundary=\"%s\"\n"
276                       (or (cdr (assq 'type cont)) "mixed")
277                       mml-boundary))
278       (insert "\n")
279       (setq cont (cddr cont))
280       (while cont
281         (insert "\n--" mml-boundary "\n")
282         (mml-generate-mime-1 (pop cont)))
283       (insert "\n--" mml-boundary "--\n")))
284    (t
285     (error "Invalid element: %S" cont))))
286
287 (defun mml-compute-boundary (cont)
288   "Return a unique boundary that does not exist in CONT."
289   (let ((mml-boundary (mml-make-boundary)))
290     ;; This function tries again and again until it has found
291     ;; a unique boundary.
292     (while (not (catch 'not-unique
293                   (mml-compute-boundary-1 cont))))
294     mml-boundary))
295
296 (defun mml-compute-boundary-1 (cont)
297   (let (filename)
298     (cond
299      ((eq (car cont) 'part)
300       (with-temp-buffer
301         (cond
302          ((cdr (assq 'buffer cont))
303           (insert-buffer-substring (cdr (assq 'buffer cont))))
304          ((and (setq filename (cdr (assq 'filename cont)))
305                (not (equal (cdr (assq 'nofile cont)) "yes")))
306           (mm-insert-file-contents filename))
307          (t
308           (insert (cdr (assq 'contents cont)))))
309         (goto-char (point-min))
310         (when (re-search-forward (concat "^--" (regexp-quote mml-boundary))
311                                  nil t)
312           (setq mml-boundary (mml-make-boundary))
313           (throw 'not-unique nil))))
314      ((eq (car cont) 'multipart)
315       (mapcar 'mml-compute-boundary-1 (cddr cont))))
316     t))
317
318 (defun mml-make-boundary ()
319   (concat (make-string (% (incf mml-multipart-number) 60) ?=)
320           (if (> mml-multipart-number 17)
321               (format "%x" mml-multipart-number)
322             "")
323           mml-base-boundary))
324
325 (defun mml-make-string (num string)
326   (let ((out ""))
327     (while (not (zerop (decf num)))
328       (setq out (concat out string)))
329     out))
330
331 (defun mml-insert-mime-headers (cont type charset encoding)
332   (let (parameters disposition description)
333     (setq parameters
334           (mml-parameter-string
335            cont '(name access-type expiration size permission)))
336     (when (or charset
337               parameters
338               (not (equal type "text/plain")))
339       (when (consp charset)
340         (error
341          "Can't encode a part with several charsets."))
342       (insert "Content-Type: " type)
343       (when charset
344         (insert "; " (mail-header-encode-parameter
345                       "charset" (symbol-name charset))))
346       (when parameters
347         (mml-insert-parameter-string
348          cont '(name access-type expiration size permission)))
349       (insert "\n"))
350     (setq parameters
351           (mml-parameter-string
352            cont '(filename creation-date modification-date read-date)))
353     (when (or (setq disposition (cdr (assq 'disposition cont)))
354               parameters)
355       (insert "Content-Disposition: " (or disposition "inline"))
356       (when parameters
357         (mml-insert-parameter-string
358          cont '(filename creation-date modification-date read-date)))
359       (insert "\n"))
360     (unless (eq encoding '7bit)
361       (insert (format "Content-Transfer-Encoding: %s\n" encoding)))
362     (when (setq description (cdr (assq 'description cont)))
363       (insert "Content-Description: "
364               (mail-encode-encoded-word-string description) "\n"))))
365
366 (defun mml-parameter-string (cont types)
367   (let ((string "")
368         value type)
369     (while (setq type (pop types))
370       (when (setq value (cdr (assq type cont)))
371         ;; Strip directory component from the filename parameter.
372         (when (eq type 'filename)
373           (setq value (file-name-nondirectory value)))
374         (setq string (concat string "; "
375                              (mail-header-encode-parameter
376                               (symbol-name type) value)))))
377     (when (not (zerop (length string)))
378       string)))
379
380 (defun mml-insert-parameter-string (cont types)
381   (let (value type)
382     (while (setq type (pop types))
383       (when (setq value (cdr (assq type cont)))
384         ;; Strip directory component from the filename parameter.
385         (when (eq type 'filename)
386           (setq value (file-name-nondirectory value)))
387         (mml-insert-parameter
388          (mail-header-encode-parameter
389           (symbol-name type) value))))))
390
391 (defvar ange-ftp-path-format)
392 (defvar efs-path-regexp)
393 (defun mml-parse-file-name (path)
394   (if (if (boundp 'efs-path-regexp)
395           (string-match efs-path-regexp path)
396         (if (boundp 'ange-ftp-path-format)
397             (string-match (car ange-ftp-path-format))))
398       (list (match-string 1 path) (match-string 2 path)
399             (substring path (1+ (match-end 2))))
400     path))
401
402 (defun mml-insert-buffer (buffer)
403   "Insert BUFFER at point and quote any MML markup."
404   (save-restriction
405     (narrow-to-region (point) (point))
406     (insert-buffer-substring buffer)
407     (mml-quote-region (point-min) (point-max))
408     (goto-char (point-max))))
409
410 ;;;
411 ;;; Transforming MIME to MML
412 ;;;
413
414 (defun mime-to-mml ()
415   "Translate the current buffer (which should be a message) into MML."
416   ;; First decode the head.
417   (save-restriction
418     (message-narrow-to-head)
419     (mail-decode-encoded-word-region (point-min) (point-max)))
420   (let ((handles (mm-dissect-buffer t)))
421     (goto-char (point-min))
422     (search-forward "\n\n" nil t)
423     (delete-region (point) (point-max))
424     (if (stringp (car handles))
425         (mml-insert-mime handles)
426       (mml-insert-mime handles t))
427     (mm-destroy-parts handles)))
428
429 (defun mml-to-mime ()
430   "Translate the current buffer from MML to MIME."
431   (message-encode-message-body)
432   (save-restriction
433     (message-narrow-to-headers)
434     (mail-encode-encoded-word-buffer)))
435
436 (defun mml-insert-mime (handle &optional no-markup)
437   (let (textp buffer)
438     ;; Determine type and stuff.
439     (unless (stringp (car handle))
440       (unless (setq textp (equal (mm-handle-media-supertype handle)
441                                  "text"))
442         (save-excursion
443           (set-buffer (setq buffer (generate-new-buffer " *mml*")))
444           (mm-insert-part handle))))
445     (unless no-markup
446       (mml-insert-mml-markup handle buffer textp))
447     (cond
448      ((stringp (car handle))
449       (mapcar 'mml-insert-mime (cdr handle))
450       (insert "<#/multipart>\n"))
451      (textp
452       (mm-insert-part handle)
453       (goto-char (point-max)))
454      (t
455       (insert "<#/part>\n")))))
456
457 (defun mml-insert-mml-markup (handle &optional buffer nofile)
458   "Take a MIME handle and insert an MML tag."
459   (if (stringp (car handle))
460       (insert "<#multipart type=" (mm-handle-media-subtype handle)
461               ">\n")
462     (insert "<#part type=" (mm-handle-media-type handle))
463     (dolist (elem (append (cdr (mm-handle-type handle))
464                           (cdr (mm-handle-disposition handle))))
465       (insert " " (symbol-name (car elem)) "=\"" (cdr elem) "\""))
466     (when (mm-handle-disposition handle)
467       (insert " disposition=" (car (mm-handle-disposition handle))))
468     (when buffer
469       (insert " buffer=\"" (buffer-name buffer) "\""))
470     (when nofile
471       (insert " nofile=yes"))
472     (when (mm-handle-description handle)
473       (insert " description=\"" (mm-handle-description handle) "\""))
474     (insert ">\n")))
475
476 (defun mml-insert-parameter (&rest parameters)
477   "Insert PARAMETERS in a nice way."
478   (dolist (param parameters)
479     (insert ";")
480     (let ((point (point)))
481       (insert " " param)
482       (when (> (current-column) 71)
483         (goto-char point)
484         (insert "\n ")
485         (end-of-line)))))
486
487 ;;;
488 ;;; Mode for inserting and editing MML forms
489 ;;;
490
491 (defvar mml-mode-map
492   (let ((map (make-sparse-keymap))
493         (main (make-sparse-keymap)))
494     (define-key map "f" 'mml-attach-file)
495     (define-key map "b" 'mml-attach-buffer)
496     (define-key map "e" 'mml-attach-external)
497     (define-key map "q" 'mml-quote-region)
498     (define-key map "m" 'mml-insert-multipart)
499     (define-key map "p" 'mml-insert-part)
500     (define-key map "v" 'mml-validate)
501     (define-key map "P" 'mml-preview)
502     (define-key main "\M-m" map)
503     main))
504
505 (easy-menu-define
506  mml-menu mml-mode-map ""
507  '("MML"
508    ("Attach"
509     ["File" mml-attach-file t]
510     ["Buffer" mml-attach-buffer t]
511     ["External" mml-attach-external t])
512    ("Insert"
513     ["Multipart" mml-insert-multipart t]
514     ["Part" mml-insert-part t])
515    ["Quote" mml-quote-region t]
516    ["Validate" mml-validate t]
517    ["Preview" mml-preview t]))
518
519 (defvar mml-mode nil
520   "Minor mode for editing MML.")
521
522 (defun mml-mode (&optional arg)
523   "Minor mode for editing MML.
524
525 \\{mml-mode-map}"
526   (interactive "P")
527   (if (not (set (make-local-variable 'mml-mode)
528                 (if (null arg) (not mml-mode)
529                   (> (prefix-numeric-value arg) 0))))
530       nil
531     (set (make-local-variable 'mml-mode) t)
532     (unless (assq 'mml-mode minor-mode-alist)
533       (push `(mml-mode " MML") minor-mode-alist))
534     (unless (assq 'mml-mode minor-mode-map-alist)
535       (push (cons 'mml-mode mml-mode-map)
536             minor-mode-map-alist)))
537   (run-hooks 'mml-mode-hook))
538
539 ;;;
540 ;;; Helper functions for reading MIME stuff from the minibuffer and
541 ;;; inserting stuff to the buffer.
542 ;;;
543
544 (defun mml-minibuffer-read-file (prompt)
545   (let ((file (read-file-name prompt nil nil t)))
546     ;; Prevent some common errors.  This is inspired by similar code in
547     ;; VM.
548     (when (file-directory-p file)
549       (error "%s is a directory, cannot attach" file))
550     (unless (file-exists-p file)
551       (error "No such file: %s" file))
552     (unless (file-readable-p file)
553       (error "Permission denied: %s" file))
554     file))
555
556 (defun mml-minibuffer-read-type (name &optional default)
557   (let* ((default (or default
558                       (mm-default-file-encoding name)
559                       ;; Perhaps here we should check what the file
560                       ;; looks like, and offer text/plain if it looks
561                       ;; like text/plain.
562                       "application/octet-stream"))
563          (string (completing-read
564                   (format "Content type (default %s): " default)
565                   (mapcar
566                    'list
567                    (delete-duplicates
568                     (nconc
569                      (mapcar (lambda (m) (cdr m))
570                              mailcap-mime-extensions)
571                      (apply
572                       'nconc
573                       (mapcar
574                        (lambda (l)
575                          (delq nil
576                                (mapcar
577                                 (lambda (m)
578                                   (let ((type (cdr (assq 'type (cdr m)))))
579                                     (if (equal (cadr (split-string type "/"))
580                                                "*")
581                                         nil
582                                       type)))
583                                 (cdr l))))
584                        mailcap-mime-data)))
585                     :test 'equal)))))
586     (if (not (equal string ""))
587         string
588       default)))
589
590 (defun mml-minibuffer-read-description ()
591   (let ((description (read-string "One line description: ")))
592     (when (string-match "\\`[ \t]*\\'" description)
593       (setq description nil))
594     description))
595
596 (defun mml-quote-region (beg end)
597   "Quote the MML tags in the region."
598   (interactive "r")
599   (save-excursion
600     (save-restriction
601       ;; Temporarily narrow the region to defend from changes
602       ;; invalidating END.
603       (narrow-to-region beg end)
604       (goto-char (point-min))
605       ;; Quote parts.
606       (while (re-search-forward
607               "<#/?!*\\(multipart\\|part\\|external\\)" nil t)
608         (goto-char (match-beginning 1))
609         (insert "!")))))
610
611 (defun mml-insert-tag (name &rest plist)
612   "Insert an MML tag described by NAME and PLIST."
613   (when (symbolp name)
614     (setq name (symbol-name name)))
615   (insert "<#" name)
616   (while plist
617     (let ((key (pop plist))
618           (value (pop plist)))
619       (when value
620         ;; Quote VALUE if it contains suspicious characters.
621         (when (string-match "[\"\\~/* \t\n]" value)
622           (setq value (prin1-to-string value)))
623         (insert (format " %s=%s" key value)))))
624   (insert ">\n<#/" name ">\n"))
625
626 ;;; Attachment functions.
627
628 (defun mml-attach-file (file &optional type description)
629   "Attach a file to the outgoing MIME message.
630 The file is not inserted or encoded until you send the message with
631 `\\[message-send-and-exit]' or `\\[message-send]'.
632
633 FILE is the name of the file to attach.  TYPE is its content-type, a
634 string of the form \"type/subtype\".  DESCRIPTION is a one-line
635 description of the attachment."
636   (interactive
637    (let* ((file (mml-minibuffer-read-file "Attach file: "))
638           (type (mml-minibuffer-read-type file))
639           (description (mml-minibuffer-read-description)))
640      (list file type description)))
641   (mml-insert-tag 'part 'type type 'filename file 'disposition "attachment"
642                   'description description))
643
644 (defun mml-attach-buffer (buffer &optional type description)
645   "Attach a buffer to the outgoing MIME message.
646 See `mml-attach-file' for details of operation."
647   (interactive
648    (let* ((buffer (read-buffer "Attach buffer: "))
649           (type (mml-minibuffer-read-type buffer "text/plain"))
650           (description (mml-minibuffer-read-description)))
651      (list buffer type description)))
652   (mml-insert-tag 'part 'type type 'buffer buffer 'disposition "attachment"
653                   'description description))
654
655 (defun mml-attach-external (file &optional type description)
656   "Attach an external file into the buffer.
657 FILE is an ange-ftp/efs specification of the part location.
658 TYPE is the MIME type to use."
659   (interactive
660    (let* ((file (mml-minibuffer-read-file "Attach external file: "))
661           (type (mml-minibuffer-read-type file))
662           (description (mml-minibuffer-read-description)))
663      (list file type description)))
664   (mml-insert-tag 'external 'type type 'name file 'disposition "attachment"
665                   'description description))
666
667 (defun mml-insert-multipart (&optional type)
668   (interactive (list (completing-read "Multipart type (default mixed): "
669                      '(("mixed") ("alternative") ("digest") ("parallel")
670                        ("signed") ("encrypted"))
671                      nil nil "mixed")))
672   (or type
673       (setq type "mixed"))
674   (mml-insert-tag "multipart" 'type type)
675   (forward-line -1))
676
677 (defun mml-preview (&optional raw)
678  "Display current buffer with Gnus, in a new buffer.
679 If RAW, don't highlight the article."
680  (interactive "P")
681  (let ((buf (current-buffer)))
682    (switch-to-buffer (get-buffer-create 
683                      (concat (if raw "*Raw MIME preview of "
684                                "*MIME preview of ") (buffer-name))))
685    (erase-buffer)
686    (insert-buffer buf)
687    (mml-to-mime)
688    (unless raw
689      (run-hooks 'gnus-article-decode-hook)
690      (let ((gnus-newsgroup-name "dummy"))
691       (gnus-article-prepare-display)))
692    (fundamental-mode)
693    (setq buffer-read-only t)
694    (goto-char (point-min))))
695
696 (defun mml-validate ()
697   "Validate the current MML document."
698   (interactive)
699   (mml-parse))
700
701 (provide 'mml)
702
703 ;;; mml.el ends here