(mime-edit-insert-text): New optional argument `subtype'.
[elisp/semi.git] / mime-edit.el
1 ;;; mime-edit.el --- Simple MIME Composer for GNU Emacs
2
3 ;; Copyright (C) 1993,1994,1995,1996,1997,1998 Free Software Foundation, Inc.
4
5 ;; Author: UMEDA Masanobu <umerin@mse.kyutech.ac.jp>
6 ;;         MORIOKA Tomohiko <morioka@jaist.ac.jp>
7 ;; Maintainer: MORIOKA Tomohiko <morioka@jaist.ac.jp>
8 ;; Created: 1994/08/21 renamed from mime.el
9 ;;      Renamed: 1997/2/21 from tm-edit.el
10 ;; Keywords: MIME, multimedia, multilingual, mail, news
11
12 ;; This file is part of SEMI (Sophisticated Emacs MIME Interfaces).
13
14 ;; This program is free software; you can redistribute it and/or
15 ;; modify it under the terms of the GNU General Public License as
16 ;; published by the Free Software Foundation; either version 2, or (at
17 ;; your option) any later version.
18
19 ;; This program is distributed in the hope that it will be useful, but
20 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
22 ;; General Public License for more details.
23
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
26 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
27 ;; Boston, MA 02111-1307, USA.
28
29 ;;; Commentary:
30
31 ;; This is an Emacs minor mode for editing Internet multimedia
32 ;; messages formatted in MIME (RFC 2045, 2046, 2047, 2048 and 2049).
33 ;; All messages in this mode are composed in the tagged MIME format,
34 ;; that are described in the following examples.  The messages
35 ;; composed in the tagged MIME format are automatically translated
36 ;; into a MIME compliant message when exiting the mode.
37
38 ;; Mule (multilingual feature of Emacs 20 and multilingual extension
39 ;; for XEmacs 20) has a capability of handling multilingual text in
40 ;; limited ISO-2022 manner that is based on early experiences in
41 ;; Japanese Internet community and resulted in RFC 1468 (ISO-2022-JP
42 ;; charset for MIME).  In order to enable multilingual capability in
43 ;; single text message in MIME, charset of multilingual text written
44 ;; in Mule is declared as either `ISO-2022-JP-2' [RFC 1554].  Mule is
45 ;; required for reading the such messages.
46
47 ;; This MIME composer can work with Mail mode, mh-e letter Mode, and
48 ;; News mode.  First of all, you need the following autoload
49 ;; definition to load mime-edit-mode automatically:
50 ;;
51 ;; (autoload 'turn-on-mime-edit "mime-edit"
52 ;;           "Minor mode for editing MIME message." t)
53 ;;
54 ;; In case of Mail mode (includes VM mode), you need the following
55 ;; hook definition:
56 ;;
57 ;; (add-hook 'mail-mode-hook 'turn-on-mime-edit)
58 ;; (add-hook 'mail-send-hook 'mime-edit-maybe-translate)
59 ;;
60 ;; In case of MH-E, you need the following hook definition:
61 ;;
62 ;; (add-hook 'mh-letter-mode-hook
63 ;;           (function
64 ;;            (lambda ()
65 ;;              (turn-on-mime-edit)
66 ;;              (make-local-variable 'mail-header-separator)
67 ;;              (setq mail-header-separator "--------")
68 ;;              ))))
69 ;; (add-hook 'mh-before-send-letter-hook 'mime-edit-maybe-translate)
70 ;;
71 ;; In case of News mode, you need the following hook definition:
72 ;;
73 ;; (add-hook 'news-reply-mode-hook 'turn-on-mime-edit)
74 ;; (add-hook 'news-inews-hook 'mime-edit-maybe-translate)
75 ;;
76 ;; In case of Emacs 19, it is possible to emphasize the message tags
77 ;; using font-lock mode as follows:
78 ;;
79 ;; (add-hook 'mime-edit-mode-hook
80 ;;           (function
81 ;;            (lambda ()
82 ;;              (font-lock-mode 1)
83 ;;              (setq font-lock-keywords (list mime-edit-tag-regexp))
84 ;;              ))))
85
86 ;; The message tag looks like:
87 ;;
88 ;;      --[[TYPE/SUBTYPE;PARAMETERS][ENCODING]]
89 ;;
90 ;; The tagged MIME message examples:
91 ;;
92 ;; This is a conventional plain text.  It should be translated into
93 ;; text/plain.
94 ;;
95 ;;--[[text/plain]]
96 ;; This is also a plain text.  But, it is explicitly specified as is.
97 ;;--[[text/plain; charset=ISO-8859-1]]
98 ;; This is also a plain text.  But charset is specified as iso-8859-1.
99 ;;
100 ;; ¡Hola!  Buenos días.  ¿Cómo está usted?
101 ;;--[[text/enriched]]
102 ;; <center>This is a richtext.</center>
103 ;;
104 ;;--[[image/gif][base64]]^M...image encoded in base64 comes here...
105 ;;
106 ;;--[[audio/basic][base64]]^M...audio encoded in base64 comes here...
107
108 ;;; Code:
109
110 (require 'emu)
111 (require 'sendmail)
112 (require 'mail-utils)
113 (require 'mel)
114 (require 'mime-view)
115 (require 'eword-encode)
116 (require 'signature)
117 (require 'alist)
118
119
120 ;;; @ version
121 ;;;
122
123 (defconst mime-edit-version-string
124   `,(concat "SEMI "
125             (mapconcat #'number-to-string (cdr semi-version) ".")
126             " - \"" (car semi-version) "\""))
127
128
129 ;;; @ variables
130 ;;;
131
132 (defgroup mime-edit nil
133   "MIME edit mode"
134   :group 'mime)
135
136 (defcustom mime-ignore-preceding-spaces nil
137   "*Ignore preceding white spaces if non-nil."
138   :group 'mime-edit
139   :type 'boolean)
140
141 (defcustom mime-ignore-trailing-spaces nil
142   "*Ignore trailing white spaces if non-nil."
143   :group 'mime-edit
144   :type 'boolean)
145
146 (defcustom mime-ignore-same-text-tag t
147   "*Ignore preceding text content-type tag that is same with new one.
148 If non-nil, the text tag is not inserted unless something different."
149   :group 'mime-edit
150   :type 'boolean)
151
152 (defcustom mime-auto-hide-body t
153   "*Hide non-textual body encoded in base64 after insertion if non-nil."
154   :group 'mime-edit
155   :type 'boolean)
156
157 (defcustom mime-edit-voice-recorder
158   (function mime-edit-voice-recorder-for-sun)
159   "*Function to record a voice message and encode it."
160   :group 'mime-edit
161   :type 'function)
162
163 (defcustom mime-edit-mode-hook nil
164   "*Hook called when enter MIME mode."
165   :group 'mime-edit
166   :type 'hook)
167
168 (defcustom mime-edit-translate-hook nil
169   "*Hook called before translating into a MIME compliant message.
170 To insert a signature file automatically, call the function
171 `mime-edit-insert-signature' from this hook."
172   :group 'mime-edit
173   :type 'hook)
174
175 (defcustom mime-edit-exit-hook nil
176   "*Hook called when exit MIME mode."
177   :group 'mime-edit
178   :type 'hook)
179
180 (defvar mime-content-types
181   '(("text"
182      ;; Charset parameter need not to be specified, since it is
183      ;; defined automatically while translation.
184      ("plain"
185       ;;("charset" "" "ISO-2022-JP" "US-ASCII" "ISO-8859-1" "ISO-8859-8")
186       )
187      ("richtext"
188       ;;("charset" "" "ISO-2022-JP" "US-ASCII" "ISO-8859-1" "ISO-8859-8")
189       )
190      ("enriched"
191       ;;("charset" "" "ISO-2022-JP" "US-ASCII" "ISO-8859-1" "ISO-8859-8")
192       )
193      ("x-latex"
194       ;;("charset" "" "ISO-2022-JP" "US-ASCII" "ISO-8859-1" "ISO-8859-8")
195       )
196      ("html"
197       ;;("charset" "" "ISO-2022-JP" "US-ASCII" "ISO-8859-1" "ISO-8859-8")
198       )
199      ("x-rot13-47-48")
200      )
201     ("message"
202      ("external-body"
203       ("access-type"
204        ("anon-ftp"
205         ("site" "ftp.jaist.ac.jp" "wnoc-fuk.wide.ad.jp" "nic.karrn.ad.jp")
206         ("directory" "/pub/GNU/elisp/mime")
207         ("name")
208         ("mode" "image" "ascii" "local8"))
209        ("ftp"
210         ("site")
211         ("directory")
212         ("name")
213         ("mode" "image" "ascii" "local8"))
214        ("tftp"        ("site") ("name"))
215        ("afs"         ("site") ("name"))
216        ("local-file"  ("site") ("name"))
217        ("mail-server" ("server" "ftpmail@nic.karrn.ad.jp"))
218        ))
219      ("rfc822")
220      )
221     ("application"
222      ("octet-stream" ("type" "" "tar" "shar"))
223      ("postscript")
224      ("x-kiss" ("x-cnf")))
225     ("image"
226      ("gif")
227      ("jpeg")
228      ("png")
229      ("tiff")
230      ("x-pic")
231      ("x-mag")
232      ("x-xwd")
233      ("x-xbm")
234      )
235     ("audio" ("basic"))
236     ("video" ("mpeg"))
237     )
238   "*Alist of content-type, subtype, parameters and its values.")
239
240 (defcustom mime-file-types
241   '(("\\.txt$"
242      "text"     "plain"         nil
243      nil
244      "inline"           (("filename" . file))
245      )
246     ("\\.pln$"
247      "text"     "plain"         nil
248      nil
249      "inline"           (("filename" . file))
250      )
251     ("\\.rtf$"
252      "text"     "richtext"      nil
253      nil
254      nil                nil)
255     ("\\.html$"
256      "text"     "html"          nil
257      nil
258      nil                nil)
259     ("\\.ps$"
260      "application" "postscript" nil
261      "quoted-printable"
262      "attachment"       (("filename" . file))
263      )
264     ("\\.jpg$"
265      "image"    "jpeg"          nil
266      "base64"
267      "inline"           (("filename" . file))
268      )
269     ("\\.gif$"
270      "image"    "gif"           nil
271      "base64"
272      "inline"           (("filename" . file))
273      )
274     ("\\.png$"
275      "image"    "png"           nil
276      "base64"
277      "inline"           (("filename" . file))
278      )
279     ("\\.tiff$"
280      "image"    "tiff"          nil
281      "base64"
282      "inline"           (("filename" . file))
283      )
284     ("\\.pic$"
285      "image"    "x-pic"         nil
286      "base64"
287      "inline"           (("filename" . file))
288      )
289     ("\\.mag$"
290      "image"    "x-mag"         nil
291      "base64"
292      "inline"           (("filename" . file))
293      )
294     ("\\.xbm$"
295      "image"    "x-xbm"         nil
296      "base64"
297      "inline"           (("filename" . file))
298      )
299     ("\\.xwd$"
300      "image"    "x-xwd"         nil
301      "base64"
302      "inline"           (("filename" . file))
303      )
304     ("\\.au$"
305      "audio"    "basic"         nil
306      "base64"
307      "attachment"               (("filename" . file))
308      )
309     ("\\.mpg$"
310      "video"    "mpeg"          nil
311      "base64"
312      "attachment"       (("filename" . file))
313      )
314     ("\\.el$"
315      "application" "octet-stream" (("type" . "emacs-lisp"))
316      "7bit"
317      "attachment"       (("filename" . file))
318      )
319     ("\\.lsp$"
320      "application" "octet-stream" (("type" . "common-lisp"))
321      "7bit"
322      "attachment"       (("filename" . file))
323      )
324     ("\\.tar\\.gz$"
325      "application" "octet-stream" (("type" . "tar+gzip"))
326      "base64"
327      "attachment"       (("filename" . file))
328      )
329     ("\\.tgz$"
330      "application" "octet-stream" (("type" . "tar+gzip"))
331      "base64"
332      "attachment"       (("filename" . file))
333      )
334     ("\\.tar\\.Z$"
335      "application" "octet-stream" (("type" . "tar+compress"))
336      "base64"
337      "attachment"       (("filename" . file))
338      )
339     ("\\.taz$"
340      "application" "octet-stream" (("type" . "tar+compress"))
341      "base64"
342      "attachment"       (("filename" . file))
343      )
344     ("\\.gz$"
345      "application" "octet-stream" (("type" . "gzip"))
346      "base64"
347      "attachment"       (("filename" . file))
348      )
349     ("\\.Z$"
350      "application" "octet-stream" (("type" . "compress"))
351      "base64"
352      "attachment"       (("filename" . file))
353      )
354     ("\\.lzh$"
355      "application" "octet-stream" (("type" . "lha"))
356      "base64"
357      "attachment"       (("filename" . file))
358      )
359     ("\\.zip$"
360      "application" "zip" nil
361      "base64"
362      "attachment"       (("filename" . file))
363      )
364     ("\\.diff$"
365      "application" "octet-stream" (("type" . "patch"))
366      nil
367      "attachment"       (("filename" . file))
368      )
369     ("\\.patch$"
370      "application" "octet-stream" (("type" . "patch"))
371      nil
372      "attachment"       (("filename" . file))
373      )
374     ("\\.signature"
375      "text"     "plain"         nil     nil     nil     nil)
376     (".*"
377      "application" "octet-stream" nil
378      nil
379      "attachment"       (("filename" . file)))
380     )
381   "*Alist of file name, types, parameters, and default encoding.
382 If encoding is nil, it is determined from its contents."
383   :type `(repeat
384           (list regexp
385                 ;; primary-type
386                 (choice :tag "Primary-Type"
387                         ,@(nconc (mapcar (lambda (cell)
388                                            (list 'item (car cell))
389                                            )
390                                          mime-content-types)
391                                  '(string)))
392                 ;; subtype
393                 (choice :tag "Sub-Type"
394                         ,@(nconc
395                            (apply #'nconc
396                                   (mapcar (lambda (cell)
397                                             (mapcar (lambda (cell)
398                                                       (list 'item (car cell))
399                                                       )
400                                                     (cdr cell)))
401                                           mime-content-types))
402                            '(string)))
403                 ;; parameters
404                 (repeat :tag "Parameters of Content-Type field"
405                         (cons string (choice string symbol)))
406                 ;; content-transfer-encoding
407                 (choice :tag "Encoding"
408                         ,@(cons
409                            '(const nil)
410                            (mapcar (lambda (cell)
411                                      (list 'item (car cell))
412                                      )
413                                    mime-file-encoding-method-alist)))
414                 ;; disposition-type
415                 (choice :tag "Disposition-Type"
416                         (item nil)
417                         (item "inline")
418                         (item "attachment")
419                         string)
420                 ;; parameters
421                 (repeat :tag "Parameters of Content-Disposition field"
422                         (cons string (choice string symbol)))
423                 ))
424   :group 'mime-edit)
425
426
427 ;;; @@ about charset, encoding and transfer-level
428 ;;;
429
430 (defvar mime-charset-type-list
431   '((us-ascii           7 nil)
432     (iso-8859-1         8 "quoted-printable")
433     (iso-8859-2         8 "quoted-printable")
434     (iso-8859-3         8 "quoted-printable")
435     (iso-8859-4         8 "quoted-printable")
436     (iso-8859-5         8 "quoted-printable")
437     (koi8-r             8 "quoted-printable")
438     (iso-8859-7         8 "quoted-printable")
439     (iso-8859-8         8 "quoted-printable")
440     (iso-8859-9         8 "quoted-printable")
441     (iso-2022-jp        7 "base64")
442     (iso-2022-kr        7 "base64")
443     (euc-kr             8 "base64")
444     (cn-gb2312          8 "quoted-printable")
445     (cn-big5            8 "base64")
446     (gb2312             8 "quoted-printable")
447     (big5               8 "base64")
448     (iso-2022-jp-2      7 "base64")
449     (iso-2022-int-1     7 "base64")
450     ))
451
452 (defvar mime-transfer-level 7
453   "*A number of network transfer level.  It should be bigger than 7.")
454 (make-variable-buffer-local 'mime-transfer-level)
455
456 (defsubst mime-encoding-name (transfer-level &optional not-omit)
457   (cond ((> transfer-level 8) "binary")
458         ((= transfer-level 8) "8bit")
459         (not-omit "7bit")
460         ))
461
462 (defvar mime-transfer-level-string
463   (mime-encoding-name mime-transfer-level 'not-omit)
464   "A string formatted version of mime-transfer-level")
465 (make-variable-buffer-local 'mime-transfer-level-string)
466
467 (defun mime-make-charset-default-encoding-alist (transfer-level)
468   (mapcar (function
469            (lambda (charset-type)
470              (let ((charset  (car charset-type))
471                    (type     (nth 1 charset-type))
472                    (encoding (nth 2 charset-type))
473                    )
474                (if (<= type transfer-level)
475                    (cons charset (mime-encoding-name type))
476                  (cons charset encoding)
477                  ))))
478           mime-charset-type-list))
479
480 (defvar mime-edit-charset-default-encoding-alist
481   (mime-make-charset-default-encoding-alist mime-transfer-level))
482 (make-variable-buffer-local 'mime-edit-charset-default-encoding-alist)
483
484
485 ;;; @@ about message inserting
486 ;;;
487
488 (defvar mime-edit-yank-ignored-field-list
489   '("Received" "Approved" "Path" "Replied" "Status"
490     "Xref" "X-UIDL" "X-Filter" "X-Gnus-.*" "X-VM-.*")
491   "Delete these fields from original message when it is inserted
492 as message/rfc822 part.
493 Each elements are regexp of field-name.")
494
495 (defvar mime-edit-yank-ignored-field-regexp
496   (concat "^"
497           (apply (function regexp-or) mime-edit-yank-ignored-field-list)
498           ":"))
499
500 (defvar mime-edit-message-inserter-alist nil)
501 (defvar mime-edit-mail-inserter-alist nil)
502
503
504 ;;; @@ about message splitting
505 ;;;
506
507 (defcustom mime-edit-split-message t
508   "*Split large message if it is non-nil."
509   :group 'mime-edit
510   :type 'boolean)
511
512 (defcustom mime-edit-message-default-max-lines 1000
513   "*Default maximum lines of a message."
514   :group 'mime-edit
515   :type 'integer)
516
517 (defcustom mime-edit-message-max-lines-alist
518   '((news-reply-mode . 500))
519   "Alist of major-mode vs maximum lines of a message.
520 If it is not specified for a major-mode,
521 `mime-edit-message-default-max-lines' is used."
522   :group 'mime-edit
523   :type 'list)
524
525 (defconst mime-edit-split-ignored-field-regexp
526   "\\(^Content-\\|^Subject:\\|^Mime-Version:\\)")
527
528 (defvar mime-edit-split-blind-field-regexp
529   "\\(^[BDFbdf]cc:\\|^cc:[ \t]*$\\)")
530
531 (defvar mime-edit-split-message-sender-alist nil)
532
533 (defvar mime-edit-news-reply-mode-server-running nil)
534
535
536 ;;; @@ about PGP
537 ;;;
538
539 (defvar mime-edit-signing-type 'pgp-elkins
540   "*PGP signing type (pgp-elkins, pgp-kazu or nil).")
541
542 (defvar mime-edit-encrypting-type 'pgp-elkins
543   "*PGP encrypting type (pgp-elkins, pgp-kazu or nil).")
544
545
546 ;;; @@ about tag
547 ;;;
548
549 (defconst mime-edit-single-part-tag-regexp
550   "--[[][[]\\([^]]*\\)]\\([[]\\([^]]*\\)]\\|\\)]"
551   "*Regexp of MIME tag in the form of [[CONTENT-TYPE][ENCODING]].")
552
553 (defconst mime-edit-quoted-single-part-tag-regexp
554   (concat "- " (substring mime-edit-single-part-tag-regexp 1)))
555
556 (defconst mime-edit-multipart-beginning-regexp "--<<\\([^<>]+\\)>>-{\n")
557
558 (defconst mime-edit-multipart-end-regexp "--}-<<\\([^<>]+\\)>>\n")
559
560 (defconst mime-edit-beginning-tag-regexp
561   (regexp-or mime-edit-single-part-tag-regexp
562              mime-edit-multipart-beginning-regexp))
563
564 (defconst mime-edit-end-tag-regexp
565   (regexp-or mime-edit-single-part-tag-regexp
566              mime-edit-multipart-end-regexp))
567
568 (defconst mime-edit-tag-regexp
569   (regexp-or mime-edit-single-part-tag-regexp
570              mime-edit-multipart-beginning-regexp
571              mime-edit-multipart-end-regexp))
572
573 (defvar mime-tag-format "--[[%s]]"
574   "*Control-string making a MIME tag.")
575
576 (defvar mime-tag-format-with-encoding "--[[%s][%s]]"
577   "*Control-string making a MIME tag with encoding.")
578
579
580 ;;; @@ multipart boundary
581 ;;;
582
583 (defvar mime-multipart-boundary "Multipart"
584   "*Boundary of a multipart message.")
585
586
587 ;;; @@ optional header fields
588 ;;;
589
590 (defvar mime-edit-insert-x-emacs-field t
591   "*If non-nil, insert X-Emacs header field.")
592
593 (defvar mime-edit-x-emacs-value
594   (if (featurep 'xemacs)
595       (concat emacs-version (if (featurep 'mule)
596                                 " with mule"
597                               " without mule"))
598     (let ((ver (if (string-match "\\.[0-9]+$" emacs-version)
599                    (substring emacs-version 0 (match-beginning 0))
600                  emacs-version)))
601       (if (featurep 'mule)
602           (concat "Emacs " ver
603                   (if enable-multibyte-characters
604                       (concat ", MULE " mule-version)
605                     " (with raw setting)")
606                   (if (featurep 'meadow)
607                       (concat ", " (Meadow-version))
608                     ))
609         ver)))
610   "Body of X-Emacs field.
611 If variable `mime-edit-insert-x-emacs-field' is not nil, it is
612 inserted into message header.")
613
614 \f
615 ;;; @ constants
616 ;;;
617
618 (defconst mime-tspecials-regexp "[][()<>@,;:\\\"/?.= \t]"
619   "*Specify MIME tspecials.
620 Tspecials means any character that matches with it in header must be quoted.")
621
622 (defconst mime-edit-mime-version-value
623   (concat "1.0 (generated by " mime-edit-version-string ")")
624   "MIME version number.")
625
626 (defconst mime-edit-mime-version-field-for-message/partial
627   (concat "MIME-Version: 1.0 (split by " mime-edit-version-string ")\n")
628   "MIME version field for message/partial.")
629
630
631 ;;; @ keymap and menu
632 ;;;
633
634 (defvar mime-edit-mode-flag nil)
635 (make-variable-buffer-local 'mime-edit-mode-flag)
636
637 (defvar mime-edit-mode-map (make-sparse-keymap)
638   "Keymap for MIME-Edit mode commands.")
639
640 (define-key mime-edit-mode-map
641   "\C-c\C-x\C-t"        'mime-edit-insert-text)
642 (define-key mime-edit-mode-map
643   "\C-c\C-x\C-i"        'mime-edit-insert-file)
644 (define-key mime-edit-mode-map
645   "\C-c\C-x\C-e"        'mime-edit-insert-external)
646 (define-key mime-edit-mode-map
647   "\C-c\C-x\C-v"        'mime-edit-insert-voice)
648 (define-key mime-edit-mode-map
649   "\C-c\C-x\C-y"        'mime-edit-insert-message)
650 (define-key mime-edit-mode-map
651   "\C-c\C-x\C-m"        'mime-edit-insert-mail)
652 (define-key mime-edit-mode-map
653   "\C-c\C-x\C-w"        'mime-edit-insert-signature)
654 (define-key mime-edit-mode-map
655   "\C-c\C-x\C-s"        'mime-edit-insert-signature)
656 (define-key mime-edit-mode-map
657   "\C-c\C-x\C-k"        'mime-edit-insert-key)
658 (define-key mime-edit-mode-map
659   "\C-c\C-xt"           'mime-edit-insert-tag)
660
661 (define-key mime-edit-mode-map
662   "\C-c\C-m\C-a"        'mime-edit-enclose-alternative-region)
663 (define-key mime-edit-mode-map
664   "\C-c\C-m\C-p"        'mime-edit-enclose-parallel-region)
665 (define-key mime-edit-mode-map
666   "\C-c\C-m\C-m"        'mime-edit-enclose-mixed-region)
667 (define-key mime-edit-mode-map
668   "\C-c\C-m\C-d"        'mime-edit-enclose-digest-region)
669 (define-key mime-edit-mode-map
670   "\C-c\C-m\C-s"        'mime-edit-enclose-signed-region)
671 (define-key mime-edit-mode-map
672   "\C-c\C-m\C-e"        'mime-edit-enclose-encrypted-region)
673 (define-key mime-edit-mode-map
674   "\C-c\C-m\C-q"        'mime-edit-enclose-quote-region)
675
676 (define-key mime-edit-mode-map
677   "\C-c\C-x7"           'mime-edit-set-transfer-level-7bit)
678 (define-key mime-edit-mode-map
679   "\C-c\C-x8"           'mime-edit-set-transfer-level-8bit)
680 (define-key mime-edit-mode-map
681   "\C-c\C-x/"           'mime-edit-set-split)
682 (define-key mime-edit-mode-map
683   "\C-c\C-xs"           'mime-edit-set-sign)
684 (define-key mime-edit-mode-map
685   "\C-c\C-xv"           'mime-edit-set-sign)
686 (define-key mime-edit-mode-map
687   "\C-c\C-xe"           'mime-edit-set-encrypt)
688 (define-key mime-edit-mode-map
689   "\C-c\C-xh"           'mime-edit-set-encrypt)
690 (define-key mime-edit-mode-map
691   "\C-c\C-x\C-p"        'mime-edit-preview-message)
692 (define-key mime-edit-mode-map
693   "\C-c\C-x\C-z"        'mime-edit-exit)
694 (define-key mime-edit-mode-map
695   "\C-c\C-x?"           'mime-edit-help)
696
697 (defconst mime-edit-menu-title "MIME-Edit")
698
699 (defconst mime-edit-menu-list
700   '((mime-help  "Describe MIME editor mode" mime-edit-help)
701     (file       "Insert File"           mime-edit-insert-file)
702     (external   "Insert External"       mime-edit-insert-external)
703     (voice      "Insert Voice"          mime-edit-insert-voice)
704     (message    "Insert Message"        mime-edit-insert-message)
705     (mail       "Insert Mail"           mime-edit-insert-mail)
706     (signature  "Insert Signature"      mime-edit-insert-signature)
707     (text       "Insert Text"           mime-edit-insert-text)
708     (tag        "Insert Tag"            mime-edit-insert-tag)
709     (alternative "Enclose as alternative"
710                  mime-edit-enclose-alternative-region)
711     (parallel   "Enclose as parallel"   mime-edit-enclose-parallel-region)
712     (mixed      "Enclose as serial"     mime-edit-enclose-mixed-region)
713     (digest     "Enclose as digest"     mime-edit-enclose-digest-region)
714     (signed     "Enclose as signed"     mime-edit-enclose-signed-region)
715     (encrypted  "Enclose as encrypted"  mime-edit-enclose-encrypted-region)
716     (quote      "Verbatim region"       mime-edit-enclose-quote-region)
717     (key        "Insert Public Key"     mime-edit-insert-key)
718     (split      "About split"           mime-edit-set-split)
719     (sign       "About sign"            mime-edit-set-sign)
720     (encrypt    "About encryption"      mime-edit-set-encrypt)
721     (preview    "Preview Message"       mime-edit-preview-message)
722     (level      "Toggle transfer-level" mime-edit-toggle-transfer-level)
723     )
724   "MIME-edit menubar entry.")
725
726 (cond (running-xemacs
727        ;; modified by Pekka Marjola <pema@iki.fi>
728        ;;       1995/9/5 (c.f. [tm-en:69])
729        (defun mime-edit-define-menu-for-xemacs ()
730          "Define menu for Emacs 19."
731          (cond ((featurep 'menubar)
732                 (make-local-variable 'current-menubar)
733                 (set-buffer-menubar current-menubar)
734                 (add-submenu
735                  nil
736                  (cons mime-edit-menu-title
737                        (mapcar (function
738                                 (lambda (item)
739                                   (vector (nth 1 item)(nth 2 item)
740                                           mime-edit-mode-flag)
741                                   ))
742                                mime-edit-menu-list)))
743                 )))
744
745        ;; modified by Steven L. Baur <steve@miranova.com>
746        ;;       1995/12/6 (c.f. [tm-en:209])
747        (or (boundp 'mime-edit-popup-menu-for-xemacs)
748            (setq mime-edit-popup-menu-for-xemacs
749                  (append '("MIME Commands" "---")
750                          (mapcar (function (lambda (item)
751                                              (vector (nth 1 item)
752                                                      (nth 2 item)
753                                                      t)))
754                                  mime-edit-menu-list)))
755            )
756        )
757       ((>= emacs-major-version 19)
758        (define-key mime-edit-mode-map [menu-bar mime-edit]
759          (cons mime-edit-menu-title
760                (make-sparse-keymap mime-edit-menu-title)))
761        (mapcar (function
762                 (lambda (item)
763                   (define-key mime-edit-mode-map
764                     (vector 'menu-bar 'mime-edit (car item))
765                     (cons (nth 1 item)(nth 2 item))
766                     )
767                   ))
768                (reverse mime-edit-menu-list)
769                )
770        ))
771
772
773 ;;; @ functions
774 ;;;
775
776 ;;;###autoload
777 (defun mime-edit-mode ()
778   "MIME minor mode for editing the tagged MIME message.
779
780 In this mode, basically, the message is composed in the tagged MIME
781 format. The message tag looks like:
782
783         --[[text/plain; charset=ISO-2022-JP][7bit]]
784
785 The tag specifies the MIME content type, subtype, optional parameters
786 and transfer encoding of the message following the tag.  Messages
787 without any tag are treated as `text/plain' by default.  Charset and
788 transfer encoding are automatically defined unless explicitly
789 specified.  Binary messages such as audio and image are usually
790 hidden.  The messages in the tagged MIME format are automatically
791 translated into a MIME compliant message when exiting this mode.
792
793 Available charsets depend on Emacs version being used.  The following
794 lists the available charsets of each emacs.
795
796 Without mule:   US-ASCII and ISO-8859-1 (or other charset) are available.
797 With mule:      US-ASCII, ISO-8859-* (except for ISO-8859-5), KOI8-R,
798                 ISO-2022-JP, ISO-2022-JP-2, EUC-KR, CN-GB-2312,
799                 CN-BIG5 and ISO-2022-INT-1 are available.
800
801 ISO-2022-JP-2 and ISO-2022-INT-1 charsets used in mule is expected to
802 be used to represent multilingual text in intermixed manner.  Any
803 languages that has no registered charset are represented as either
804 ISO-2022-JP-2 or ISO-2022-INT-1 in mule.
805
806 If you want to use non-ISO-8859-1 charset in Emacs 19 or XEmacs
807 without mule, please set variable `default-mime-charset'.  This
808 variable must be symbol of which name is a MIME charset.
809
810 If you want to add more charsets in mule, please set variable
811 `charsets-mime-charset-alist'.  This variable must be alist of which
812 key is list of charset and value is symbol of MIME charset.  If name
813 of coding-system is different as MIME charset, please set variable
814 `mime-charset-coding-system-alist'.  This variable must be alist of
815 which key is MIME charset and value is coding-system.
816
817 Following commands are available in addition to major mode commands:
818
819 \[make single part\]
820 \\[mime-edit-insert-text]       insert a text message.
821 \\[mime-edit-insert-file]       insert a (binary) file.
822 \\[mime-edit-insert-external]   insert a reference to external body.
823 \\[mime-edit-insert-voice]      insert a voice message.
824 \\[mime-edit-insert-message]    insert a mail or news message.
825 \\[mime-edit-insert-mail]       insert a mail message.
826 \\[mime-edit-insert-signature]  insert a signature file at end.
827 \\[mime-edit-insert-key]        insert PGP public key.
828 \\[mime-edit-insert-tag]        insert a new MIME tag.
829
830 \[make enclosure (maybe multipart)\]
831 \\[mime-edit-enclose-alternative-region]        enclose as multipart/alternative.
832 \\[mime-edit-enclose-parallel-region]   enclose as multipart/parallel.
833 \\[mime-edit-enclose-mixed-region]      enclose as multipart/mixed.
834 \\[mime-edit-enclose-digest-region]     enclose as multipart/digest.
835 \\[mime-edit-enclose-signed-region]     enclose as PGP signed.
836 \\[mime-edit-enclose-encrypted-region]  enclose as PGP encrypted.
837 \\[mime-edit-enclose-quote-region]      enclose as verbose mode (to avoid to expand tags)
838
839 \[other commands\]
840 \\[mime-edit-set-transfer-level-7bit]   set transfer-level as 7.
841 \\[mime-edit-set-transfer-level-8bit]   set transfer-level as 8.
842 \\[mime-edit-set-split] set message splitting mode.
843 \\[mime-edit-set-sign]  set PGP-sign mode.
844 \\[mime-edit-set-encrypt]       set PGP-encryption mode.
845 \\[mime-edit-preview-message]   preview editing MIME message.
846 \\[mime-edit-exit]      exit and translate into a MIME compliant message.
847 \\[mime-edit-help]      show this help.
848 \\[mime-edit-maybe-translate]   exit and translate if in MIME mode, then split.
849
850 Additional commands are available in some major modes:
851 C-c C-c         exit, translate and run the original command.
852 C-c C-s         exit, translate and run the original command.
853
854 The following is a message example written in the tagged MIME format.
855 TABs at the beginning of the line are not a part of the message:
856
857         This is a conventional plain text.  It should be translated
858         into text/plain.
859         --[[text/plain]]
860         This is also a plain text.  But, it is explicitly specified as
861         is.
862         --[[text/plain; charset=ISO-8859-1]]
863         This is also a plain text.  But charset is specified as
864         iso-8859-1.
865
866         ¡Hola!  Buenos días.  ¿Cómo está usted?
867         --[[text/enriched]]
868         This is a <bold>enriched text</bold>.
869         --[[image/gif][base64]]...image encoded in base64 here...
870         --[[audio/basic][base64]]...audio encoded in base64 here...
871
872 User customizable variables (not documented all of them):
873  mime-edit-prefix
874     Specifies a key prefix for MIME minor mode commands.
875
876  mime-ignore-preceding-spaces
877     Preceding white spaces in a message body are ignored if non-nil.
878
879  mime-ignore-trailing-spaces
880     Trailing white spaces in a message body are ignored if non-nil.
881
882  mime-auto-hide-body
883     Hide a non-textual body message encoded in base64 after insertion
884     if non-nil.
885
886  mime-transfer-level
887     A number of network transfer level.  It should be bigger than 7.
888     If you are in 8bit-through environment, please set 8.
889
890  mime-edit-voice-recorder
891     Specifies a function to record a voice message and encode it.
892     The function `mime-edit-voice-recorder-for-sun' is for Sun
893     SparcStations.
894
895  mime-edit-mode-hook
896     Turning on MIME mode calls the value of mime-edit-mode-hook, if
897     it is non-nil.
898
899  mime-edit-translate-hook
900     The value of mime-edit-translate-hook is called just before translating
901     the tagged MIME format into a MIME compliant message if it is
902     non-nil.  If the hook call the function mime-edit-insert-signature,
903     the signature file will be inserted automatically.
904
905  mime-edit-exit-hook
906     Turning off MIME mode calls the value of mime-edit-exit-hook, if it is
907     non-nil."
908   (interactive)
909   (if mime-edit-mode-flag
910       (mime-edit-exit)
911     (if (and (boundp 'mime-edit-touched-flag)
912              mime-edit-touched-flag)
913         (mime-edit-again)
914       (make-local-variable 'mime-edit-touched-flag)
915       (setq mime-edit-touched-flag t)
916       (turn-on-mime-edit)
917       )))
918
919
920 (cond (running-xemacs
921        (add-minor-mode 'mime-edit-mode-flag
922                        '((" MIME-Edit "  mime-transfer-level-string))
923                        mime-edit-mode-map
924                        nil
925                        'mime-edit-mode)
926        )
927       (t
928        (set-alist 'minor-mode-alist
929                   'mime-edit-mode-flag
930                   '((" MIME-Edit "  mime-transfer-level-string)))
931        (set-alist 'minor-mode-map-alist
932                   'mime-edit-mode-flag
933                   mime-edit-mode-map)
934        ))
935
936
937 ;;;###autoload
938 (defun turn-on-mime-edit ()
939   "Unconditionally turn on MIME-Edit mode."
940   (interactive)
941   (if mime-edit-mode-flag
942       (error "You are already editing a MIME message.")
943     (setq mime-edit-mode-flag t)
944
945     ;; Set transfer level into mode line
946     ;;
947     (setq mime-transfer-level-string
948           (mime-encoding-name mime-transfer-level 'not-omit))
949     (force-mode-line-update)
950
951     ;; Define menu for XEmacs.
952     (if running-xemacs
953         (mime-edit-define-menu-for-xemacs)
954       )
955
956     (enable-invisible)
957
958     ;; I don't care about saving these.
959     (setq paragraph-start
960           (regexp-or mime-edit-single-part-tag-regexp
961                      paragraph-start))
962     (setq paragraph-separate
963           (regexp-or mime-edit-single-part-tag-regexp
964                      paragraph-separate))
965     (run-hooks 'mime-edit-mode-hook)
966     (message
967      (substitute-command-keys
968       "Type \\[mime-edit-exit] to exit MIME mode, and type \\[mime-edit-help] to get help."))
969     ))
970
971 ;;;###autoload
972 (defalias 'edit-mime 'turn-on-mime-edit) ; for convenience
973
974
975 (defun mime-edit-exit (&optional nomime no-error)
976   "Translate the tagged MIME message into a MIME compliant message.
977 With no argument encode a message in the buffer into MIME, otherwise
978 just return to previous mode."
979   (interactive "P")
980   (if (not mime-edit-mode-flag)
981       (if (null no-error)
982           (error "You aren't editing a MIME message.")
983         )
984     (if (not nomime)
985         (progn
986           (run-hooks 'mime-edit-translate-hook)
987           (mime-edit-translate-buffer)))
988     ;; Restore previous state.
989     (setq mime-edit-mode-flag nil)
990     (if (and running-xemacs
991              (featurep 'menubar))
992         (delete-menu-item (list mime-edit-menu-title))
993       )
994     (end-of-invisible)
995     (set-buffer-modified-p (buffer-modified-p))
996     (run-hooks 'mime-edit-exit-hook)
997     (message "Exit MIME editor mode.")
998     ))
999
1000 (defun mime-edit-maybe-translate ()
1001   (interactive)
1002   (mime-edit-exit nil t)
1003   (call-interactively 'mime-edit-maybe-split-and-send)
1004   )
1005
1006 (defun mime-edit-help ()
1007   "Show help message about MIME mode."
1008   (interactive)
1009   (with-output-to-temp-buffer "*Help*"
1010     (princ "MIME editor mode:\n")
1011     (princ (documentation 'mime-edit-mode))
1012     (print-help-return-message)))
1013
1014 (defun mime-edit-insert-text (&optional subtype)
1015   "Insert a text message.
1016 Charset is automatically obtained from the `charsets-mime-charset-alist'.
1017 If optional argument SUBTYPE is not nil, text/SUBTYPE tag is inserted."
1018   (interactive)
1019   (let ((ret (mime-edit-insert-tag "text" subtype nil)))
1020     (when ret
1021       (if (looking-at mime-edit-single-part-tag-regexp)
1022           (progn
1023             ;; Make a space between the following message.
1024             (insert "\n")
1025             (forward-char -1)
1026             ))
1027       (if (and (member (cadr ret) '("enriched" "richtext"))
1028                (fboundp 'enriched-mode)
1029                )
1030           (enriched-mode t)
1031         (if (boundp 'enriched-mode)
1032             (enriched-mode -1)
1033           ))
1034       )))
1035
1036 (defun mime-edit-insert-file (file &optional verbose)
1037   "Insert a message from a file."
1038   (interactive "fInsert file as MIME message: \nP")
1039   (let*  ((guess (mime-find-file-type file))
1040           (type (nth 0 guess))
1041           (subtype (nth 1 guess))
1042           (parameters (nth 2 guess))
1043           (encoding (nth 3 guess))
1044           (disposition-type (nth 4 guess))
1045           (disposition-params (nth 5 guess))
1046           )
1047     (if verbose
1048         (setq type    (mime-prompt-for-type type)
1049               subtype (mime-prompt-for-subtype type subtype)
1050               ))
1051     (if (or (interactive-p) verbose)
1052         (setq encoding (mime-prompt-for-encoding encoding))
1053       )
1054     (if (or (consp parameters) (stringp disposition-type))
1055         (let ((rest parameters) cell attribute value)
1056           (setq parameters "")
1057           (while rest
1058             (setq cell (car rest))
1059             (setq attribute (car cell))
1060             (setq value (cdr cell))
1061             (if (eq value 'file)
1062                 (setq value (std11-wrap-as-quoted-string
1063                              (file-name-nondirectory file)))
1064               )
1065             (setq parameters (concat parameters "; " attribute "=" value))
1066             (setq rest (cdr rest))
1067             )
1068           (if disposition-type
1069               (progn
1070                 (setq parameters
1071                       (concat parameters "\n"
1072                               "Content-Disposition: " disposition-type))
1073                 (setq rest disposition-params)
1074                 (while rest
1075                   (setq cell (car rest))
1076                   (setq attribute (car cell))
1077                   (setq value (cdr cell))
1078                   (if (eq value 'file)
1079                       (setq value (std11-wrap-as-quoted-string
1080                                    (file-name-nondirectory file)))
1081                     )
1082                   (setq parameters
1083                         (concat parameters "; " attribute "=" value))
1084                   (setq rest (cdr rest))
1085                   )
1086                 ))
1087           ))
1088     (mime-edit-insert-tag type subtype parameters)
1089     (mime-edit-insert-binary-file file encoding)
1090     ))
1091
1092 (defun mime-edit-insert-external ()
1093   "Insert a reference to external body."
1094   (interactive)
1095   (mime-edit-insert-tag "message" "external-body" nil ";\n\t")
1096   ;;(forward-char -1)
1097   ;;(insert "Content-Description: " (read-string "Content-Description: ") "\n")
1098   ;;(forward-line 1)
1099   (let* ((pritype (mime-prompt-for-type))
1100          (subtype (mime-prompt-for-subtype pritype))
1101          (parameters (mime-prompt-for-parameters pritype subtype ";\n\t")))
1102     (and pritype
1103          subtype
1104          (insert "Content-Type: "
1105                  pritype "/" subtype (or parameters "") "\n")))
1106   (if (and (not (eobp))
1107            (not (looking-at mime-edit-single-part-tag-regexp)))
1108       (insert (mime-make-text-tag) "\n")))
1109
1110 (defun mime-edit-insert-voice ()
1111   "Insert a voice message."
1112   (interactive)
1113   (let ((encoding
1114          (completing-read
1115           "What transfer encoding: "
1116           mime-file-encoding-method-alist nil t nil)))
1117     (mime-edit-insert-tag "audio" "basic" nil)
1118     (mime-edit-define-encoding encoding)
1119     (save-restriction
1120       (narrow-to-region (1- (point))(point))
1121       (unwind-protect
1122           (funcall mime-edit-voice-recorder encoding)
1123         (progn
1124           (insert "\n")
1125           (invisible-region (point-min)(point-max))
1126           (goto-char (point-max))
1127           )))))
1128
1129 (defun mime-edit-insert-signature (&optional arg)
1130   "Insert a signature file."
1131   (interactive "P")
1132   (let ((signature-insert-hook
1133          (function
1134           (lambda ()
1135             (apply (function mime-edit-insert-tag)
1136                    (mime-find-file-type signature-file-name))
1137             )))
1138         )
1139     (insert-signature arg)
1140     ))
1141
1142 \f
1143 ;; Insert a new tag around a point.
1144
1145 (defun mime-edit-insert-tag (&optional pritype subtype parameters delimiter)
1146   "Insert new MIME tag and return a list of PRITYPE, SUBTYPE, and PARAMETERS.
1147 If nothing is inserted, return nil."
1148   (interactive)
1149   (let ((p (point)))
1150     (mime-edit-goto-tag)
1151     (if (and (re-search-forward mime-edit-tag-regexp nil t)
1152              (< (match-beginning 0) p)
1153              (< p (match-end 0))
1154              )
1155         (goto-char (match-beginning 0))
1156       (goto-char p)
1157       ))
1158   (let ((oldtag nil)
1159         (newtag nil)
1160         (current (point))
1161         )
1162     (setq pritype
1163           (or pritype
1164               (mime-prompt-for-type)))
1165     (setq subtype
1166           (or subtype
1167               (mime-prompt-for-subtype pritype)))
1168     (setq parameters
1169           (or parameters
1170               (mime-prompt-for-parameters pritype subtype delimiter)))
1171     ;; Make a new MIME tag.
1172     (setq newtag (mime-make-tag pritype subtype parameters))
1173     ;; Find an current MIME tag.
1174     (setq oldtag
1175           (save-excursion
1176             (if (mime-edit-goto-tag)
1177                 (buffer-substring (match-beginning 0) (match-end 0))
1178               ;; Assume content type is 'text/plan'.
1179               (mime-make-tag "text" "plain")
1180               )))
1181     ;; We are only interested in TEXT.
1182     (if (and oldtag
1183              (not (mime-test-content-type
1184                    (mime-edit-get-contype oldtag) "text")))
1185         (setq oldtag nil))
1186     ;; Make a new tag.
1187     (if (or (not oldtag)                ;Not text
1188             (or mime-ignore-same-text-tag
1189                 (not (string-equal oldtag newtag))))
1190         (progn
1191           ;; Mark the beginning of the tag for convenience.
1192           (push-mark (point) 'nomsg)
1193           (insert newtag "\n")
1194           (list pritype subtype parameters) ;New tag is created.
1195           )
1196       ;; Restore previous point.
1197       (goto-char current)
1198       nil                               ;Nothing is created.
1199       )
1200     ))
1201
1202 (defun mime-edit-insert-binary-file (file &optional encoding)
1203   "Insert binary FILE at point.
1204 Optional argument ENCODING specifies an encoding method such as base64."
1205   (let* ((tagend (1- (point)))          ;End of the tag
1206          (hide-p (and mime-auto-hide-body
1207                       (stringp encoding)
1208                       (not
1209                        (let ((en (downcase encoding)))
1210                          (or (string-equal en "7bit")
1211                              (string-equal en "8bit")
1212                              (string-equal en "binary")
1213                              )))))
1214          )
1215     (save-restriction
1216       (narrow-to-region tagend (point))
1217       (mime-insert-encoded-file file encoding)
1218       (if hide-p
1219           (progn
1220             (invisible-region (point-min) (point-max))
1221             (goto-char (point-max))
1222             )
1223         (goto-char (point-max))
1224         ))
1225     (or hide-p
1226         (looking-at mime-edit-tag-regexp)
1227         (= (point)(point-max))
1228         (mime-edit-insert-tag "text" "plain")
1229         )
1230     ;; Define encoding even if it is 7bit.
1231     (if (stringp encoding)
1232         (save-excursion
1233           (goto-char tagend) ; Make sure which line the tag is on.
1234           (mime-edit-define-encoding encoding)
1235           ))
1236     ))
1237
1238 \f
1239 ;; Commands work on a current message flagment.
1240
1241 (defun mime-edit-goto-tag ()
1242   "Search for the beginning of the tagged MIME message."
1243   (let ((current (point)))
1244     (if (looking-at mime-edit-tag-regexp)
1245         t
1246       ;; At first, go to the end.
1247       (cond ((re-search-forward mime-edit-beginning-tag-regexp nil t)
1248              (goto-char (1- (match-beginning 0))) ;For multiline tag
1249              )
1250             (t
1251              (goto-char (point-max))
1252              ))
1253       ;; Then search for the beginning.
1254       (re-search-backward mime-edit-end-tag-regexp nil t)
1255       (or (looking-at mime-edit-beginning-tag-regexp)
1256           ;; Restore previous point.
1257           (progn
1258             (goto-char current)
1259             nil
1260             ))
1261       )))
1262
1263 (defun mime-edit-content-beginning ()
1264   "Return the point of the beginning of content."
1265   (save-excursion
1266     (let ((beg (save-excursion
1267                  (beginning-of-line) (point))))
1268       (if (mime-edit-goto-tag)
1269           (let ((top (point)))
1270             (goto-char (match-end 0))
1271             (if (and (= beg top)
1272                      (= (following-char) ?\^M))
1273                 (point)
1274               (forward-line 1)
1275               (point)))
1276         ;; Default text/plain tag.
1277         (goto-char (point-min))
1278         (re-search-forward
1279          (concat "\n" (regexp-quote mail-header-separator)
1280                  (if mime-ignore-preceding-spaces
1281                      "[ \t\n]*\n" "\n")) nil 'move)
1282         (point))
1283       )))
1284
1285 (defun mime-edit-content-end ()
1286   "Return the point of the end of content."
1287   (save-excursion
1288     (if (mime-edit-goto-tag)
1289         (progn
1290           (goto-char (match-end 0))
1291           (if (invisible-p (point))
1292               (next-visible-point (point))
1293             ;; Move to the end of this text.
1294             (if (re-search-forward mime-edit-tag-regexp nil 'move)
1295                 ;; Don't forget a multiline tag.
1296                 (goto-char (match-beginning 0))
1297               )
1298             (point)
1299             ))
1300       ;; Assume the message begins with text/plain.
1301       (goto-char (mime-edit-content-beginning))
1302       (if (re-search-forward mime-edit-tag-regexp nil 'move)
1303           ;; Don't forget a multiline tag.
1304           (goto-char (match-beginning 0)))
1305       (point))
1306     ))
1307
1308 (defun mime-edit-define-charset (charset)
1309   "Set charset of current tag to CHARSET."
1310   (save-excursion
1311     (if (mime-edit-goto-tag)
1312         (let ((tag (buffer-substring (match-beginning 0) (match-end 0))))
1313           (delete-region (match-beginning 0) (match-end 0))
1314           (insert
1315            (mime-create-tag
1316             (mime-edit-set-parameter
1317              (mime-edit-get-contype tag)
1318              "charset" (upcase (symbol-name charset)))
1319             (mime-edit-get-encoding tag)))
1320           ))))
1321
1322 (defun mime-edit-define-encoding (encoding)
1323   "Set encoding of current tag to ENCODING."
1324   (save-excursion
1325     (if (mime-edit-goto-tag)
1326         (let ((tag (buffer-substring (match-beginning 0) (match-end 0))))
1327           (delete-region (match-beginning 0) (match-end 0))
1328           (insert (mime-create-tag (mime-edit-get-contype tag) encoding)))
1329       )))
1330
1331 (defun mime-edit-choose-charset ()
1332   "Choose charset of a text following current point."
1333   (detect-mime-charset-region (point) (mime-edit-content-end))
1334   )
1335
1336 (defun mime-make-text-tag (&optional subtype)
1337   "Make a tag for a text after current point.
1338 Subtype of text type can be specified by an optional argument SUBTYPE.
1339 Otherwise, it is obtained from mime-content-types."
1340   (let* ((pritype "text")
1341          (subtype (or subtype
1342                       (car (car (cdr (assoc pritype mime-content-types)))))))
1343     ;; Charset should be defined later.
1344     (mime-make-tag pritype subtype)))
1345
1346 \f
1347 ;; Tag handling functions
1348
1349 (defun mime-make-tag (pritype subtype &optional parameters encoding)
1350   "Make a tag of MIME message of PRITYPE, SUBTYPE and optional PARAMETERS."
1351   (mime-create-tag (concat (or pritype "") "/" (or subtype "")
1352                            (or parameters ""))
1353                    encoding))
1354
1355 (defun mime-create-tag (contype &optional encoding)
1356   "Make a tag with CONTENT-TYPE and optional ENCODING."
1357   (format (if encoding mime-tag-format-with-encoding mime-tag-format)
1358           contype encoding))
1359
1360 (defun mime-edit-get-contype (tag)
1361   "Return Content-Type (including parameters) of TAG."
1362   (and (stringp tag)
1363        (or (string-match mime-edit-single-part-tag-regexp tag)
1364            (string-match mime-edit-multipart-beginning-regexp tag)
1365            (string-match mime-edit-multipart-end-regexp tag)
1366            )
1367        (substring tag (match-beginning 1) (match-end 1))
1368        ))
1369
1370 (defun mime-edit-get-encoding (tag)
1371   "Return encoding of TAG."
1372   (and (stringp tag)
1373        (string-match mime-edit-single-part-tag-regexp tag)
1374        (match-beginning 3)
1375        (not (= (match-beginning 3) (match-end 3)))
1376        (substring tag (match-beginning 3) (match-end 3))))
1377
1378 (defun mime-get-parameter (contype parameter)
1379   "For given CONTYPE return value for PARAMETER.
1380 Nil if no such parameter."
1381   (if (string-match
1382        (concat
1383         ";[ \t\n]*"
1384         (regexp-quote parameter)
1385         "[ \t\n]*=[ \t\n]*\\([^\" \t\n;]*\\|\"[^\"]*\"\\)\\([ \t\n]*;\\|$\\)")
1386        contype)
1387       (substring contype (match-beginning 1) (match-end 1))
1388     nil                                 ;No such parameter
1389     ))
1390
1391 (defun mime-edit-set-parameter (contype parameter value)
1392   "For given CONTYPE set PARAMETER to VALUE."
1393   (let (ctype opt-fields)
1394     (if (string-match "\n[^ \t\n\r]+:" contype)
1395         (setq ctype (substring contype 0 (match-beginning 0))
1396               opt-fields (substring contype (match-beginning 0)))
1397       (setq ctype contype)
1398       )
1399     (if (string-match
1400          (concat
1401           ";[ \t\n]*\\("
1402           (regexp-quote parameter)
1403           "[ \t\n]*=[ \t\n]*\\([^\" \t\n;]*\\|\"[^\"]*\"\\)\\)[ \t\n]*\\(;\\|$\\)")
1404          ctype)
1405         ;; Change value
1406         (concat (substring ctype 0 (match-beginning 1))
1407                 parameter "=" value
1408                 (substring contype (match-end 1))
1409                 opt-fields)
1410       (concat ctype "; " parameter "=" value opt-fields)
1411       )))
1412
1413 (defun mime-strip-parameters (contype)
1414   "Return primary content-type and subtype without parameters for CONTYPE."
1415   (if (string-match "^[ \t]*\\([^; \t\n]*\\)" contype)
1416       (substring contype (match-beginning 1) (match-end 1)) nil))
1417
1418 (defun mime-test-content-type (contype type &optional subtype)
1419   "Test if CONTYPE is a TYPE and an optional SUBTYPE."
1420   (and (stringp contype)
1421        (stringp type)
1422        (string-match
1423         (concat "^[ \t]*" (downcase type) "/" (downcase (or subtype "")))
1424         (downcase contype))))
1425
1426 \f
1427 ;; Basic functions
1428
1429 (defun mime-find-file-type (file)
1430   "Guess Content-Type, subtype, and parameters from FILE."
1431   (let ((guess nil)
1432         (guesses mime-file-types))
1433     (while (and (not guess) guesses)
1434       (if (string-match (car (car guesses)) file)
1435           (setq guess (cdr (car guesses))))
1436       (setq guesses (cdr guesses)))
1437     guess
1438     ))
1439
1440 (defun mime-prompt-for-type (&optional default)
1441   "Ask for Content-type."
1442   (let ((type ""))
1443     ;; Repeat until primary content type is specified.
1444     (while (string-equal type "")
1445       (setq type
1446             (completing-read "What content type: "
1447                              mime-content-types
1448                              nil
1449                              'require-match ;Type must be specified.
1450                              default
1451                              ))
1452       (if (string-equal type "")
1453           (progn
1454             (message "Content type is required.")
1455             (beep)
1456             (sit-for 1)
1457             ))
1458       )
1459     type))
1460
1461 (defun mime-prompt-for-subtype (type &optional default)
1462   "Ask for subtype of media-type TYPE."
1463   (let ((subtypes (cdr (assoc type mime-content-types))))
1464     (or (and default
1465              (assoc default subtypes))
1466         (setq default (car (car subtypes)))
1467         ))
1468   (let* ((answer
1469           (completing-read
1470            (if default
1471                (concat
1472                 "What content subtype: (default " default ") ")
1473              "What content subtype: ")
1474            (cdr (assoc type mime-content-types))
1475            nil
1476            'require-match               ;Subtype must be specified.
1477            nil
1478            )))
1479     (if (string-equal answer "") default answer)))
1480
1481 (defun mime-prompt-for-parameters (pritype subtype &optional delimiter)
1482   "Ask for Content-type parameters of Content-Type PRITYPE and SUBTYPE.
1483 Optional DELIMITER specifies parameter delimiter (';' by default)."
1484   (let* ((delimiter (or delimiter "; "))
1485          (parameters
1486           (mapconcat
1487            (function identity)
1488            (delq nil
1489                  (mime-prompt-for-parameters-1
1490                   (cdr (assoc subtype
1491                               (cdr (assoc pritype mime-content-types))))))
1492            delimiter
1493            )))
1494     (if (and (stringp parameters)
1495              (not (string-equal parameters "")))
1496         (concat delimiter parameters)
1497       ""                                ;"" if no parameters
1498       )))
1499
1500 (defun mime-prompt-for-parameters-1 (optlist)
1501   (apply (function append)
1502          (mapcar (function mime-prompt-for-parameter) optlist)))
1503
1504 (defun mime-prompt-for-parameter (parameter)
1505   "Ask for PARAMETER.
1506 Parameter must be '(PROMPT CHOICE1 (CHOISE2 ...))."
1507   (let* ((prompt (car parameter))
1508          (choices (mapcar (function
1509                            (lambda (e)
1510                              (if (consp e) e (list e))))
1511                           (cdr parameter)))
1512          (default (car (car choices)))
1513          (answer nil))
1514     (if choices
1515         (progn
1516           (setq answer
1517                 (completing-read
1518                  (concat "What " prompt
1519                          ": (default "
1520                          (if (string-equal default "") "\"\"" default)
1521                          ") ")
1522                  choices nil nil ""))
1523           ;; If nothing is selected, use default.
1524           (if (string-equal answer "")
1525               (setq answer default)))
1526       (setq answer
1527             (read-string (concat "What " prompt ": "))))
1528     (cons (if (and answer
1529                    (not (string-equal answer "")))
1530               (concat prompt "="
1531                       ;; Note: control characters ignored!
1532                       (if (string-match mime-tspecials-regexp answer)
1533                           (concat "\"" answer "\"") answer)))
1534           (mime-prompt-for-parameters-1 (cdr (assoc answer (cdr parameter)))))
1535     ))
1536
1537 (defun mime-prompt-for-encoding (default)
1538   "Ask for Content-Transfer-Encoding."
1539   (let (encoding)
1540     (while (string=
1541             (setq encoding
1542                   (completing-read
1543                    "What transfer encoding: "
1544                    mime-file-encoding-method-alist nil t default)
1545                   )
1546             ""))
1547     encoding))
1548
1549 \f
1550 ;;; @ Translate the tagged MIME messages into a MIME compliant message.
1551 ;;;
1552
1553 (defvar mime-edit-translate-buffer-hook
1554   '(mime-edit-pgp-enclose-buffer
1555     mime-edit-translate-body
1556     mime-edit-translate-header))
1557
1558 (defun mime-edit-translate-header ()
1559   "Encode the message header into network representation."
1560   (eword-encode-header 'code-conversion)
1561   (run-hooks 'mime-edit-translate-header-hook)
1562   )
1563
1564 (defun mime-edit-translate-buffer ()
1565   "Encode the tagged MIME message in current buffer in MIME compliant message."
1566   (interactive)
1567   (if (catch 'mime-edit-error
1568         (save-excursion
1569           (run-hooks 'mime-edit-translate-buffer-hook)
1570           ))
1571       (progn
1572         (undo)
1573         (error "Translation error!")
1574         )))
1575
1576 (defun mime-edit-find-inmost ()
1577   (goto-char (point-min))
1578   (if (re-search-forward mime-edit-multipart-beginning-regexp nil t)
1579       (let ((bb (match-beginning 0))
1580             (be (match-end 0))
1581             (type (buffer-substring (match-beginning 1)(match-end 1)))
1582             end-exp eb ee)
1583         (setq end-exp (format "--}-<<%s>>\n" type))
1584         (widen)
1585         (if (re-search-forward end-exp nil t)
1586             (progn
1587               (setq eb (match-beginning 0))
1588               (setq ee (match-end 0))
1589               )
1590           (setq eb (point-max))
1591           (setq ee (point-max))
1592           )
1593         (narrow-to-region be eb)
1594         (goto-char be)
1595         (if (re-search-forward mime-edit-multipart-beginning-regexp nil t)
1596             (let (ret)
1597               (narrow-to-region (match-beginning 0)(point-max))
1598               (mime-edit-find-inmost)
1599               )
1600           (widen)
1601           (list type bb be eb)
1602           ))))
1603
1604 (defun mime-edit-process-multipart-1 (boundary)
1605   (let ((ret (mime-edit-find-inmost)))
1606     (if ret
1607         (let ((type (car ret))
1608               (bb (nth 1 ret))(be (nth 2 ret))
1609               (eb (nth 3 ret))
1610               )
1611           (narrow-to-region bb eb)
1612           (delete-region bb be)
1613           (setq bb (point-min))
1614           (setq eb (point-max))
1615           (widen)
1616           (goto-char eb)
1617           (if (looking-at mime-edit-multipart-end-regexp)
1618               (let ((beg (match-beginning 0))
1619                     (end (match-end 0))
1620                     )
1621                 (delete-region beg end)
1622                 (or (looking-at mime-edit-beginning-tag-regexp)
1623                     (eobp)
1624                     (insert (concat (mime-make-text-tag) "\n"))
1625                     )))
1626           (cond ((string-equal type "quote")
1627                  (mime-edit-enquote-region bb eb)
1628                  )
1629                 ((string-equal type "signed")
1630                  (cond ((eq mime-edit-signing-type 'pgp-elkins)
1631                         (mime-edit-sign-pgp-elkins bb eb boundary)
1632                         )
1633                        ((eq mime-edit-signing-type 'pgp-kazu)
1634                         (mime-edit-sign-pgp-kazu bb eb boundary)
1635                         ))
1636                  )
1637                 ((string-equal type "encrypted")
1638                  (cond ((eq mime-edit-encrypting-type 'pgp-elkins)
1639                         (mime-edit-encrypt-pgp-elkins bb eb boundary)
1640                         )
1641                        ((eq mime-edit-encrypting-type 'pgp-kazu)
1642                         (mime-edit-encrypt-pgp-kazu bb eb boundary)
1643                         )))
1644                 (t
1645                  (setq boundary
1646                        (nth 2 (mime-edit-translate-region bb eb
1647                                                             boundary t)))
1648                  (goto-char bb)
1649                  (insert
1650                   (format "--[[multipart/%s;
1651  boundary=\"%s\"][7bit]]\n"
1652                           type boundary))
1653                  ))
1654           boundary))))
1655
1656 (defun mime-edit-enquote-region (beg end)
1657   (save-excursion
1658     (save-restriction
1659       (narrow-to-region beg end)
1660       (goto-char beg)
1661       (while (re-search-forward mime-edit-single-part-tag-regexp nil t)
1662         (let ((tag (buffer-substring (match-beginning 0)(match-end 0))))
1663           (replace-match (concat "- " (substring tag 1)))
1664           )))))
1665
1666 (defun mime-edit-dequote-region (beg end)
1667   (save-excursion
1668     (save-restriction
1669       (narrow-to-region beg end)
1670       (goto-char beg)
1671       (while (re-search-forward
1672               mime-edit-quoted-single-part-tag-regexp nil t)
1673         (let ((tag (buffer-substring (match-beginning 0)(match-end 0))))
1674           (replace-match (concat "-" (substring tag 2)))
1675           )))))
1676
1677 (defun mime-edit-sign-pgp-elkins (beg end boundary)
1678   (save-excursion
1679     (save-restriction
1680       (narrow-to-region beg end)
1681       (let* ((ret
1682               (mime-edit-translate-region beg end boundary))
1683              (ctype    (car ret))
1684              (encoding (nth 1 ret))
1685              (parts    (nth 3 ret))
1686              (pgp-boundary (concat "pgp-sign-" boundary))
1687              )
1688         (goto-char beg)
1689         (insert (format "Content-Type: %s\n" ctype))
1690         (if encoding
1691             (insert (format "Content-Transfer-Encoding: %s\n" encoding))
1692           )
1693         (insert "\n")
1694         (or (as-binary-process
1695              (funcall (pgp-function 'mime-sign)
1696                       (point-min)(point-max) nil nil pgp-boundary))
1697             (throw 'mime-edit-error 'pgp-error)
1698             )
1699         ))))
1700
1701 (defvar mime-edit-encrypt-recipient-fields-list '("To" "cc"))
1702
1703 (defun mime-edit-make-encrypt-recipient-header ()
1704   (let* ((names mime-edit-encrypt-recipient-fields-list)
1705          (values
1706           (std11-field-bodies (cons "From" names)
1707                               nil mail-header-separator))
1708          (from (prog1
1709                    (car values)
1710                  (setq values (cdr values))))
1711          (header (and (stringp from)
1712                       (if (string-equal from "")
1713                           ""
1714                         (format "From: %s\n" from)
1715                         )))
1716          recipients)
1717     (while (and names values)
1718       (let ((name (car names))
1719             (value (car values))
1720             )
1721         (and (stringp value)
1722              (or (string-equal value "")
1723                  (progn
1724                    (setq header (concat header name ": " value "\n")
1725                          recipients (if recipients
1726                                         (concat recipients " ," value)
1727                                       value))
1728                    ))))
1729       (setq names (cdr names)
1730             values (cdr values))
1731       )
1732     (vector from recipients header)
1733     ))
1734
1735 (defun mime-edit-encrypt-pgp-elkins (beg end boundary)
1736   (save-excursion
1737     (save-restriction
1738       (let (from recipients header)
1739         (let ((ret (mime-edit-make-encrypt-recipient-header)))
1740           (setq from (aref ret 0)
1741                 recipients (aref ret 1)
1742                 header (aref ret 2))
1743           )
1744         (narrow-to-region beg end)
1745         (let* ((ret
1746                 (mime-edit-translate-region beg end boundary))
1747                (ctype    (car ret))
1748                (encoding (nth 1 ret))
1749                (parts    (nth 3 ret))
1750                (pgp-boundary (concat "pgp-" boundary))
1751                )
1752           (goto-char beg)
1753           (insert header)
1754           (insert (format "Content-Type: %s\n" ctype))
1755           (if encoding
1756               (insert (format "Content-Transfer-Encoding: %s\n" encoding))
1757             )
1758           (insert "\n")
1759           (or (funcall (pgp-function 'encrypt)
1760                        recipients (point-min) (point-max) from)
1761               (throw 'mime-edit-error 'pgp-error)
1762               )
1763           (goto-char beg)
1764           (insert (format "--[[multipart/encrypted;
1765  boundary=\"%s\";
1766  protocol=\"application/pgp-encrypted\"][7bit]]
1767 --%s
1768 Content-Type: application/pgp-encrypted
1769
1770 --%s
1771 Content-Type: application/octet-stream
1772 Content-Transfer-Encoding: 7bit
1773
1774 " pgp-boundary pgp-boundary pgp-boundary))
1775           (goto-char (point-max))
1776           (insert (format "\n--%s--\n" pgp-boundary))
1777           )))))
1778
1779 (defun mime-edit-sign-pgp-kazu (beg end boundary)
1780   (save-excursion
1781     (save-restriction
1782       (narrow-to-region beg end)
1783       (let* ((ret
1784               (mime-edit-translate-region beg end boundary))
1785              (ctype    (car ret))
1786              (encoding (nth 1 ret))
1787              (parts    (nth 3 ret))
1788              )
1789         (goto-char beg)
1790         (insert (format "Content-Type: %s\n" ctype))
1791         (if encoding
1792             (insert (format "Content-Transfer-Encoding: %s\n" encoding))
1793           )
1794         (insert "\n")
1795         (or (as-binary-process
1796              (funcall (pgp-function 'traditional-sign)
1797                       beg (point-max)))
1798             (throw 'mime-edit-error 'pgp-error)
1799             )
1800         (goto-char beg)
1801         (insert
1802          "--[[application/pgp; format=mime][7bit]]\n")
1803         ))
1804     ))
1805
1806 (defun mime-edit-encrypt-pgp-kazu (beg end boundary)
1807   (save-excursion
1808     (let (from recipients header)
1809       (let ((ret (mime-edit-make-encrypt-recipient-header)))
1810         (setq from (aref ret 0)
1811               recipients (aref ret 1)
1812               header (aref ret 2))
1813         )
1814       (save-restriction
1815         (narrow-to-region beg end)
1816         (let* ((ret
1817                 (mime-edit-translate-region beg end boundary))
1818                (ctype    (car ret))
1819                (encoding (nth 1 ret))
1820                (parts    (nth 3 ret))
1821                )
1822           (goto-char beg)
1823           (insert header)
1824           (insert (format "Content-Type: %s\n" ctype))
1825           (if encoding
1826               (insert (format "Content-Transfer-Encoding: %s\n" encoding))
1827             )
1828           (insert "\n")
1829           (or (as-binary-process
1830                (funcall (pgp-function 'encrypt)
1831                         recipients beg (point-max) nil 'maybe)
1832                )
1833               (throw 'mime-edit-error 'pgp-error)
1834               )
1835           (goto-char beg)
1836           (insert
1837            "--[[application/pgp; format=mime][7bit]]\n")
1838           ))
1839       )))
1840
1841 (defsubst replace-space-with-underline (str)
1842   (mapconcat (function
1843               (lambda (arg)
1844                 (char-to-string
1845                  (if (eq arg ?\ )
1846                      ?_
1847                    arg)))) str "")
1848   )
1849
1850 (defun mime-edit-make-boundary ()
1851   (concat mime-multipart-boundary "_"
1852           (replace-space-with-underline (current-time-string))
1853           ))
1854
1855 (defun mime-edit-translate-body ()
1856   "Encode the tagged MIME body in current buffer in MIME compliant message."
1857   (interactive)
1858   (save-excursion
1859     (let ((boundary (mime-edit-make-boundary))
1860           (i 1)
1861           ret)
1862       (while (mime-edit-process-multipart-1
1863               (format "%s-%d" boundary i))
1864         (setq i (1+ i))
1865         )
1866       (save-restriction
1867         ;; We are interested in message body.
1868         (let* ((beg
1869                 (progn
1870                   (goto-char (point-min))
1871                   (re-search-forward
1872                    (concat "\n" (regexp-quote mail-header-separator)
1873                            (if mime-ignore-preceding-spaces
1874                                "[ \t\n]*\n" "\n")) nil 'move)
1875                   (point)))
1876                (end
1877                 (progn
1878                   (goto-char (point-max))
1879                   (and mime-ignore-trailing-spaces
1880                        (re-search-backward "[^ \t\n]\n" beg t)
1881                        (forward-char 1))
1882                   (point))))
1883           (setq ret (mime-edit-translate-region
1884                      beg end
1885                      (format "%s-%d" boundary i)))
1886           ))
1887       (mime-edit-dequote-region (point-min)(point-max))
1888       (let ((contype (car ret))         ;Content-Type
1889             (encoding (nth 1 ret))      ;Content-Transfer-Encoding
1890             )
1891         ;; Insert X-Emacs field
1892         (and mime-edit-insert-x-emacs-field
1893              (or (mail-position-on-field "X-Emacs")
1894                  (insert mime-edit-x-emacs-value)
1895                  ))
1896         ;; Make primary MIME headers.
1897         (or (mail-position-on-field "MIME-Version")
1898             (insert mime-edit-mime-version-value))
1899         ;; Remove old Content-Type and other fields.
1900         (save-restriction
1901           (goto-char (point-min))
1902           (search-forward (concat "\n" mail-header-separator "\n") nil t)
1903           (narrow-to-region (point-min) (point))
1904           (goto-char (point-min))
1905           (mime-delete-field "Content-Type")
1906           (mime-delete-field "Content-Transfer-Encoding"))
1907         ;; Then, insert Content-Type and Content-Transfer-Encoding fields.
1908         (mail-position-on-field "Content-Type")
1909         (insert contype)
1910         (if encoding
1911             (progn
1912               (mail-position-on-field "Content-Transfer-Encoding")
1913               (insert encoding)))
1914         ))))
1915
1916 (defun mime-edit-translate-single-part-tag (&optional prefix)
1917   "Translate single-part-tag to MIME header."
1918   (if (re-search-forward mime-edit-single-part-tag-regexp nil t)
1919       (let* ((beg (match-beginning 0))
1920              (end (match-end 0))
1921              (tag (buffer-substring beg end))
1922              )
1923         (delete-region beg end)
1924         (let ((contype (mime-edit-get-contype tag))
1925               (encoding (mime-edit-get-encoding tag))
1926               )
1927           (insert (concat prefix "--" boundary "\n"))
1928           (save-restriction
1929             (narrow-to-region (point)(point))
1930             (insert "Content-Type: " contype "\n")
1931             (if encoding
1932                 (insert "Content-Transfer-Encoding: " encoding "\n"))
1933             (eword-encode-header)
1934             ))
1935         t)))
1936
1937 (defun mime-edit-translate-region (beg end &optional boundary multipart)
1938   (or boundary
1939       (setq boundary (mime-edit-make-boundary))
1940       )
1941   (save-excursion
1942     (save-restriction
1943       (narrow-to-region beg end)
1944       (let ((tag nil)                   ;MIME tag
1945             (contype nil)               ;Content-Type
1946             (encoding nil)              ;Content-Transfer-Encoding
1947             (nparts 0))                 ;Number of body parts
1948         ;; Normalize the body part by inserting appropriate message
1949         ;; tags for every message contents.
1950         (mime-edit-normalize-body)
1951         ;; Counting the number of Content-Type.
1952         (goto-char (point-min))
1953         (while (re-search-forward mime-edit-single-part-tag-regexp nil t)
1954           (setq nparts (1+ nparts)))
1955         ;; Begin translation.
1956         (cond
1957          ((and (<= nparts 1)(not multipart))
1958           ;; It's a singular message.
1959           (goto-char (point-min))
1960           (while (re-search-forward
1961                   mime-edit-single-part-tag-regexp nil t)
1962             (setq tag
1963                   (buffer-substring (match-beginning 0) (match-end 0)))
1964             (delete-region (match-beginning 0) (1+ (match-end 0)))
1965             (setq contype (mime-edit-get-contype tag))
1966             (setq encoding (mime-edit-get-encoding tag))
1967             ))
1968          (t
1969           ;; It's a multipart message.
1970           (goto-char (point-min))
1971           (and (mime-edit-translate-single-part-tag)
1972                (while (mime-edit-translate-single-part-tag "\n"))
1973                )
1974           ;; Define Content-Type as "multipart/mixed".
1975           (setq contype
1976                 (concat "multipart/mixed;\n boundary=\"" boundary "\""))
1977           ;; Content-Transfer-Encoding must be "7bit".
1978           ;; The following encoding can be `nil', but is
1979           ;; specified as is since there is no way that a user
1980           ;; specifies it.
1981           (setq encoding "7bit")
1982           ;; Insert the trailer.
1983           (goto-char (point-max))
1984           (insert "\n--" boundary "--\n")
1985           ))
1986         (list contype encoding boundary nparts)
1987         ))))
1988
1989 (defun mime-edit-normalize-body ()
1990   "Normalize the body part by inserting appropriate message tags."
1991   ;; Insert the first MIME tags if necessary.
1992   (goto-char (point-min))
1993   (if (not (looking-at mime-edit-single-part-tag-regexp))
1994       (insert (mime-make-text-tag) "\n"))
1995   ;; Check each tag, and add new tag or correct it if necessary.
1996   (goto-char (point-min))
1997   (while (re-search-forward mime-edit-single-part-tag-regexp nil t)
1998     (let* ((tag (buffer-substring (match-beginning 0) (match-end 0)))
1999            (contype (mime-edit-get-contype tag))
2000            (charset (mime-get-parameter contype "charset"))
2001            (encoding (mime-edit-get-encoding tag)))
2002       ;; Remove extra whitespaces after the tag.
2003       (if (looking-at "[ \t]+$")
2004           (delete-region (match-beginning 0) (match-end 0)))
2005       (let ((beg (point))
2006             (end (mime-edit-content-end))
2007             )
2008         (if (= end (point-max))
2009             nil
2010           (goto-char end)
2011           (or (looking-at mime-edit-beginning-tag-regexp)
2012               (eobp)
2013               (insert (mime-make-text-tag) "\n")
2014               ))
2015         (visible-region beg end)
2016         (goto-char beg)
2017         )
2018       (cond
2019        ((mime-test-content-type contype "message")
2020         ;; Content-type "message" should be sent as is.
2021         (forward-line 1)
2022         )
2023        ((mime-test-content-type contype "text")
2024         ;; Define charset for text if necessary.
2025         (setq charset (if charset
2026                           (intern (downcase charset))
2027                         (mime-edit-choose-charset)))
2028         (mime-edit-define-charset charset)
2029         (cond ((string-equal contype "text/x-rot13-47-48")
2030                (save-excursion
2031                  (forward-line)
2032                  (mule-caesar-region (point) (mime-edit-content-end))
2033                  ))
2034               ((string-equal contype "text/enriched")
2035                (save-excursion
2036                  (let ((beg (progn
2037                               (forward-line)
2038                               (point)))
2039                        (end (mime-edit-content-end))
2040                        )
2041                    ;; Patch for hard newlines
2042                    ;; (save-excursion
2043                    ;;   (goto-char beg)
2044                    ;;   (while (search-forward "\n" end t)
2045                    ;;     (put-text-property (match-beginning 0)
2046                    ;;                        (point)
2047                    ;;                        'hard t)))
2048                    ;; End patch for hard newlines
2049                    (enriched-encode beg end)
2050                    (goto-char beg)
2051                    (if (search-forward "\n\n")
2052                        (delete-region beg (match-end 0))
2053                      )
2054                    ))))
2055         ;; Point is now on current tag.
2056         ;; Define encoding and encode text if necessary.
2057         (or encoding    ;Encoding is not specified.
2058             (let* ((encoding
2059                     (cdr
2060                      (assq charset
2061                            mime-edit-charset-default-encoding-alist)
2062                      ))
2063                    (beg (mime-edit-content-beginning))
2064                    )
2065               (encode-mime-charset-region beg (mime-edit-content-end)
2066                                           charset)
2067               ;; Protect "From " in beginning of line
2068               (save-restriction
2069                 (narrow-to-region beg (mime-edit-content-end))
2070                 (goto-char beg)
2071                 (let (case-fold-search)
2072                   (if (re-search-forward "^From " nil t)
2073                       (unless encoding
2074                         (if (memq charset '(iso-2022-jp
2075                                             iso-2022-jp-2
2076                                             iso-2022-int-1
2077                                             x-ctext))
2078                             (while (progn
2079                                      (replace-match "\e(BFrom ")
2080                                      (re-search-forward "^From " nil t)
2081                                      ))
2082                           (setq encoding "quoted-printable")
2083                           )))))
2084               ;; canonicalize line break code
2085               (or (member encoding '(nil "7bit" "8bit" "quoted-printable"))
2086                   (save-restriction
2087                     (narrow-to-region beg (mime-edit-content-end))
2088                     (goto-char beg)
2089                     (while (re-search-forward "\\([^\r]\\)\n" nil t)
2090                       (replace-match
2091                        (concat (buffer-substring (match-beginning 0)
2092                                                  (match-end 1)) "\r\n"))
2093                       )))
2094               (goto-char beg)
2095               (mime-encode-region beg (mime-edit-content-end) encoding)
2096               (mime-edit-define-encoding encoding)
2097               ))
2098         (goto-char (mime-edit-content-end))
2099         )
2100        ((null encoding)         ;Encoding is not specified.
2101         ;; Application, image, audio, video, and any other
2102         ;; unknown content-type without encoding should be
2103         ;; encoded.
2104         (let* ((encoding "base64")      ;Encode in BASE64 by default.
2105                (beg (mime-edit-content-beginning))
2106                (end (mime-edit-content-end))
2107                (body (buffer-substring beg end))
2108                )
2109           (mime-encode-region beg end encoding)
2110           (mime-edit-define-encoding encoding))
2111         (forward-line 1)
2112         ))
2113       )))
2114
2115 (defun mime-delete-field (field)
2116   "Delete header FIELD."
2117   (let ((regexp (format "^%s:[ \t]*" field)))
2118     (goto-char (point-min))
2119     (while (re-search-forward regexp nil t)
2120       (delete-region (match-beginning 0)
2121                      (progn (forward-line 1) (point)))
2122       )))
2123
2124 \f
2125 ;;;
2126 ;;; Platform dependent functions
2127 ;;;
2128
2129 ;; Sun implementations
2130
2131 (defun mime-edit-voice-recorder-for-sun (encoding)
2132   "Record voice in a buffer using Sun audio device,
2133 and insert data encoded as ENCODING."
2134   (message "Start the recording on %s.  Type C-g to finish the recording..."
2135            (system-name))
2136   (mime-insert-encoded-file "/dev/audio" encoding)
2137   )
2138
2139 \f
2140 ;;; @ Other useful commands.
2141 ;;;
2142
2143 ;; Message forwarding commands as content-type "message/rfc822".
2144
2145 (defun mime-edit-insert-message (&optional message)
2146   (interactive)
2147   (let ((inserter (cdr (assq major-mode mime-edit-message-inserter-alist))))
2148     (if (and inserter (fboundp inserter))
2149         (progn
2150           (mime-edit-insert-tag "message" "rfc822")
2151           (funcall inserter message)
2152           )
2153       (message "Sorry, I don't have message inserter for your MUA.")
2154       )))
2155
2156 (defun mime-edit-insert-mail (&optional message)
2157   (interactive)
2158   (let ((inserter (cdr (assq major-mode mime-edit-mail-inserter-alist))))
2159     (if (and inserter (fboundp inserter))
2160         (progn
2161           (mime-edit-insert-tag "message" "rfc822")
2162           (funcall inserter message)
2163           )
2164       (message "Sorry, I don't have mail inserter for your MUA.")
2165       )))
2166
2167 (defun mime-edit-inserted-message-filter ()
2168   (save-excursion
2169     (save-restriction
2170       (let ((header-start (point))
2171             (case-fold-search t)
2172             beg end)
2173         ;; for Emacs 18
2174         ;; (if (re-search-forward "^$" (marker-position (mark-marker)))
2175         (if (re-search-forward "^$" (mark t))
2176             (narrow-to-region header-start (match-beginning 0))
2177           )
2178         (goto-char header-start)
2179         (while (and (re-search-forward
2180                      mime-edit-yank-ignored-field-regexp nil t)
2181                     (setq beg (match-beginning 0))
2182                     (setq end (1+ (std11-field-end)))
2183                     )
2184           (delete-region beg end)
2185           )
2186         ))))
2187
2188
2189 ;;; @ multipart enclosure
2190 ;;;
2191
2192 (defun mime-edit-enclose-region-internal (type beg end)
2193   (save-excursion
2194     (goto-char beg)
2195     (let ((current (point)))
2196       (save-restriction
2197         (narrow-to-region beg end)
2198         (insert (format "--<<%s>>-{\n" type))
2199         (goto-char (point-max))
2200         (insert (format "--}-<<%s>>\n" type))
2201         (goto-char (point-max))
2202         )
2203       (or (looking-at mime-edit-beginning-tag-regexp)
2204           (eobp)
2205           (insert (mime-make-text-tag) "\n")
2206           )
2207       )))
2208
2209 (defun mime-edit-enclose-quote-region (beg end)
2210   (interactive "*r")
2211   (mime-edit-enclose-region-internal 'quote beg end)
2212   )
2213
2214 (defun mime-edit-enclose-mixed-region (beg end)
2215   (interactive "*r")
2216   (mime-edit-enclose-region-internal 'mixed beg end)
2217   )
2218
2219 (defun mime-edit-enclose-parallel-region (beg end)
2220   (interactive "*r")
2221   (mime-edit-enclose-region-internal 'parallel beg end)
2222   )
2223
2224 (defun mime-edit-enclose-digest-region (beg end)
2225   (interactive "*r")
2226   (mime-edit-enclose-region-internal 'digest beg end)
2227   )
2228
2229 (defun mime-edit-enclose-alternative-region (beg end)
2230   (interactive "*r")
2231   (mime-edit-enclose-region-internal 'alternative beg end)
2232   )
2233
2234 (defun mime-edit-enclose-signed-region (beg end)
2235   (interactive "*r")
2236   (if mime-edit-signing-type
2237       (mime-edit-enclose-region-internal 'signed beg end)
2238     (message "Please specify signing type.")
2239     ))
2240
2241 (defun mime-edit-enclose-encrypted-region (beg end)
2242   (interactive "*r")
2243   (if mime-edit-signing-type
2244       (mime-edit-enclose-region-internal 'encrypted beg end)
2245     (message "Please specify encrypting type.")
2246     ))
2247
2248 (defun mime-edit-insert-key (&optional arg)
2249   "Insert a pgp public key."
2250   (interactive "P")
2251   (mime-edit-insert-tag "application" "pgp-keys")
2252   (mime-edit-define-encoding "7bit")
2253   (funcall (pgp-function 'insert-key))
2254   )
2255
2256
2257 ;;; @ flag setting
2258 ;;;
2259
2260 (defun mime-edit-set-split (arg)
2261   (interactive
2262    (list
2263     (y-or-n-p "Do you want to enable split? ")
2264     ))
2265   (setq mime-edit-split-message arg)
2266   (if arg
2267       (message "This message is enabled to split.")
2268     (message "This message is not enabled to split.")
2269     ))
2270
2271 (defun mime-edit-toggle-transfer-level (&optional transfer-level)
2272   "Toggle transfer-level is 7bit or 8bit through.
2273
2274 Optional TRANSFER-LEVEL is a number of transfer-level, 7 or 8."
2275   (interactive)
2276   (if (numberp transfer-level)
2277       (setq mime-transfer-level transfer-level)
2278     (if (< mime-transfer-level 8)
2279         (setq mime-transfer-level 8)
2280       (setq mime-transfer-level 7)
2281       ))
2282   (setq mime-edit-charset-default-encoding-alist
2283         (mime-make-charset-default-encoding-alist mime-transfer-level))
2284   (message (format "Current transfer-level is %d bit"
2285                    mime-transfer-level))
2286   (setq mime-transfer-level-string
2287         (mime-encoding-name mime-transfer-level 'not-omit))
2288   (force-mode-line-update)
2289   )
2290
2291 (defun mime-edit-set-transfer-level-7bit ()
2292   (interactive)
2293   (mime-edit-toggle-transfer-level 7)
2294   )
2295
2296 (defun mime-edit-set-transfer-level-8bit ()
2297   (interactive)
2298   (mime-edit-toggle-transfer-level 8)
2299   )
2300
2301
2302 ;;; @ pgp
2303 ;;;
2304
2305 (defun mime-edit-set-sign (arg)
2306   (interactive
2307    (list
2308     (y-or-n-p "Do you want to sign? ")
2309     ))
2310   (if arg
2311       (if mime-edit-signing-type
2312           (progn
2313             (setq mime-edit-pgp-processing 'sign)
2314             (message "This message will be signed.")
2315             )
2316         (message "Please specify signing type.")
2317         )
2318     (if (eq mime-edit-pgp-processing 'sign)
2319         (setq mime-edit-pgp-processing nil)
2320       )
2321     (message "This message will not be signed.")
2322     ))
2323
2324 (defun mime-edit-set-encrypt (arg)
2325   (interactive
2326    (list
2327     (y-or-n-p "Do you want to encrypt? ")
2328     ))
2329   (if arg
2330       (if mime-edit-encrypting-type
2331           (progn
2332             (setq mime-edit-pgp-processing 'encrypt)
2333             (message "This message will be encrypt.")
2334             )
2335         (message "Please specify encrypting type.")
2336         )
2337     (if (eq mime-edit-pgp-processing 'encrypt)
2338         (setq mime-edit-pgp-processing nil)
2339       )
2340     (message "This message will not be encrypt.")
2341     ))
2342
2343 (defvar mime-edit-pgp-processing nil)
2344 (make-variable-buffer-local 'mime-edit-pgp-processing)
2345
2346 (defun mime-edit-pgp-enclose-buffer ()
2347   (let ((beg (save-excursion
2348                (goto-char (point-min))
2349                (if (search-forward (concat "\n" mail-header-separator "\n"))
2350                    (match-end 0)
2351                  )))
2352         (end (point-max))
2353         )
2354     (if beg
2355         (cond ((eq mime-edit-pgp-processing 'sign)
2356                (mime-edit-enclose-signed-region beg end)
2357                )
2358               ((eq mime-edit-pgp-processing 'encrypt)
2359                (mime-edit-enclose-encrypted-region beg end)
2360                ))
2361       )))
2362
2363
2364 ;;; @ split
2365 ;;;
2366
2367 (defun mime-edit-insert-partial-header (fields subject
2368                                                id number total separator)
2369   (insert fields)
2370   (insert (format "Subject: %s (%d/%d)\n" subject number total))
2371   (insert mime-edit-mime-version-field-for-message/partial)
2372   (insert (format "\
2373 Content-Type: message/partial; id=%s; number=%d; total=%d\n%s\n"
2374                   id number total separator))
2375   )
2376
2377 (defun mime-edit-split-and-send
2378   (&optional cmd lines mime-edit-message-max-length)
2379   (interactive)
2380   (or lines
2381       (setq lines
2382             (count-lines (point-min) (point-max)))
2383       )
2384   (or mime-edit-message-max-length
2385       (setq mime-edit-message-max-length
2386             (or (cdr (assq major-mode mime-edit-message-max-lines-alist))
2387                 mime-edit-message-default-max-lines))
2388       )
2389   (let* ((mime-edit-draft-file-name
2390           (or (buffer-file-name)
2391               (make-temp-name
2392                (expand-file-name "mime-draft" mime-temp-directory))))
2393          (separator mail-header-separator)
2394          (id (concat "\""
2395                      (replace-space-with-underline (current-time-string))
2396                      "@" (system-name) "\"")))
2397     (run-hooks 'mime-edit-before-split-hook)
2398     (let ((the-buf (current-buffer))
2399           (copy-buf (get-buffer-create " *Original Message*"))
2400           (header (std11-header-string-except
2401                    mime-edit-split-ignored-field-regexp separator))
2402           (subject (mail-fetch-field "subject"))
2403           (total (+ (/ lines mime-edit-message-max-length)
2404                     (if (> (mod lines mime-edit-message-max-length) 0)
2405                         1)))
2406           (command
2407            (or cmd
2408                (cdr
2409                 (assq major-mode
2410                       mime-edit-split-message-sender-alist))
2411                (function
2412                 (lambda ()
2413                   (interactive)
2414                   (error "Split sender is not specified for `%s'." major-mode)
2415                   ))
2416                ))
2417           (mime-edit-partial-number 1)
2418           data)
2419       (save-excursion
2420         (set-buffer copy-buf)
2421         (erase-buffer)
2422         (insert-buffer the-buf)
2423         (save-restriction
2424           (if (re-search-forward
2425                (concat "^" (regexp-quote separator) "$") nil t)
2426               (let ((he (match-beginning 0)))
2427                 (replace-match "")
2428                 (narrow-to-region (point-min) he)
2429                 ))
2430           (goto-char (point-min))
2431           (while (re-search-forward mime-edit-split-blind-field-regexp nil t)
2432             (delete-region (match-beginning 0)
2433                            (1+ (std11-field-end)))
2434             )))
2435       (while (< mime-edit-partial-number total)
2436         (erase-buffer)
2437         (save-excursion
2438           (set-buffer copy-buf)
2439           (setq data (buffer-substring
2440                       (point-min)
2441                       (progn
2442                         (goto-line mime-edit-message-max-length)
2443                         (point))
2444                       ))
2445           (delete-region (point-min)(point))
2446           )
2447         (mime-edit-insert-partial-header
2448          header subject id mime-edit-partial-number total separator)
2449         (insert data)
2450         (save-excursion
2451           (message (format "Sending %d/%d..."
2452                            mime-edit-partial-number total))
2453           (call-interactively command)
2454           (message (format "Sending %d/%d... done"
2455                            mime-edit-partial-number total))
2456           )
2457         (setq mime-edit-partial-number
2458               (1+ mime-edit-partial-number))
2459         )
2460       (erase-buffer)
2461       (save-excursion
2462         (set-buffer copy-buf)
2463         (setq data (buffer-string))
2464         (erase-buffer)
2465         )
2466       (mime-edit-insert-partial-header
2467        header subject id mime-edit-partial-number total separator)
2468       (insert data)
2469       (save-excursion
2470         (message (format "Sending %d/%d..."
2471                          mime-edit-partial-number total))
2472         (message (format "Sending %d/%d... done"
2473                          mime-edit-partial-number total))
2474         )
2475       )))
2476
2477 (defun mime-edit-maybe-split-and-send (&optional cmd)
2478   (interactive)
2479   (run-hooks 'mime-edit-before-send-hook)
2480   (let ((mime-edit-message-max-length
2481          (or (cdr (assq major-mode mime-edit-message-max-lines-alist))
2482              mime-edit-message-default-max-lines))
2483         (lines (count-lines (point-min) (point-max)))
2484         )
2485     (if (and (> lines mime-edit-message-max-length)
2486              mime-edit-split-message)
2487         (mime-edit-split-and-send cmd lines mime-edit-message-max-length)
2488       )))
2489
2490
2491 ;;; @ preview message
2492 ;;;
2493
2494 (defvar mime-edit-buffer nil) ; buffer local variable
2495
2496 (defun mime-edit-preview-message ()
2497   "preview editing MIME message."
2498   (interactive)
2499   (let* ((str (buffer-string))
2500          (separator mail-header-separator)
2501          (the-buf (current-buffer))
2502          (buf-name (buffer-name))
2503          (temp-buf-name (concat "*temp-article:" buf-name "*"))
2504          (buf (get-buffer temp-buf-name))
2505          )
2506     (if buf
2507         (progn
2508           (switch-to-buffer buf)
2509           (erase-buffer)
2510           )
2511       (setq buf (get-buffer-create temp-buf-name))
2512       (switch-to-buffer buf)
2513       )
2514     (insert str)
2515     (setq major-mode 'mime-temp-message-mode)
2516     (make-local-variable 'mail-header-separator)
2517     (setq mail-header-separator separator)
2518     (make-local-variable 'mime-edit-buffer)
2519     (setq mime-edit-buffer the-buf)
2520
2521     (run-hooks 'mime-edit-translate-hook)
2522     (mime-edit-translate-buffer)
2523     (goto-char (point-min))
2524     (if (re-search-forward
2525          (concat "^" (regexp-quote separator) "$"))
2526         (replace-match "")
2527       )
2528     (mime-view-mode)
2529     ))
2530
2531 (defun mime-edit-quitting-method ()
2532   "Quitting method for mime-view."
2533   (let ((temp mime-raw-buffer)
2534         buf)
2535     (mime-view-kill-buffer)
2536     (set-buffer temp)
2537     (setq buf mime-edit-buffer)
2538     (kill-buffer temp)
2539     (switch-to-buffer buf)
2540     ))
2541
2542 (set-alist 'mime-view-quitting-method-alist
2543            'mime-temp-message-mode
2544            (function mime-edit-quitting-method)
2545            )
2546
2547
2548 ;;; @ edit again
2549 ;;;
2550
2551 (defvar mime-edit-again-ignored-field-regexp
2552   (concat "^\\(" "Content-.*\\|Mime-Version"
2553           (if mime-edit-insert-x-emacs-field "\\|X-Emacs")
2554           "\\):")
2555   "Regexp for deleted header fields when `mime-edit-again' is called.")
2556
2557 (defun mime-edit-decode-buffer (not-decode-text)
2558   (save-excursion
2559     (goto-char (point-min))
2560     (let ((ctl (mime-read-Content-Type)))
2561       (if ctl
2562           (let ((type (car ctl))
2563                 (stype (car (cdr ctl)))
2564                 (params (cdr (cdr ctl)))
2565                 )
2566             (cond
2567              ((and (eq type 'application)(eq stype 'pgp-signature))
2568               (delete-region (point-min)(point-max))
2569               )
2570              ((eq type 'multipart)
2571               (let* ((boundary (cdr (assoc "boundary" params)))
2572                      (boundary-pat
2573                       (concat "\n--" (regexp-quote boundary) "[ \t]*\n"))
2574                      )
2575                 (re-search-forward boundary-pat nil t)
2576                 (let ((bb (match-beginning 0)) eb tag)
2577                   (setq tag (format "\n--<<%s>>-{\n" stype))
2578                   (goto-char bb)
2579                   (insert tag)
2580                   (setq bb (+ bb (length tag)))
2581                   (re-search-forward
2582                    (concat "\n--" (regexp-quote boundary) "--[ \t]*\n")
2583                    nil t)
2584                   (setq eb (match-beginning 0))
2585                   (replace-match (format "--}-<<%s>>\n" stype))
2586                   (save-restriction
2587                     (narrow-to-region bb eb)
2588                     (goto-char (point-min))
2589                     (while (re-search-forward boundary-pat nil t)
2590                       (let ((beg (match-beginning 0))
2591                             end)
2592                         (delete-region beg (match-end 0))
2593                         (save-excursion
2594                           (if (re-search-forward boundary-pat nil t)
2595                               (setq end (match-beginning 0))
2596                             (setq end (point-max))
2597                             )
2598                           (save-restriction
2599                             (narrow-to-region beg end)
2600                             (mime-edit-decode-buffer not-decode-text)
2601                             (goto-char (point-max))
2602                             ))))
2603                     ))
2604                 (goto-char (point-min))
2605                 (or (= (point-min) 1)
2606                     (delete-region (point-min)
2607                                    (if (search-forward "\n\n" nil t)
2608                                        (match-end 0)
2609                                      (point-min)
2610                                      )))
2611                 ))
2612              (t
2613               (let* ((ctype (format "%s/%s" type stype))
2614                      charset
2615                      (pstr
2616                       (let ((bytes (+ 14 (length ctype))))
2617                         (mapconcat (function
2618                                     (lambda (attr)
2619                                       (if (string= (car attr) "charset")
2620                                           (progn
2621                                             (setq charset (cdr attr))
2622                                             "")
2623                                         (let* ((str
2624                                                 (concat (car attr)
2625                                                         "=" (cdr attr))
2626                                                 )
2627                                                (bs (length str))
2628                                                )
2629                                           (setq bytes (+ bytes bs 2))
2630                                           (if (< bytes 76)
2631                                               (concat "; " str)
2632                                             (setq bytes (+ bs 1))
2633                                             (concat ";\n " str)
2634                                             )
2635                                           ))))
2636                                    params "")))
2637                      encoding
2638                      encoded)
2639                 (save-excursion
2640                   (if (re-search-forward
2641                        "Content-Transfer-Encoding:" nil t)
2642                       (let ((beg (match-beginning 0))
2643                             (hbeg (match-end 0))
2644                             (end (std11-field-end)))
2645                         (setq encoding
2646                               (eliminate-top-spaces
2647                                (std11-unfold-string
2648                                 (buffer-substring hbeg end))))
2649                         (if (or charset (eq type 'text))
2650                             (progn
2651                               (delete-region beg (1+ end))
2652                               (goto-char (point-min))
2653                               (if (search-forward "\n\n" nil t)
2654                                   (progn
2655                                     (mime-decode-region
2656                                      (match-end 0)(point-max) encoding)
2657                                     (setq encoded t
2658                                           encoding nil)
2659                                     )))))))
2660                 (if (or encoded (not not-decode-text))
2661                     (decode-mime-charset-region
2662                      (point-min)(point-max)
2663                      (or charset default-mime-charset))
2664                   )
2665                 (let ((he
2666                        (if (re-search-forward "^$" nil t)
2667                            (match-end 0)
2668                          (point-min)
2669                          )))
2670                   (if (= (point-min) 1)
2671                       (progn
2672                         (goto-char he)
2673                         (insert
2674                          (concat "\n"
2675                                  (mime-create-tag
2676                                   (format "%s/%s%s" type stype pstr)
2677                                   encoding)))
2678                         )
2679                     (delete-region (point-min) he)
2680                     (insert
2681                      (mime-create-tag
2682                       (format "%s/%s%s" type stype pstr)
2683                       encoding))
2684                     ))
2685                 ))))
2686         (or not-decode-text
2687             (decode-mime-charset-region (point-min) (point-max)
2688                                         default-mime-charset)
2689             )
2690         ))))
2691
2692 (defun mime-edit-again (&optional not-decode-text no-separator not-turn-on)
2693   "Convert current buffer to MIME-Edit buffer and turn on MIME-Edit mode.
2694 Content-Type and Content-Transfer-Encoding header fields will be
2695 converted to MIME-Edit tags."
2696   (interactive)
2697   (goto-char (point-min))
2698   (if (search-forward
2699        (concat "\n" (regexp-quote mail-header-separator) "\n")
2700        nil t)
2701       (replace-match "\n\n")
2702     )
2703   (mime-edit-decode-buffer not-decode-text)
2704   (goto-char (point-min))
2705   (save-restriction
2706     (std11-narrow-to-header)
2707     (goto-char (point-min))
2708     (while (re-search-forward mime-edit-again-ignored-field-regexp nil t)
2709       (delete-region (match-beginning 0) (1+ (std11-field-end)))
2710       ))
2711   (or no-separator
2712       (and (re-search-forward "^$")
2713            (replace-match mail-header-separator)
2714            ))
2715   (or not-turn-on
2716       (turn-on-mime-edit)
2717       ))
2718
2719
2720 ;;; @ end
2721 ;;;
2722
2723 (provide 'mime-edit)
2724
2725 (run-hooks 'mime-edit-load-hook)
2726
2727 ;;; mime-edit.el ends here