* elisp.texi: Specify GFDL version 1.2.
[bpt/emacs.git] / man / emacs-mime.texi
CommitLineData
23f87bed 1\input texinfo
dd8839b0 2
a1720df0 3@setfilename ../info/emacs-mime
dd8839b0
DL
4@settitle Emacs MIME Manual
5@synindex fn cp
6@synindex vr cp
7@synindex pg cp
dd8839b0 8
18f952d5 9@copying
dd8839b0
DL
10This file documents the Emacs MIME interface functionality.
11
f3f01d5d
MB
12Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
13 Free Software Foundation, Inc.
dd8839b0 14
18f952d5 15@quotation
dd8839b0
DL
16Permission is granted to copy, distribute and/or modify this document
17under the terms of the GNU Free Documentation License, Version 1.1 or
c5c46a26
DL
18any later version published by the Free Software Foundation; with no
19Invariant Sections, with the Front-Cover texts being ``A GNU
23f87bed 20Manual'', and with the Back-Cover Texts as in (a) below. A copy of the
dd8839b0 21license is included in the section entitled ``GNU Free Documentation
2482f038 22License'' in the Emacs manual.
dd8839b0
DL
23
24(a) The FSF's Back-Cover Text is: ``You have freedom to copy and modify
25this GNU Manual, like GNU software. Copies published by the Free
26Software Foundation raise funds for GNU development.''
2482f038
DL
27
28This document is part of a collection distributed under the GNU Free
29Documentation License. If you want to distribute this document
30separately from the collection, you can do so by adding a copy of the
31license to the document, as described in section 6 of the license.
18f952d5
KB
32@end quotation
33@end copying
dd8839b0 34
18f952d5
KB
35@dircategory Emacs
36@direntry
23f87bed 37* Emacs MIME: (emacs-mime). Emacs MIME de/composition library.
18f952d5
KB
38@end direntry
39@iftex
40@finalout
41@end iftex
42@setchapternewpage odd
dd8839b0
DL
43
44@titlepage
45@title Emacs MIME Manual
46
47@author by Lars Magne Ingebrigtsen
48@page
dd8839b0 49@vskip 0pt plus 1filll
18f952d5 50@insertcopying
dd8839b0 51@end titlepage
dd8839b0 52
23f87bed
MB
53@node Top
54@top Emacs MIME
55
56This manual documents the libraries used to compose and display
57@acronym{MIME} messages.
58
3d80e1a2 59This manual is directed at users who want to modify the behavior of
23f87bed
MB
60the @acronym{MIME} encoding/decoding process or want a more detailed
61picture of how the Emacs @acronym{MIME} library works, and people who want
62to write functions and commands that manipulate @acronym{MIME} elements.
63
64@acronym{MIME} is short for @dfn{Multipurpose Internet Mail Extensions}.
65This standard is documented in a number of RFCs; mainly RFC2045 (Format
66of Internet Message Bodies), RFC2046 (Media Types), RFC2047 (Message
67Header Extensions for Non-@acronym{ASCII} Text), RFC2048 (Registration
68Procedures), RFC2049 (Conformance Criteria and Examples). It is highly
69recommended that anyone who intends writing @acronym{MIME}-compliant software
70read at least RFC2045 and RFC2047.
71
72@menu
73* Decoding and Viewing:: A framework for decoding and viewing.
74* Composing:: @acronym{MML}; a language for describing @acronym{MIME} parts.
75* Interface Functions:: An abstraction over the basic functions.
76* Basic Functions:: Utility and basic parsing functions.
77* Standards:: A summary of RFCs and working documents used.
78* Index:: Function and variable index.
79@end menu
80
81
82@node Decoding and Viewing
83@chapter Decoding and Viewing
84
85This chapter deals with decoding and viewing @acronym{MIME} messages on a
86higher level.
87
88The main idea is to first analyze a @acronym{MIME} article, and then allow
89other programs to do things based on the list of @dfn{handles} that are
90returned as a result of this analysis.
91
92@menu
93* Dissection:: Analyzing a @acronym{MIME} message.
94* Non-MIME:: Analyzing a non-@acronym{MIME} message.
95* Handles:: Handle manipulations.
96* Display:: Displaying handles.
97* Display Customization:: Variables that affect display.
98* Files and Directories:: Saving and naming attachments.
99* New Viewers:: How to write your own viewers.
100@end menu
101
102
103@node Dissection
104@section Dissection
105
106The @code{mm-dissect-buffer} is the function responsible for dissecting
107a @acronym{MIME} article. If given a multipart message, it will recursively
108descend the message, following the structure, and return a tree of
109@acronym{MIME} handles that describes the structure of the message.
110
111@node Non-MIME
112@section Non-MIME
113@vindex mm-uu-configure-list
114
115Gnus also understands some non-@acronym{MIME} attachments, such as
116postscript, uuencode, binhex, yenc, shar, forward, gnatsweb, pgp,
117diff. Each of these features can be disabled by add an item into
118@code{mm-uu-configure-list}. For example,
119
120@lisp
121(require 'mm-uu)
122(add-to-list 'mm-uu-configure-list '(pgp-signed . disabled))
123@end lisp
124
125@table @code
126@item postscript
127@findex postscript
128Postscript file.
129
130@item uu
131@findex uu
132Uuencoded file.
133
134@item binhex
135@findex binhex
136Binhex encoded file.
137
138@item yenc
139@findex yenc
140Yenc encoded file.
141
142@item shar
143@findex shar
144Shar archive file.
145
146@item forward
147@findex forward
148Non-@acronym{MIME} forwarded message.
149
150@item gnatsweb
151@findex gnatsweb
152Gnatsweb attachment.
153
154@item pgp-signed
155@findex pgp-signed
156@acronym{PGP} signed clear text.
157
158@item pgp-encrypted
159@findex pgp-encrypted
160@acronym{PGP} encrypted clear text.
161
162@item pgp-key
163@findex pgp-key
164@acronym{PGP} public keys.
165
166@item emacs-sources
167@findex emacs-sources
168@vindex mm-uu-emacs-sources-regexp
169Emacs source code. This item works only in the groups matching
170@code{mm-uu-emacs-sources-regexp}.
171
172@item diff
173@vindex diff
174@vindex mm-uu-diff-groups-regexp
175Patches. This is intended for groups where diffs of committed files
176are automatically sent to. It only works in groups matching
177@code{mm-uu-diff-groups-regexp}.
178
179@end table
180
181@node Handles
182@section Handles
183
184A @acronym{MIME} handle is a list that fully describes a @acronym{MIME}
185component.
186
187The following macros can be used to access elements in a handle:
188
189@table @code
190@item mm-handle-buffer
191@findex mm-handle-buffer
192Return the buffer that holds the contents of the undecoded @acronym{MIME}
193part.
194
195@item mm-handle-type
196@findex mm-handle-type
197Return the parsed @code{Content-Type} of the part.
198
199@item mm-handle-encoding
200@findex mm-handle-encoding
201Return the @code{Content-Transfer-Encoding} of the part.
202
203@item mm-handle-undisplayer
204@findex mm-handle-undisplayer
205Return the object that can be used to remove the displayed part (if it
206has been displayed).
207
208@item mm-handle-set-undisplayer
209@findex mm-handle-set-undisplayer
210Set the undisplayer object.
211
212@item mm-handle-disposition
213@findex mm-handle-disposition
214Return the parsed @code{Content-Disposition} of the part.
215
23f87bed
MB
216@item mm-get-content-id
217Returns the handle(s) referred to by @code{Content-ID}.
218
219@end table
220
221
222@node Display
223@section Display
224
225Functions for displaying, removing and saving.
226
227@table @code
228@item mm-display-part
229@findex mm-display-part
230Display the part.
231
232@item mm-remove-part
233@findex mm-remove-part
234Remove the part (if it has been displayed).
235
236@item mm-inlinable-p
237@findex mm-inlinable-p
238Say whether a @acronym{MIME} type can be displayed inline.
239
240@item mm-automatic-display-p
241@findex mm-automatic-display-p
242Say whether a @acronym{MIME} type should be displayed automatically.
243
244@item mm-destroy-part
245@findex mm-destroy-part
246Free all resources occupied by a part.
247
248@item mm-save-part
249@findex mm-save-part
250Offer to save the part in a file.
251
252@item mm-pipe-part
253@findex mm-pipe-part
254Offer to pipe the part to some process.
255
256@item mm-interactively-view-part
257@findex mm-interactively-view-part
258Prompt for a mailcap method to use to view the part.
259
260@end table
261
262
263@node Display Customization
264@section Display Customization
265
266@table @code
267
268@item mm-inline-media-tests
269@vindex mm-inline-media-tests
270This is an alist where the key is a @acronym{MIME} type, the second element
271is a function to display the part @dfn{inline} (i.e., inside Emacs), and
272the third element is a form to be @code{eval}ed to say whether the part
273can be displayed inline.
274
275This variable specifies whether a part @emph{can} be displayed inline,
276and, if so, how to do it. It does not say whether parts are
277@emph{actually} displayed inline.
278
279@item mm-inlined-types
280@vindex mm-inlined-types
281This, on the other hand, says what types are to be displayed inline, if
282they satisfy the conditions set by the variable above. It's a list of
283@acronym{MIME} media types.
284
285@item mm-automatic-display
286@vindex mm-automatic-display
287This is a list of types that are to be displayed ``automatically'', but
288only if the above variable allows it. That is, only inlinable parts can
289be displayed automatically.
290
291@item mm-automatic-external-display
292@vindex mm-automatic-external-display
293This is a list of types that will be displayed automatically in an
294external viewer.
295
296@item mm-keep-viewer-alive-types
297@vindex mm-keep-viewer-alive-types
298This is a list of media types for which the external viewer will not
299be killed when selecting a different article.
300
301@item mm-attachment-override-types
302@vindex mm-attachment-override-types
303Some @acronym{MIME} agents create parts that have a content-disposition of
304@samp{attachment}. This variable allows overriding that disposition and
305displaying the part inline. (Note that the disposition is only
306overridden if we are able to, and want to, display the part inline.)
307
308@item mm-discouraged-alternatives
309@vindex mm-discouraged-alternatives
310List of @acronym{MIME} types that are discouraged when viewing
311@samp{multipart/alternative}. Viewing agents are supposed to view the
312last possible part of a message, as that is supposed to be the richest.
313However, users may prefer other types instead, and this list says what
314types are most unwanted. If, for instance, @samp{text/html} parts are
315very unwanted, and @samp{text/richtext} parts are somewhat unwanted,
316you could say something like:
317
318@lisp
319(setq mm-discouraged-alternatives
320 '("text/html" "text/richtext")
321 mm-automatic-display
322 (remove "text/html" mm-automatic-display))
323@end lisp
324
325@item mm-inline-large-images
326@vindex mm-inline-large-images
f4dd4ae8 327When displaying inline images that are larger than the window, Emacs
23f87bed
MB
328does not enable scrolling, which means that you cannot see the whole
329image. To prevent this, the library tries to determine the image size
330before displaying it inline, and if it doesn't fit the window, the
331library will display it externally (e.g. with @samp{ImageMagick} or
332@samp{xv}). Setting this variable to @code{t} disables this check and
333makes the library display all inline images as inline, regardless of
334their size.
335
336@item mm-inline-override-types
337@vindex mm-inline-override-types
338@code{mm-inlined-types} may include regular expressions, for example to
339specify that all @samp{text/.*} parts be displayed inline. If a user
340prefers to have a type that matches such a regular expression be treated
341as an attachment, that can be accomplished by setting this variable to a
342list containing that type. For example assuming @code{mm-inlined-types}
343includes @samp{text/.*}, then including @samp{text/html} in this
344variable will cause @samp{text/html} parts to be treated as attachments.
345
346@item mm-text-html-renderer
347@vindex mm-text-html-renderer
348This selects the function used to render @acronym{HTML}. The predefined
349renderers are selected by the symbols @code{w3},
350@code{w3m}@footnote{See @uref{http://emacs-w3m.namazu.org/} for more
351information about emacs-w3m}, @code{links}, @code{lynx},
352@code{w3m-standalone} or @code{html2text}. If @code{nil} use an
353external viewer. You can also specify a function, which will be
354called with a @acronym{MIME} handle as the argument.
355
356@item mm-inline-text-html-with-images
357@vindex mm-inline-text-html-with-images
358Some @acronym{HTML} mails might have the trick of spammers using
359@samp{<img>} tags. It is likely to be intended to verify whether you
360have read the mail. You can prevent your personal informations from
361leaking by setting this option to @code{nil} (which is the default).
362It is currently ignored by Emacs/w3. For emacs-w3m, you may use the
363command @kbd{t} on the image anchor to show an image even if it is
364@code{nil}.@footnote{The command @kbd{T} will load all images. If you
365have set the option @code{w3m-key-binding} to @code{info}, use @kbd{i}
366or @kbd{I} instead.}
367
368@item mm-w3m-safe-url-regexp
369@vindex mm-w3m-safe-url-regexp
370A regular expression that matches safe URL names, i.e. URLs that are
371unlikely to leak personal information when rendering @acronym{HTML}
372email (the default value is @samp{\\`cid:}). If @code{nil} consider
373all URLs safe.
374
375@item mm-inline-text-html-with-w3m-keymap
376@vindex mm-inline-text-html-with-w3m-keymap
377You can use emacs-w3m command keys in the inlined text/html part by
378setting this option to non-@code{nil}. The default value is @code{t}.
379
380@item mm-external-terminal-program
381@vindex mm-external-terminal-program
382The program used to start an external terminal.
383
384@item mm-enable-external
385@vindex mm-enable-external
10ace8ea 386Indicate whether external @acronym{MIME} handlers should be used.
23f87bed 387
10ace8ea 388If @code{t}, all defined external @acronym{MIME} handlers are used. If
23f87bed
MB
389@code{nil}, files are saved to disk (@code{mailcap-save-binary-file}).
390If it is the symbol @code{ask}, you are prompted before the external
391@acronym{MIME} handler is invoked.
392
393When you launch an attachment through mailcap (@pxref{mailcap}) an
10ace8ea 394attempt is made to use a safe viewer with the safest options---this isn't
23f87bed
MB
395the case if you save it to disk and launch it in a different way
396(command line or double-clicking). Anyhow, if you want to be sure not
397to launch any external programs, set this variable to @code{nil} or
398@code{ask}.
399
400@end table
401
402@node Files and Directories
403@section Files and Directories
404
405@table @code
406
407@item mm-default-directory
408@vindex mm-default-directory
409The default directory for saving attachments. If @code{nil} use
410@code{default-directory}.
411
412@item mm-tmp-directory
413@vindex mm-tmp-directory
414Directory for storing temporary files.
415
416@item mm-file-name-rewrite-functions
417@vindex mm-file-name-rewrite-functions
418A list of functions used for rewriting file names of @acronym{MIME}
419parts. Each function is applied successively to the file name.
420Ready-made functions include
421
422@table @code
423@item mm-file-name-delete-control
424@findex mm-file-name-delete-control
425Delete all control characters.
426
427@item mm-file-name-delete-gotchas
428@findex mm-file-name-delete-gotchas
429Delete characters that could have unintended consequences when used
430with flawed shell scripts, i.e. @samp{|}, @samp{>} and @samp{<}; and
431@samp{-}, @samp{.} as the first character.
432
433@item mm-file-name-delete-whitespace
434@findex mm-file-name-delete-whitespace
435Remove all whitespace.
436
437@item mm-file-name-trim-whitespace
438@findex mm-file-name-trim-whitespace
439Remove leading and trailing whitespace.
440
441@item mm-file-name-collapse-whitespace
442@findex mm-file-name-collapse-whitespace
443Collapse multiple whitespace characters.
444
445@item mm-file-name-replace-whitespace
446@findex mm-file-name-replace-whitespace
447@vindex mm-file-name-replace-whitespace
448Replace whitespace with underscores. Set the variable
449@code{mm-file-name-replace-whitespace} to any other string if you do
450not like underscores.
451@end table
452
453The standard Emacs functions @code{capitalize}, @code{downcase},
454@code{upcase} and @code{upcase-initials} might also prove useful.
455
456@item mm-path-name-rewrite-functions
457@vindex mm-path-name-rewrite-functions
458List of functions used for rewriting the full file names of @acronym{MIME}
459parts. This is used when viewing parts externally, and is meant for
460transforming the absolute name so that non-compliant programs can find
461the file where it's saved.
462
463@end table
464
465@node New Viewers
466@section New Viewers
467
468Here's an example viewer for displaying @code{text/enriched} inline:
469
470@lisp
471(defun mm-display-enriched-inline (handle)
472 (let (text)
473 (with-temp-buffer
474 (mm-insert-part handle)
475 (save-window-excursion
476 (enriched-decode (point-min) (point-max))
477 (setq text (buffer-string))))
478 (mm-insert-inline handle text)))
479@end lisp
480
481We see that the function takes a @acronym{MIME} handle as its parameter. It
482then goes to a temporary buffer, inserts the text of the part, does some
483work on the text, stores the result, goes back to the buffer it was
484called from and inserts the result.
485
486The two important helper functions here are @code{mm-insert-part} and
487@code{mm-insert-inline}. The first function inserts the text of the
488handle in the current buffer. It handles charset and/or content
489transfer decoding. The second function just inserts whatever text you
490tell it to insert, but it also sets things up so that the text can be
491``undisplayed'' in a convenient manner.
492
493
494@node Composing
495@chapter Composing
496@cindex Composing
497@cindex MIME Composing
498@cindex MML
499@cindex MIME Meta Language
500
501Creating a @acronym{MIME} message is boring and non-trivial. Therefore,
502a library called @code{mml} has been defined that parses a language
503called @acronym{MML} (@acronym{MIME} Meta Language) and generates
504@acronym{MIME} messages.
505
506@findex mml-generate-mime
507The main interface function is @code{mml-generate-mime}. It will
508examine the contents of the current (narrowed-to) buffer and return a
509string containing the @acronym{MIME} message.
510
511@menu
512* Simple MML Example:: An example @acronym{MML} document.
513* MML Definition:: All valid @acronym{MML} elements.
514* Advanced MML Example:: Another example @acronym{MML} document.
515* Encoding Customization:: Variables that affect encoding.
516* Charset Translation:: How charsets are mapped from @sc{mule} to @acronym{MIME}.
517* Conversion:: Going from @acronym{MIME} to @acronym{MML} and vice versa.
518* Flowed text:: Soft and hard newlines.
519@end menu
520
521
522@node Simple MML Example
523@section Simple MML Example
524
525Here's a simple @samp{multipart/alternative}:
526
527@example
528<#multipart type=alternative>
529This is a plain text part.
530<#part type=text/enriched>
531<center>This is a centered enriched part</center>
532<#/multipart>
533@end example
534
535After running this through @code{mml-generate-mime}, we get this:
536
537@example
538Content-Type: multipart/alternative; boundary="=-=-="
539
540
541--=-=-=
542
543
544This is a plain text part.
545
546--=-=-=
547Content-Type: text/enriched
548
549
550<center>This is a centered enriched part</center>
551
552--=-=-=--
553@end example
554
555
556@node MML Definition
557@section MML Definition
558
559The @acronym{MML} language is very simple. It looks a bit like an SGML
560application, but it's not.
561
562The main concept of @acronym{MML} is the @dfn{part}. Each part can be of a
563different type or use a different charset. The way to delineate a part
564is with a @samp{<#part ...>} tag. Multipart parts can be introduced
565with the @samp{<#multipart ...>} tag. Parts are ended by the
566@samp{<#/part>} or @samp{<#/multipart>} tags. Parts started with the
567@samp{<#part ...>} tags are also closed by the next open tag.
568
569There's also the @samp{<#external ...>} tag. These introduce
570@samp{external/message-body} parts.
571
572Each tag can contain zero or more parameters on the form
573@samp{parameter=value}. The values may be enclosed in quotation marks,
574but that's not necessary unless the value contains white space. So
575@samp{filename=/home/user/#hello$^yes} is perfectly valid.
576
577The following parameters have meaning in @acronym{MML}; parameters that have no
578meaning are ignored. The @acronym{MML} parameter names are the same as the
579@acronym{MIME} parameter names; the things in the parentheses say which
580header it will be used in.
581
582@table @samp
583@item type
584The @acronym{MIME} type of the part (@code{Content-Type}).
585
586@item filename
587Use the contents of the file in the body of the part
588(@code{Content-Disposition}).
589
590@item charset
591The contents of the body of the part are to be encoded in the character
592set specified (@code{Content-Type}). @xref{Charset Translation}.
593
594@item name
595Might be used to suggest a file name if the part is to be saved
596to a file (@code{Content-Type}).
597
598@item disposition
599Valid values are @samp{inline} and @samp{attachment}
600(@code{Content-Disposition}).
601
602@item encoding
603Valid values are @samp{7bit}, @samp{8bit}, @samp{quoted-printable} and
604@samp{base64} (@code{Content-Transfer-Encoding}). @xref{Charset
605Translation}.
606
607@item description
608A description of the part (@code{Content-Description}).
609
610@item creation-date
611RFC822 date when the part was created (@code{Content-Disposition}).
612
613@item modification-date
614RFC822 date when the part was modified (@code{Content-Disposition}).
615
616@item read-date
617RFC822 date when the part was read (@code{Content-Disposition}).
618
619@item recipients
620Who to encrypt/sign the part to. This field is used to override any
621auto-detection based on the To/CC headers.
622
623@item sender
624Identity used to sign the part. This field is used to override the
625default key used.
626
627@item size
628The size (in octets) of the part (@code{Content-Disposition}).
629
630@item sign
631What technology to sign this @acronym{MML} part with (@code{smime}, @code{pgp}
632or @code{pgpmime})
633
634@item encrypt
635What technology to encrypt this @acronym{MML} part with (@code{smime},
636@code{pgp} or @code{pgpmime})
637
638@end table
639
640Parameters for @samp{text/plain}:
641
642@table @samp
643@item format
644Formatting parameter for the text, valid values include @samp{fixed}
645(the default) and @samp{flowed}. Normally you do not specify this
646manually, since it requires the textual body to be formatted in a
647special way described in RFC 2646. @xref{Flowed text}.
648@end table
649
650Parameters for @samp{application/octet-stream}:
651
652@table @samp
653@item type
654Type of the part; informal---meant for human readers
655(@code{Content-Type}).
656@end table
657
658Parameters for @samp{message/external-body}:
659
660@table @samp
661@item access-type
662A word indicating the supported access mechanism by which the file may
663be obtained. Values include @samp{ftp}, @samp{anon-ftp}, @samp{tftp},
664@samp{localfile}, and @samp{mailserver}. (@code{Content-Type}.)
665
666@item expiration
667The RFC822 date after which the file may no longer be fetched.
668(@code{Content-Type}.)
669
670@item size
671The size (in octets) of the file. (@code{Content-Type}.)
672
673@item permission
674Valid values are @samp{read} and @samp{read-write}
675(@code{Content-Type}).
676
677@end table
678
679Parameters for @samp{sign=smime}:
680
681@table @samp
682
683@item keyfile
684File containing key and certificate for signer.
685
686@end table
687
688Parameters for @samp{encrypt=smime}:
689
690@table @samp
691
692@item certfile
693File containing certificate for recipient.
694
695@end table
696
697
698@node Advanced MML Example
699@section Advanced MML Example
700
701Here's a complex multipart message. It's a @samp{multipart/mixed} that
702contains many parts, one of which is a @samp{multipart/alternative}.
703
704@example
705<#multipart type=mixed>
706<#part type=image/jpeg filename=~/rms.jpg disposition=inline>
707<#multipart type=alternative>
708This is a plain text part.
709<#part type=text/enriched name=enriched.txt>
710<center>This is a centered enriched part</center>
711<#/multipart>
712This is a new plain text part.
713<#part disposition=attachment>
714This plain text part is an attachment.
715<#/multipart>
716@end example
717
718And this is the resulting @acronym{MIME} message:
719
720@example
721Content-Type: multipart/mixed; boundary="=-=-="
722
723
724--=-=-=
725
726
727
728--=-=-=
729Content-Type: image/jpeg;
730 filename="~/rms.jpg"
731Content-Disposition: inline;
732 filename="~/rms.jpg"
733Content-Transfer-Encoding: base64
734
735/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRof
736Hh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/wAALCAAwADABAREA/8QAHwAA
737AQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQR
738BRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RF
739RkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ip
740qrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/9oACAEB
741AAA/AO/rifFHjldNuGsrDa0qcSSHkA+gHrXKw+LtWLrMb+RgTyhbr+HSug07xNqV9fQtZrNI
742AyiaE/NuBPOOOP0rvRNE880KOC8TbXXGCv1FPqjrF4LDR7u5L7SkTFT/ALWOP1xXgTuXfc7E
743sx6nua6rwp4IvvEM8chCxWxOdzn7wz6V9AaB4S07w9p5itow0rDLSY5Pt9K43xO66P4xs71m
7442QXiGCbA4yOVJ9+1aYORkdK434lyNH4ahCnG66VT9Nj15JFbPdX0MS43M4VQf5/yr2vSpLnw
7455ZW8dlCZ8KFXjOPX0/mK6rSPEGt3Angu44fNEReHYNvIH3TzXDeKNO8RX+kSX2ouZkicTIOc
746L+g7E810ulFjpVtv3bwgB3HJyK5L4quY/C9sVxk3ij/xx6850u7t1mtp/wDlpEw3An3Jr3Dw
74734gsbWza4nBlhC5LDsaW6+IFgupQyCF3iHH7gA7c9R9ay7zx6t7aX9jHC4smhfBkGCvHGfrm
748tLQ7hbnRrV1GPkAP1x1/Hr+Ncr8Vzjwrbf8AX6v/AKA9eQRyYlQk8Yx9K6XTNbkgia2ciSIn
7497p5Ga9Atte0LTLKO6it4i7dVRFJDcZ4PvXN+JvEMF9bILVGXJLSZ4zkjivRPDaeX4b08HOTC
750pOffmua+KkbS+GLVUGT9tT/0B68eeIpIFYjB70+OOVXyoOM9+M1eaWeCLzHPyHGO/NVWvJJm
751jQ8KGH1NfQWhXSXmh2c8eArRLwO3HSv/2Q==
752
753--=-=-=
754Content-Type: multipart/alternative; boundary="==-=-="
755
756
757--==-=-=
758
759
760This is a plain text part.
761
762--==-=-=
763Content-Type: text/enriched;
764 name="enriched.txt"
765
766
767<center>This is a centered enriched part</center>
768
769--==-=-=--
770
771--=-=-=
772
773This is a new plain text part.
774
775--=-=-=
776Content-Disposition: attachment
777
778
779This plain text part is an attachment.
780
781--=-=-=--
782@end example
783
784@node Encoding Customization
785@section Encoding Customization
786
787@table @code
788
789@item mm-body-charset-encoding-alist
790@vindex mm-body-charset-encoding-alist
791Mapping from @acronym{MIME} charset to encoding to use. This variable is
792usually used except, e.g., when other requirements force a specific
793encoding (digitally signed messages require 7bit encodings). The
3d80e1a2 794default is
23f87bed
MB
795
796@lisp
797((iso-2022-jp . 7bit)
798 (iso-2022-jp-2 . 7bit)
799 (utf-16 . base64)
800 (utf-16be . base64)
801 (utf-16le . base64))
802@end lisp
803
804As an example, if you do not want to have ISO-8859-1 characters
805quoted-printable encoded, you may add @code{(iso-8859-1 . 8bit)} to
806this variable. You can override this setting on a per-message basis
807by using the @code{encoding} @acronym{MML} tag (@pxref{MML Definition}).
808
809@item mm-coding-system-priorities
810@vindex mm-coding-system-priorities
811Prioritize coding systems to use for outgoing messages. The default
f3f01d5d
MB
812is @code{nil}, which means to use the defaults in Emacs, but is
813@code{(iso-8859-1 iso-2022-jp iso-2022-jp-2 shift_jis utf-8)} when
814running Emacs in the Japanese language environment. It is a list of
0683d241
MB
815coding system symbols (aliases of coding systems are also allowed, use
816@kbd{M-x describe-coding-system} to make sure you are specifying correct
817coding system names). For example, if you have configured Emacs
23f87bed
MB
818to prefer UTF-8, but wish that outgoing messages should be sent in
819ISO-8859-1 if possible, you can set this variable to
0683d241 820@code{(iso-8859-1)}. You can override this setting on a per-message
23f87bed
MB
821basis by using the @code{charset} @acronym{MML} tag (@pxref{MML Definition}).
822
823@item mm-content-transfer-encoding-defaults
824@vindex mm-content-transfer-encoding-defaults
825Mapping from @acronym{MIME} types to encoding to use. This variable is usually
826used except, e.g., when other requirements force a safer encoding
827(digitally signed messages require 7bit encoding). Besides the normal
828@acronym{MIME} encodings, @code{qp-or-base64} may be used to indicate that for
829each case the most efficient of quoted-printable and base64 should be
830used.
831
832@code{qp-or-base64} has another effect. It will fold long lines so that
833MIME parts may not be broken by MTA. So do @code{quoted-printable} and
834@code{base64}.
835
836Note that it affects body encoding only when a part is a raw forwarded
837message (which will be made by @code{gnus-summary-mail-forward} with the
838arg 2 for example) or is neither the @samp{text/*} type nor the
839@samp{message/*} type. Even though in those cases, you can override
840this setting on a per-message basis by using the @code{encoding}
841@acronym{MML} tag (@pxref{MML Definition}).
842
843@item mm-use-ultra-safe-encoding
844@vindex mm-use-ultra-safe-encoding
845When this is non-@code{nil}, it means that textual parts are encoded as
846quoted-printable if they contain lines longer than 76 characters or
847starting with "From " in the body. Non-7bit encodings (8bit, binary)
848are generally disallowed. This reduce the probability that a non-8bit
849clean MTA or MDA changes the message. This should never be set
850directly, but bound by other functions when necessary (e.g., when
851encoding messages that are to be digitally signed).
852
853@end table
854
855@node Charset Translation
856@section Charset Translation
857@cindex charsets
858
859During translation from @acronym{MML} to @acronym{MIME}, for each
860@acronym{MIME} part which has been composed inside Emacs, an appropriate
861charset has to be chosen.
862
863@vindex mail-parse-charset
864If you are running a non-@sc{mule} Emacs, this process is simple: If the
865part contains any non-@acronym{ASCII} (8-bit) characters, the @acronym{MIME} charset
866given by @code{mail-parse-charset} (a symbol) is used. (Never set this
867variable directly, though. If you want to change the default charset,
868please consult the documentation of the package which you use to process
869@acronym{MIME} messages.
870@xref{Various Message Variables, , Various Message Variables, message,
871 Message Manual}, for example.)
872If there are only @acronym{ASCII} characters, the @acronym{MIME} charset US-ASCII is
873used, of course.
874
875@cindex MULE
876@cindex UTF-8
877@cindex Unicode
878@vindex mm-mime-mule-charset-alist
879Things are slightly more complicated when running Emacs with @sc{mule}
880support. In this case, a list of the @sc{mule} charsets used in the
f3f01d5d
MB
881part is obtained, and the @sc{mule} charsets are translated to
882@acronym{MIME} charsets by consulting the table provided by Emacs itself
883or the variable @code{mm-mime-mule-charset-alist} for XEmacs.
23f87bed
MB
884If this results in a single @acronym{MIME} charset, this is used to encode
885the part. But if the resulting list of @acronym{MIME} charsets contains more
886than one element, two things can happen: If it is possible to encode the
887part via UTF-8, this charset is used. (For this, Emacs must support
888the @code{utf-8} coding system, and the part must consist entirely of
889characters which have Unicode counterparts.) If UTF-8 is not available
890for some reason, the part is split into several ones, so that each one
891can be encoded with a single @acronym{MIME} charset. The part can only be
892split at line boundaries, though---if more than one @acronym{MIME} charset is
893required to encode a single line, it is not possible to encode the part.
894
895When running Emacs with @sc{mule} support, the preferences for which
896coding system to use is inherited from Emacs itself. This means that
897if Emacs is set up to prefer UTF-8, it will be used when encoding
898messages. You can modify this by altering the
899@code{mm-coding-system-priorities} variable though (@pxref{Encoding
900Customization}).
901
902The charset to be used can be overridden by setting the @code{charset}
903@acronym{MML} tag (@pxref{MML Definition}) when composing the message.
904
905The encoding of characters (quoted-printable, 8bit etc) is orthogonal
906to the discussion here, and is controlled by the variables
907@code{mm-body-charset-encoding-alist} and
908@code{mm-content-transfer-encoding-defaults} (@pxref{Encoding
909Customization}).
910
911@node Conversion
912@section Conversion
913
914@findex mime-to-mml
915A (multipart) @acronym{MIME} message can be converted to @acronym{MML}
916with the @code{mime-to-mml} function. It works on the message in the
917current buffer, and substitutes @acronym{MML} markup for @acronym{MIME}
918boundaries. Non-textual parts do not have their contents in the buffer,
919but instead have the contents in separate buffers that are referred to
920from the @acronym{MML} tags.
921
922@findex mml-to-mime
923An @acronym{MML} message can be converted back to @acronym{MIME} by the
924@code{mml-to-mime} function.
925
926These functions are in certain senses ``lossy''---you will not get back
927an identical message if you run @code{mime-to-mml} and then
928@code{mml-to-mime}. Not only will trivial things like the order of the
929headers differ, but the contents of the headers may also be different.
930For instance, the original message may use base64 encoding on text,
931while @code{mml-to-mime} may decide to use quoted-printable encoding, and
932so on.
933
934In essence, however, these two functions should be the inverse of each
935other. The resulting contents of the message should remain equivalent,
936if not identical.
dd8839b0 937
dd8839b0 938
23f87bed
MB
939@node Flowed text
940@section Flowed text
941@cindex format=flowed
dd8839b0 942
23f87bed
MB
943The Emacs @acronym{MIME} library will respect the @code{use-hard-newlines}
944variable (@pxref{Hard and Soft Newlines, ,Hard and Soft Newlines,
945emacs, Emacs Manual}) when encoding a message, and the
946``format=flowed'' Content-Type parameter when decoding a message.
947
948On encoding text, regardless of @code{use-hard-newlines}, lines
949terminated by soft newline characters are filled together and wrapped
950after the column decided by @code{fill-flowed-encode-column}.
951Quotation marks (matching @samp{^>* ?}) are respected. The variable
952controls how the text will look in a client that does not support
953flowed text, the default is to wrap after 66 characters. If hard
954newline characters are not present in the buffer, no flow encoding
955occurs.
956
957On decoding flowed text, lines with soft newline characters are filled
958together and wrapped after the column decided by
959@code{fill-flowed-display-column}. The default is to wrap after
960@code{fill-column}.
dd8839b0 961
dd8839b0 962
dd8839b0
DL
963
964
965@node Interface Functions
966@chapter Interface Functions
967@cindex interface functions
968@cindex mail-parse
969
970The @code{mail-parse} library is an abstraction over the actual
971low-level libraries that are described in the next chapter.
972
973Standards change, and so programs have to change to fit in the new
974mold. For instance, RFC2045 describes a syntax for the
23f87bed 975@code{Content-Type} header that only allows @acronym{ASCII} characters in the
dd8839b0 976parameter list. RFC2231 expands on RFC2045 syntax to provide a scheme
23f87bed 977for continuation headers and non-@acronym{ASCII} characters.
dd8839b0
DL
978
979The traditional way to deal with this is just to update the library
980functions to parse the new syntax. However, this is sometimes the wrong
981thing to do. In some instances it may be vital to be able to understand
982both the old syntax as well as the new syntax, and if there is only one
983library, one must choose between the old version of the library and the
984new version of the library.
985
23f87bed
MB
986The Emacs @acronym{MIME} library takes a different tack. It defines a
987series of low-level libraries (@file{rfc2047.el}, @file{rfc2231.el}
988and so on) that parses strictly according to the corresponding
989standard. However, normal programs would not use the functions
990provided by these libraries directly, but instead use the functions
991provided by the @code{mail-parse} library. The functions in this
992library are just aliases to the corresponding functions in the latest
993low-level libraries. Using this scheme, programs get a consistent
994interface they can use, and library developers are free to create
995write code that handles new standards.
dd8839b0
DL
996
997The following functions are defined by this library:
998
23f87bed
MB
999@table @code
1000@item mail-header-parse-content-type
1001@findex mail-header-parse-content-type
1002Parse a @code{Content-Type} header and return a list on the following
1003format:
dd8839b0
DL
1004
1005@lisp
1006("type/subtype"
1007 (attribute1 . value1)
1008 (attribute2 . value2)
23f87bed 1009 ...)
dd8839b0
DL
1010@end lisp
1011
1012Here's an example:
1013
1014@example
1015(mail-header-parse-content-type
1016 "image/gif; name=\"b980912.gif\"")
1017@result{} ("image/gif" (name . "b980912.gif"))
1018@end example
1019
23f87bed
MB
1020@item mail-header-parse-content-disposition
1021@findex mail-header-parse-content-disposition
1022Parse a @code{Content-Disposition} header and return a list on the same
1023format as the function above.
dd8839b0 1024
23f87bed 1025@item mail-content-type-get
dd8839b0 1026@findex mail-content-type-get
23f87bed
MB
1027Takes two parameters---a list on the format above, and an attribute.
1028Returns the value of the attribute.
dd8839b0
DL
1029
1030@example
1031(mail-content-type-get
1032 '("image/gif" (name . "b980912.gif")) 'name)
1033@result{} "b980912.gif"
1034@end example
1035
23f87bed
MB
1036@item mail-header-encode-parameter
1037@findex mail-header-encode-parameter
1038Takes a parameter string and returns an encoded version of the string.
1039This is used for parameters in headers like @code{Content-Type} and
1040@code{Content-Disposition}.
dd8839b0 1041
23f87bed
MB
1042@item mail-header-remove-comments
1043@findex mail-header-remove-comments
1044Return a comment-free version of a header.
dd8839b0
DL
1045
1046@example
1047(mail-header-remove-comments
1048 "Gnus/5.070027 (Pterodactyl Gnus v0.27) (Finnish Landrace)")
1049@result{} "Gnus/5.070027 "
1050@end example
1051
23f87bed
MB
1052@item mail-header-remove-whitespace
1053@findex mail-header-remove-whitespace
1054Remove linear white space from a header. Space inside quoted strings
1055and comments is preserved.
dd8839b0
DL
1056
1057@example
1058(mail-header-remove-whitespace
1059 "image/gif; name=\"Name with spaces\"")
1060@result{} "image/gif;name=\"Name with spaces\""
1061@end example
1062
23f87bed
MB
1063@item mail-header-get-comment
1064@findex mail-header-get-comment
1065Return the last comment in a header.
dd8839b0
DL
1066
1067@example
1068(mail-header-get-comment
1069 "Gnus/5.070027 (Pterodactyl Gnus v0.27) (Finnish Landrace)")
1070@result{} "Finnish Landrace"
1071@end example
1072
23f87bed
MB
1073@item mail-header-parse-address
1074@findex mail-header-parse-address
1075Parse an address and return a list containing the mailbox and the
1076plaintext name.
dd8839b0
DL
1077
1078@example
1079(mail-header-parse-address
1080 "Hrvoje Niksic <hniksic@@srce.hr>")
1081@result{} ("hniksic@@srce.hr" . "Hrvoje Niksic")
1082@end example
1083
23f87bed
MB
1084@item mail-header-parse-addresses
1085@findex mail-header-parse-addresses
1086Parse a string with list of addresses and return a list of elements like
1087the one described above.
dd8839b0
DL
1088
1089@example
1090(mail-header-parse-addresses
1091 "Hrvoje Niksic <hniksic@@srce.hr>, Steinar Bang <sb@@metis.no>")
1092@result{} (("hniksic@@srce.hr" . "Hrvoje Niksic")
1093 ("sb@@metis.no" . "Steinar Bang"))
1094@end example
1095
23f87bed
MB
1096@item mail-header-parse-date
1097@findex mail-header-parse-date
1098Parse a date string and return an Emacs time structure.
dd8839b0 1099
23f87bed
MB
1100@item mail-narrow-to-head
1101@findex mail-narrow-to-head
dd8839b0
DL
1102Narrow the buffer to the header section of the buffer. Point is placed
1103at the beginning of the narrowed buffer.
1104
23f87bed
MB
1105@item mail-header-narrow-to-field
1106@findex mail-header-narrow-to-field
1107Narrow the buffer to the header under point. Understands continuation
1108headers.
1109
1110@item mail-header-fold-field
1111@findex mail-header-fold-field
1112Fold the header under point.
1113
1114@item mail-header-unfold-field
1115@findex mail-header-unfold-field
1116Unfold the header under point.
dd8839b0 1117
23f87bed
MB
1118@item mail-header-field-value
1119@findex mail-header-field-value
1120Return the value of the field under point.
dd8839b0 1121
23f87bed
MB
1122@item mail-encode-encoded-word-region
1123@findex mail-encode-encoded-word-region
1124Encode the non-@acronym{ASCII} words in the region. For instance,
1125