(Fsystem_process_attributes): Doc fix.
[bpt/emacs.git] / doc / misc / emacs-mime.texi
CommitLineData
4009494e
GM
1\input texinfo
2
db78a8cb 3@setfilename ../../info/emacs-mime
4009494e
GM
4@settitle Emacs MIME Manual
5@synindex fn cp
6@synindex vr cp
7@synindex pg cp
8
9@copying
10This file documents the Emacs MIME interface functionality.
11
12Copyright @copyright{} 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
3f548a7c 132006, 2007, 2008 Free Software Foundation, Inc.
4009494e
GM
14
15@quotation
16Permission is granted to copy, distribute and/or modify this document
17under the terms of the GNU Free Documentation License, Version 1.2 or
18any later version published by the Free Software Foundation; with no
debf4439
GM
19Invariant Sections, with the Front-Cover texts being ``A GNU Manual'',
20and with the Back-Cover Texts as in (a) below. A copy of the license
21is included in the section entitled ``GNU Free Documentation License''.
4009494e 22
6f093307
GM
23(a) The FSF's Back-Cover Text is: ``You have the freedom to copy and
24modify this GNU manual. Buying copies from the FSF supports it in
25developing GNU and promoting software freedom.''
4009494e
GM
26@end quotation
27@end copying
28
29@c Node ``Interface Functions'' uses Latin-1 characters
30@documentencoding ISO-8859-1
31
32@dircategory Emacs
33@direntry
34* Emacs MIME: (emacs-mime). Emacs MIME de/composition library.
35@end direntry
36@iftex
37@finalout
38@end iftex
39@setchapternewpage odd
40
41@titlepage
42@title Emacs MIME Manual
43
44@author by Lars Magne Ingebrigtsen
45@page
46@vskip 0pt plus 1filll
47@insertcopying
48@end titlepage
49
50@node Top
51@top Emacs MIME
52
53This manual documents the libraries used to compose and display
54@acronym{MIME} messages.
55
56This manual is directed at users who want to modify the behavior of
57the @acronym{MIME} encoding/decoding process or want a more detailed
58picture of how the Emacs @acronym{MIME} library works, and people who want
59to write functions and commands that manipulate @acronym{MIME} elements.
60
61@acronym{MIME} is short for @dfn{Multipurpose Internet Mail Extensions}.
62This standard is documented in a number of RFCs; mainly RFC2045 (Format
63of Internet Message Bodies), RFC2046 (Media Types), RFC2047 (Message
64Header Extensions for Non-@acronym{ASCII} Text), RFC2048 (Registration
65Procedures), RFC2049 (Conformance Criteria and Examples). It is highly
66recommended that anyone who intends writing @acronym{MIME}-compliant software
67read at least RFC2045 and RFC2047.
68
69@menu
70* Decoding and Viewing:: A framework for decoding and viewing.
71* Composing:: @acronym{MML}; a language for describing @acronym{MIME} parts.
72* Interface Functions:: An abstraction over the basic functions.
73* Basic Functions:: Utility and basic parsing functions.
74* Standards:: A summary of RFCs and working documents used.
75* GNU Free Documentation License:: The license for this documentation.
76* Index:: Function and variable index.
77@end menu
78
79
80@node Decoding and Viewing
81@chapter Decoding and Viewing
82
83This chapter deals with decoding and viewing @acronym{MIME} messages on a
84higher level.
85
86The main idea is to first analyze a @acronym{MIME} article, and then allow
87other programs to do things based on the list of @dfn{handles} that are
88returned as a result of this analysis.
89
90@menu
91* Dissection:: Analyzing a @acronym{MIME} message.
92* Non-MIME:: Analyzing a non-@acronym{MIME} message.
93* Handles:: Handle manipulations.
94* Display:: Displaying handles.
95* Display Customization:: Variables that affect display.
96* Files and Directories:: Saving and naming attachments.
97* New Viewers:: How to write your own viewers.
98@end menu
99
100
101@node Dissection
102@section Dissection
103
104The @code{mm-dissect-buffer} is the function responsible for dissecting
105a @acronym{MIME} article. If given a multipart message, it will recursively
106descend the message, following the structure, and return a tree of
107@acronym{MIME} handles that describes the structure of the message.
108
109@node Non-MIME
110@section Non-MIME
111@vindex mm-uu-configure-list
112
113Gnus also understands some non-@acronym{MIME} attachments, such as
114postscript, uuencode, binhex, yenc, shar, forward, gnatsweb, pgp,
115diff. Each of these features can be disabled by add an item into
116@code{mm-uu-configure-list}. For example,
117
118@lisp
119(require 'mm-uu)
120(add-to-list 'mm-uu-configure-list '(pgp-signed . disabled))
121@end lisp
122
123@table @code
124@item postscript
125@findex postscript
126PostScript file.
127
128@item uu
129@findex uu
130Uuencoded file.
131
132@item binhex
133@findex binhex
134Binhex encoded file.
135
136@item yenc
137@findex yenc
138Yenc encoded file.
139
140@item shar
141@findex shar
142Shar archive file.
143
144@item forward
145@findex forward
146Non-@acronym{MIME} forwarded message.
147
148@item gnatsweb
149@findex gnatsweb
150Gnatsweb attachment.
151
152@item pgp-signed
153@findex pgp-signed
154@acronym{PGP} signed clear text.
155
156@item pgp-encrypted
157@findex pgp-encrypted
158@acronym{PGP} encrypted clear text.
159
160@item pgp-key
161@findex pgp-key
162@acronym{PGP} public keys.
163
164@item emacs-sources
165@findex emacs-sources
166@vindex mm-uu-emacs-sources-regexp
167Emacs source code. This item works only in the groups matching
168@code{mm-uu-emacs-sources-regexp}.
169
170@item diff
171@vindex diff
172@vindex mm-uu-diff-groups-regexp
173Patches. This is intended for groups where diffs of committed files
174are automatically sent to. It only works in groups matching
175@code{mm-uu-diff-groups-regexp}.
176
01c52d31
MB
177@item verbatim-marks
178@cindex verbatim-marks
179Slrn-style verbatim marks.
180
181@item LaTeX
182@cindex LaTeX
183LaTeX documents. It only works in groups matching
184@code{mm-uu-tex-groups-regexp}.
185
4009494e
GM
186@end table
187
01c52d31
MB
188@cindex text/x-verbatim
189@c Is @vindex suitable for a face?
190@vindex mm-uu-extract
191Some inlined non-@acronym{MIME} attachments are displayed using the face
192@code{mm-uu-extract}. By default, no @acronym{MIME} button for these
193parts is displayed. You can force displaying a button using @kbd{K b}
194(@code{gnus-summary-display-buttonized}) or add @code{text/x-verbatim}
195to @code{gnus-buttonized-mime-types}, @xref{MIME Commands, ,MIME
196Commands, gnus, Gnus Manual}.
197
4009494e
GM
198@node Handles
199@section Handles
200
201A @acronym{MIME} handle is a list that fully describes a @acronym{MIME}
202component.
203
204The following macros can be used to access elements in a handle:
205
206@table @code
207@item mm-handle-buffer
208@findex mm-handle-buffer
209Return the buffer that holds the contents of the undecoded @acronym{MIME}
210part.
211
212@item mm-handle-type
213@findex mm-handle-type
214Return the parsed @code{Content-Type} of the part.
215
216@item mm-handle-encoding
217@findex mm-handle-encoding
218Return the @code{Content-Transfer-Encoding} of the part.
219
220@item mm-handle-undisplayer
221@findex mm-handle-undisplayer
222Return the object that can be used to remove the displayed part (if it
223has been displayed).
224
225@item mm-handle-set-undisplayer
226@findex mm-handle-set-undisplayer
227Set the undisplayer object.
228
229@item mm-handle-disposition
230@findex mm-handle-disposition
231Return the parsed @code{Content-Disposition} of the part.
232
233@item mm-get-content-id
234Returns the handle(s) referred to by @code{Content-ID}.
235
236@end table
237
238
239@node Display
240@section Display
241
242Functions for displaying, removing and saving.
243
244@table @code
245@item mm-display-part
246@findex mm-display-part
247Display the part.
248
249@item mm-remove-part
250@findex mm-remove-part
251Remove the part (if it has been displayed).
252
253@item mm-inlinable-p
254@findex mm-inlinable-p
255Say whether a @acronym{MIME} type can be displayed inline.
256
257@item mm-automatic-display-p
258@findex mm-automatic-display-p
259Say whether a @acronym{MIME} type should be displayed automatically.
260
261@item mm-destroy-part
262@findex mm-destroy-part
263Free all resources occupied by a part.
264
265@item mm-save-part
266@findex mm-save-part
267Offer to save the part in a file.
268
269@item mm-pipe-part
270@findex mm-pipe-part
271Offer to pipe the part to some process.
272
273@item mm-interactively-view-part
274@findex mm-interactively-view-part
275Prompt for a mailcap method to use to view the part.
276
277@end table
278
279
280@node Display Customization
281@section Display Customization
282
283@table @code
284
285@item mm-inline-media-tests
286@vindex mm-inline-media-tests
287This is an alist where the key is a @acronym{MIME} type, the second element
288is a function to display the part @dfn{inline} (i.e., inside Emacs), and
289the third element is a form to be @code{eval}ed to say whether the part
290can be displayed inline.
291
292This variable specifies whether a part @emph{can} be displayed inline,
293and, if so, how to do it. It does not say whether parts are
294@emph{actually} displayed inline.
295
296@item mm-inlined-types
297@vindex mm-inlined-types
298This, on the other hand, says what types are to be displayed inline, if
299they satisfy the conditions set by the variable above. It's a list of
300@acronym{MIME} media types.
301
302@item mm-automatic-display
303@vindex mm-automatic-display
304This is a list of types that are to be displayed ``automatically'', but
305only if the above variable allows it. That is, only inlinable parts can
306be displayed automatically.
307
308@item mm-automatic-external-display
309@vindex mm-automatic-external-display
310This is a list of types that will be displayed automatically in an
311external viewer.
312
313@item mm-keep-viewer-alive-types
314@vindex mm-keep-viewer-alive-types
315This is a list of media types for which the external viewer will not
316be killed when selecting a different article.
317
318@item mm-attachment-override-types
319@vindex mm-attachment-override-types
320Some @acronym{MIME} agents create parts that have a content-disposition of
321@samp{attachment}. This variable allows overriding that disposition and
322displaying the part inline. (Note that the disposition is only
323overridden if we are able to, and want to, display the part inline.)
324
325@item mm-discouraged-alternatives
326@vindex mm-discouraged-alternatives
327List of @acronym{MIME} types that are discouraged when viewing
328@samp{multipart/alternative}. Viewing agents are supposed to view the
329last possible part of a message, as that is supposed to be the richest.
330However, users may prefer other types instead, and this list says what
331types are most unwanted. If, for instance, @samp{text/html} parts are
332very unwanted, and @samp{text/richtext} parts are somewhat unwanted,
333you could say something like:
334
335@lisp
336(setq mm-discouraged-alternatives
337 '("text/html" "text/richtext")
338 mm-automatic-display
339 (remove "text/html" mm-automatic-display))
340@end lisp
341
342Adding @code{"image/.*"} might also be useful. Spammers use images as
343the preferred part of @samp{multipart/alternative} messages, so you might
344not notice there are other parts. See also
345@code{gnus-buttonized-mime-types}, @ref{MIME Commands, ,MIME Commands,
346gnus, Gnus Manual}. After adding @code{"multipart/alternative"} to
347@code{gnus-buttonized-mime-types} you can choose manually which
348alternative you'd like to view. For example, you can set those
349variables like:
350
351@lisp
352(setq gnus-buttonized-mime-types
353 '("multipart/alternative" "multipart/signed")
354 mm-discouraged-alternatives
355 '("text/html" "image/.*"))
356@end lisp
357
358In this case, Gnus will display radio buttons for such a kind of spam
359message as follows:
360
361@example
3621. (*) multipart/alternative ( ) image/gif
363
3642. (*) text/plain ( ) text/html
365@end example
366
367@item mm-inline-large-images
368@vindex mm-inline-large-images
369When displaying inline images that are larger than the window, Emacs
370does not enable scrolling, which means that you cannot see the whole
371image. To prevent this, the library tries to determine the image size
372before displaying it inline, and if it doesn't fit the window, the
373library will display it externally (e.g. with @samp{ImageMagick} or
374@samp{xv}). Setting this variable to @code{t} disables this check and
375makes the library display all inline images as inline, regardless of
376their size.
377
378@item mm-inline-override-types
379@vindex mm-inline-override-types
380@code{mm-inlined-types} may include regular expressions, for example to
381specify that all @samp{text/.*} parts be displayed inline. If a user
382prefers to have a type that matches such a regular expression be treated
383as an attachment, that can be accomplished by setting this variable to a
384list containing that type. For example assuming @code{mm-inlined-types}
385includes @samp{text/.*}, then including @samp{text/html} in this
386variable will cause @samp{text/html} parts to be treated as attachments.
387
388@item mm-text-html-renderer
389@vindex mm-text-html-renderer
390This selects the function used to render @acronym{HTML}. The predefined
391renderers are selected by the symbols @code{w3},
392@code{w3m}@footnote{See @uref{http://emacs-w3m.namazu.org/} for more
393information about emacs-w3m}, @code{links}, @code{lynx},
394@code{w3m-standalone} or @code{html2text}. If @code{nil} use an
395external viewer. You can also specify a function, which will be
396called with a @acronym{MIME} handle as the argument.
397
398@item mm-inline-text-html-with-images
399@vindex mm-inline-text-html-with-images
400Some @acronym{HTML} mails might have the trick of spammers using
401@samp{<img>} tags. It is likely to be intended to verify whether you
402have read the mail. You can prevent your personal informations from
403leaking by setting this option to @code{nil} (which is the default).
404It is currently ignored by Emacs/w3. For emacs-w3m, you may use the
405command @kbd{t} on the image anchor to show an image even if it is
406@code{nil}.@footnote{The command @kbd{T} will load all images. If you
407have set the option @code{w3m-key-binding} to @code{info}, use @kbd{i}
408or @kbd{I} instead.}
409
410@item mm-w3m-safe-url-regexp
411@vindex mm-w3m-safe-url-regexp
412A regular expression that matches safe URL names, i.e. URLs that are
413unlikely to leak personal information when rendering @acronym{HTML}
414email (the default value is @samp{\\`cid:}). If @code{nil} consider
415all URLs safe.
416
417@item mm-inline-text-html-with-w3m-keymap
418@vindex mm-inline-text-html-with-w3m-keymap
419You can use emacs-w3m command keys in the inlined text/html part by
420setting this option to non-@code{nil}. The default value is @code{t}.
421
422@item mm-external-terminal-program
423@vindex mm-external-terminal-program
424The program used to start an external terminal.
425
426@item mm-enable-external
427@vindex mm-enable-external
428Indicate whether external @acronym{MIME} handlers should be used.
429
430If @code{t}, all defined external @acronym{MIME} handlers are used. If
431@code{nil}, files are saved to disk (@code{mailcap-save-binary-file}).
432If it is the symbol @code{ask}, you are prompted before the external
433@acronym{MIME} handler is invoked.
434
435When you launch an attachment through mailcap (@pxref{mailcap}) an
436attempt is made to use a safe viewer with the safest options---this isn't
437the case if you save it to disk and launch it in a different way
438(command line or double-clicking). Anyhow, if you want to be sure not
439to launch any external programs, set this variable to @code{nil} or
440@code{ask}.
441
442@end table
443
444@node Files and Directories
445@section Files and Directories
446
447@table @code
448
449@item mm-default-directory
450@vindex mm-default-directory
451The default directory for saving attachments. If @code{nil} use
452@code{default-directory}.
453
454@item mm-tmp-directory
455@vindex mm-tmp-directory
456Directory for storing temporary files.
457
458@item mm-file-name-rewrite-functions
459@vindex mm-file-name-rewrite-functions
460A list of functions used for rewriting file names of @acronym{MIME}
461parts. Each function is applied successively to the file name.
462Ready-made functions include
463
464@table @code
465@item mm-file-name-delete-control
466@findex mm-file-name-delete-control
467Delete all control characters.
468
469@item mm-file-name-delete-gotchas
470@findex mm-file-name-delete-gotchas
471Delete characters that could have unintended consequences when used
472with flawed shell scripts, i.e. @samp{|}, @samp{>} and @samp{<}; and
473@samp{-}, @samp{.} as the first character.
474
475@item mm-file-name-delete-whitespace
476@findex mm-file-name-delete-whitespace
477Remove all whitespace.
478
479@item mm-file-name-trim-whitespace
480@findex mm-file-name-trim-whitespace
481Remove leading and trailing whitespace.
482
483@item mm-file-name-collapse-whitespace
484@findex mm-file-name-collapse-whitespace
485Collapse multiple whitespace characters.
486
487@item mm-file-name-replace-whitespace
488@findex mm-file-name-replace-whitespace
489@vindex mm-file-name-replace-whitespace
490Replace whitespace with underscores. Set the variable
491@code{mm-file-name-replace-whitespace} to any other string if you do
492not like underscores.
493@end table
494
495The standard Emacs functions @code{capitalize}, @code{downcase},
496@code{upcase} and @code{upcase-initials} might also prove useful.
497
498@item mm-path-name-rewrite-functions
499@vindex mm-path-name-rewrite-functions
500List of functions used for rewriting the full file names of @acronym{MIME}
501parts. This is used when viewing parts externally, and is meant for
502transforming the absolute name so that non-compliant programs can find
503the file where it's saved.
504
505@end table
506
507@node New Viewers
508@section New Viewers
509
510Here's an example viewer for displaying @code{text/enriched} inline:
511
512@lisp
513(defun mm-display-enriched-inline (handle)
514 (let (text)
515 (with-temp-buffer
516 (mm-insert-part handle)
517 (save-window-excursion
518 (enriched-decode (point-min) (point-max))
519 (setq text (buffer-string))))
520 (mm-insert-inline handle text)))
521@end lisp
522
523We see that the function takes a @acronym{MIME} handle as its parameter. It
524then goes to a temporary buffer, inserts the text of the part, does some
525work on the text, stores the result, goes back to the buffer it was
526called from and inserts the result.
527
528The two important helper functions here are @code{mm-insert-part} and
529@code{mm-insert-inline}. The first function inserts the text of the
530handle in the current buffer. It handles charset and/or content
531transfer decoding. The second function just inserts whatever text you
532tell it to insert, but it also sets things up so that the text can be
533``undisplayed'' in a convenient manner.
534
535
536@node Composing
537@chapter Composing
538@cindex Composing
539@cindex MIME Composing
540@cindex MML
541@cindex MIME Meta Language
542
543Creating a @acronym{MIME} message is boring and non-trivial. Therefore,
544a library called @code{mml} has been defined that parses a language
545called @acronym{MML} (@acronym{MIME} Meta Language) and generates
546@acronym{MIME} messages.
547
548@findex mml-generate-mime
549The main interface function is @code{mml-generate-mime}. It will
550examine the contents of the current (narrowed-to) buffer and return a
551string containing the @acronym{MIME} message.
552
553@menu
554* Simple MML Example:: An example @acronym{MML} document.
555* MML Definition:: All valid @acronym{MML} elements.
556* Advanced MML Example:: Another example @acronym{MML} document.
557* Encoding Customization:: Variables that affect encoding.
558* Charset Translation:: How charsets are mapped from @sc{mule} to @acronym{MIME}.
559* Conversion:: Going from @acronym{MIME} to @acronym{MML} and vice versa.
560* Flowed text:: Soft and hard newlines.
561@end menu
562
563
564@node Simple MML Example
565@section Simple MML Example
566
567Here's a simple @samp{multipart/alternative}:
568
569@example
570<#multipart type=alternative>
571This is a plain text part.
572<#part type=text/enriched>
573<center>This is a centered enriched part</center>
574<#/multipart>
575@end example
576
577After running this through @code{mml-generate-mime}, we get this:
578
579@example
580Content-Type: multipart/alternative; boundary="=-=-="
581
582
583--=-=-=
584
585
586This is a plain text part.
587
588--=-=-=
589Content-Type: text/enriched
590
591
592<center>This is a centered enriched part</center>
593
594--=-=-=--
595@end example
596
597
598@node MML Definition
599@section MML Definition
600
601The @acronym{MML} language is very simple. It looks a bit like an SGML
602application, but it's not.
603
604The main concept of @acronym{MML} is the @dfn{part}. Each part can be of a
605different type or use a different charset. The way to delineate a part
606is with a @samp{<#part ...>} tag. Multipart parts can be introduced
607with the @samp{<#multipart ...>} tag. Parts are ended by the
608@samp{<#/part>} or @samp{<#/multipart>} tags. Parts started with the
609@samp{<#part ...>} tags are also closed by the next open tag.
610
611There's also the @samp{<#external ...>} tag. These introduce
612@samp{external/message-body} parts.
613
614Each tag can contain zero or more parameters on the form
615@samp{parameter=value}. The values may be enclosed in quotation marks,
616but that's not necessary unless the value contains white space. So
617@samp{filename=/home/user/#hello$^yes} is perfectly valid.
618
619The following parameters have meaning in @acronym{MML}; parameters that have no
620meaning are ignored. The @acronym{MML} parameter names are the same as the
621@acronym{MIME} parameter names; the things in the parentheses say which
622header it will be used in.
623
624@table @samp
625@item type
626The @acronym{MIME} type of the part (@code{Content-Type}).
627
628@item filename
629Use the contents of the file in the body of the part
630(@code{Content-Disposition}).
631
632@item charset
633The contents of the body of the part are to be encoded in the character
634set specified (@code{Content-Type}). @xref{Charset Translation}.
635
636@item name
637Might be used to suggest a file name if the part is to be saved
638to a file (@code{Content-Type}).
639
640@item disposition
641Valid values are @samp{inline} and @samp{attachment}
642(@code{Content-Disposition}).
643
644@item encoding
645Valid values are @samp{7bit}, @samp{8bit}, @samp{quoted-printable} and
646@samp{base64} (@code{Content-Transfer-Encoding}). @xref{Charset
647Translation}.
648
649@item description
650A description of the part (@code{Content-Description}).
651
652@item creation-date
653RFC822 date when the part was created (@code{Content-Disposition}).
654
655@item modification-date
656RFC822 date when the part was modified (@code{Content-Disposition}).
657
658@item read-date
659RFC822 date when the part was read (@code{Content-Disposition}).
660
661@item recipients
662Who to encrypt/sign the part to. This field is used to override any
663auto-detection based on the To/CC headers.
664
665@item sender
666Identity used to sign the part. This field is used to override the
667default key used.
668
669@item size
670The size (in octets) of the part (@code{Content-Disposition}).
671
672@item sign
673What technology to sign this @acronym{MML} part with (@code{smime}, @code{pgp}
674or @code{pgpmime})
675
676@item encrypt
677What technology to encrypt this @acronym{MML} part with (@code{smime},
678@code{pgp} or @code{pgpmime})
679
680@end table
681
682Parameters for @samp{text/plain}:
683
684@table @samp
685@item format
686Formatting parameter for the text, valid values include @samp{fixed}
687(the default) and @samp{flowed}. Normally you do not specify this
688manually, since it requires the textual body to be formatted in a
689special way described in RFC 2646. @xref{Flowed text}.
690@end table
691
692Parameters for @samp{application/octet-stream}:
693
694@table @samp
695@item type
696Type of the part; informal---meant for human readers
697(@code{Content-Type}).
698@end table
699
700Parameters for @samp{message/external-body}:
701
702@table @samp
703@item access-type
704A word indicating the supported access mechanism by which the file may
705be obtained. Values include @samp{ftp}, @samp{anon-ftp}, @samp{tftp},
706@samp{localfile}, and @samp{mailserver}. (@code{Content-Type}.)
707
708@item expiration
709The RFC822 date after which the file may no longer be fetched.
710(@code{Content-Type}.)
711
712@item size
713The size (in octets) of the file. (@code{Content-Type}.)
714
715@item permission
716Valid values are @samp{read} and @samp{read-write}
717(@code{Content-Type}).
718
719@end table
720
721Parameters for @samp{sign=smime}:
722
723@table @samp
724
725@item keyfile
726File containing key and certificate for signer.
727
728@end table
729
730Parameters for @samp{encrypt=smime}:
731
732@table @samp
733
734@item certfile
735File containing certificate for recipient.
736
737@end table
738
739
740@node Advanced MML Example
741@section Advanced MML Example
742
743Here's a complex multipart message. It's a @samp{multipart/mixed} that
744contains many parts, one of which is a @samp{multipart/alternative}.
745
746@example
747<#multipart type=mixed>
748<#part type=image/jpeg filename=~/rms.jpg disposition=inline>
749<#multipart type=alternative>
750This is a plain text part.
751<#part type=text/enriched name=enriched.txt>
752<center>This is a centered enriched part</center>
753<#/multipart>
754This is a new plain text part.
755<#part disposition=attachment>
756This plain text part is an attachment.
757<#/multipart>
758@end example
759
760And this is the resulting @acronym{MIME} message:
761
762@example
763Content-Type: multipart/mixed; boundary="=-=-="
764
765
766--=-=-=
767
768
769
770--=-=-=
771Content-Type: image/jpeg;
772 filename="~/rms.jpg"
773Content-Disposition: inline;
774 filename="~/rms.jpg"
775Content-Transfer-Encoding: base64
776
777/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRof
778Hh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/wAALCAAwADABAREA/8QAHwAA
779AQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQR
780BRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RF
781RkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ip
782qrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/9oACAEB
783AAA/AO/rifFHjldNuGsrDa0qcSSHkA+gHrXKw+LtWLrMb+RgTyhbr+HSug07xNqV9fQtZrNI
784AyiaE/NuBPOOOP0rvRNE880KOC8TbXXGCv1FPqjrF4LDR7u5L7SkTFT/ALWOP1xXgTuXfc7E
785sx6nua6rwp4IvvEM8chCxWxOdzn7wz6V9AaB4S07w9p5itow0rDLSY5Pt9K43xO66P4xs71m
7862QXiGCbA4yOVJ9+1aYORkdK434lyNH4ahCnG66VT9Nj15JFbPdX0MS43M4VQf5/yr2vSpLnw
7875ZW8dlCZ8KFXjOPX0/mK6rSPEGt3Angu44fNEReHYNvIH3TzXDeKNO8RX+kSX2ouZkicTIOc
788L+g7E810ulFjpVtv3bwgB3HJyK5L4quY/C9sVxk3ij/xx6850u7t1mtp/wDlpEw3An3Jr3Dw
78934gsbWza4nBlhC5LDsaW6+IFgupQyCF3iHH7gA7c9R9ay7zx6t7aX9jHC4smhfBkGCvHGfrm
790tLQ7hbnRrV1GPkAP1x1/Hr+Ncr8Vzjwrbf8AX6v/AKA9eQRyYlQk8Yx9K6XTNbkgia2ciSIn
7917p5Ga9Atte0LTLKO6it4i7dVRFJDcZ4PvXN+JvEMF9bILVGXJLSZ4zkjivRPDaeX4b08HOTC
792pOffmua+KkbS+GLVUGT9tT/0B68eeIpIFYjB70+OOVXyoOM9+M1eaWeCLzHPyHGO/NVWvJJm
793jQ8KGH1NfQWhXSXmh2c8eArRLwO3HSv/2Q==
794
795--=-=-=
796Content-Type: multipart/alternative; boundary="==-=-="
797
798
799--==-=-=
800
801
802This is a plain text part.
803
804--==-=-=
805Content-Type: text/enriched;
806 name="enriched.txt"
807
808
809<center>This is a centered enriched part</center>
810
811--==-=-=--
812
813--=-=-=
814
815This is a new plain text part.
816
817--=-=-=
818Content-Disposition: attachment
819
820
821This plain text part is an attachment.
822
823--=-=-=--
824@end example
825
826@node Encoding Customization
827@section Encoding Customization
828
829@table @code
830
831@item mm-body-charset-encoding-alist
832@vindex mm-body-charset-encoding-alist
833Mapping from @acronym{MIME} charset to encoding to use. This variable is
834usually used except, e.g., when other requirements force a specific
835encoding (digitally signed messages require 7bit encodings). The
836default is
837
838@lisp
839((iso-2022-jp . 7bit)
840 (iso-2022-jp-2 . 7bit)
841 (utf-16 . base64)
842 (utf-16be . base64)
843 (utf-16le . base64))
844@end lisp
845
846As an example, if you do not want to have ISO-8859-1 characters
847quoted-printable encoded, you may add @code{(iso-8859-1 . 8bit)} to
848this variable. You can override this setting on a per-message basis
849by using the @code{encoding} @acronym{MML} tag (@pxref{MML Definition}).
850
851@item mm-coding-system-priorities
852@vindex mm-coding-system-priorities
853Prioritize coding systems to use for outgoing messages. The default
854is @code{nil}, which means to use the defaults in Emacs, but is
855@code{(iso-8859-1 iso-2022-jp iso-2022-jp-2 shift_jis utf-8)} when
856running Emacs in the Japanese language environment. It is a list of
857coding system symbols (aliases of coding systems are also allowed, use
858@kbd{M-x describe-coding-system} to make sure you are specifying correct
859coding system names). For example, if you have configured Emacs
860to prefer UTF-8, but wish that outgoing messages should be sent in
861ISO-8859-1 if possible, you can set this variable to
862@code{(iso-8859-1)}. You can override this setting on a per-message
863basis by using the @code{charset} @acronym{MML} tag (@pxref{MML Definition}).
864
01c52d31
MB
865As different hierarchies prefer different charsets, you may want to set
866@code{mm-coding-system-priorities} according to the hierarchy in Gnus.
867Here's an example:
868
869@c Corrections about preferred charsets are welcome. de, fr and fj
870@c should be correct, I don't know about the rest (so these are only
871@c examples):
872@lisp
873(add-to-list 'gnus-newsgroup-variables 'mm-coding-system-priorities)
874(setq gnus-parameters
875 (nconc
876 ;; Some charsets are just examples!
877 '(("^cn\\." ;; Chinese
878 (mm-coding-system-priorities
879 '(iso-8859-1 cn-big5 chinese-iso-7bit utf-8)))
880 ("^cz\\.\\|^pl\\." ;; Central and Eastern European
881 (mm-coding-system-priorities '(iso-8859-2 utf-8)))
882 ("^de\\." ;; German language
883 (mm-coding-system-priorities '(iso-8859-1 iso-8859-15 utf-8)))
884 ("^fr\\." ;; French
885 (mm-coding-system-priorities '(iso-8859-15 iso-8859-1 utf-8)))
886 ("^fj\\." ;; Japanese
887 (mm-coding-system-priorities
888 '(iso-8859-1 iso-2022-jp iso-2022-jp-2 shift_jis utf-8)))
889 ("^ru\\." ;; Cyrillic
890 (mm-coding-system-priorities
891 '(koi8-r iso-8859-5 iso-8859-1 utf-8))))
892 gnus-parameters))
893@end lisp
894
4009494e
GM
895@item mm-content-transfer-encoding-defaults
896@vindex mm-content-transfer-encoding-defaults
897Mapping from @acronym{MIME} types to encoding to use. This variable is usually
898used except, e.g., when other requirements force a safer encoding
899(digitally signed messages require 7bit encoding). Besides the normal
900@acronym{MIME} encodings, @code{qp-or-base64} may be used to indicate that for
901each case the most efficient of quoted-printable and base64 should be
902used.
903
904@code{qp-or-base64} has another effect. It will fold long lines so that
905MIME parts may not be broken by MTA. So do @code{quoted-printable} and
906@code{base64}.
907
908Note that it affects body encoding only when a part is a raw forwarded
909message (which will be made by @code{gnus-summary-mail-forward} with the
910arg 2 for example) or is neither the @samp{text/*} type nor the
911@samp{message/*} type. Even though in those cases, you can override
912this setting on a per-message basis by using the @code{encoding}
913@acronym{MML} tag (@pxref{MML Definition}).
914
915@item mm-use-ultra-safe-encoding
916@vindex mm-use-ultra-safe-encoding
917When this is non-@code{nil}, it means that textual parts are encoded as
918quoted-printable if they contain lines longer than 76 characters or
919starting with "From " in the body. Non-7bit encodings (8bit, binary)
920are generally disallowed. This reduce the probability that a non-8bit
921clean MTA or MDA changes the message. This should never be set
922directly, but bound by other functions when necessary (e.g., when
923encoding messages that are to be digitally signed).
924
925@end table
926
927@node Charset Translation
928@section Charset Translation
929@cindex charsets
930
931During translation from @acronym{MML} to @acronym{MIME}, for each
932@acronym{MIME} part which has been composed inside Emacs, an appropriate
933charset has to be chosen.
934
935@vindex mail-parse-charset
936If you are running a non-@sc{mule} Emacs, this process is simple: If the
937part contains any non-@acronym{ASCII} (8-bit) characters, the @acronym{MIME} charset
938given by @code{mail-parse-charset} (a symbol) is used. (Never set this
939variable directly, though. If you want to change the default charset,
940please consult the documentation of the package which you use to process
941@acronym{MIME} messages.
942@xref{Various Message Variables, , Various Message Variables, message,
943 Message Manual}, for example.)
944If there are only @acronym{ASCII} characters, the @acronym{MIME} charset US-ASCII is
945used, of course.
946
947@cindex MULE
948@cindex UTF-8
949@cindex Unicode
950@vindex mm-mime-mule-charset-alist
951Things are slightly more complicated when running Emacs with @sc{mule}
952support. In this case, a list of the @sc{mule} charsets used in the
953part is obtained, and the @sc{mule} charsets are translated to
954@acronym{MIME} charsets by consulting the table provided by Emacs itself
955or the variable @code{mm-mime-mule-charset-alist} for XEmacs.
956If this results in a single @acronym{MIME} charset, this is used to encode
957the part. But if the resulting list of @acronym{MIME} charsets contains more
958than one element, two things can happen: If it is possible to encode the
959part via UTF-8, this charset is used. (For this, Emacs must support
960the @code{utf-8} coding system, and the part must consist entirely of
961characters which have Unicode counterparts.) If UTF-8 is not available
962for some reason, the part is split into several ones, so that each one
963can be encoded with a single @acronym{MIME} charset. The part can only be
964split at line boundaries, though---if more than one @acronym{MIME} charset is
965required to encode a single line, it is not possible to encode the part.
966
967When running Emacs with @sc{mule} support, the preferences for which
968coding system to use is inherited from Emacs itself. This means that
969if Emacs is set up to prefer UTF-8, it will be used when encoding
970messages. You can modify this by altering the
971@code{mm-coding-system-priorities} variable though (@pxref{Encoding
972Customization}).
973
974The charset to be used can be overridden by setting the @code{charset}
975@acronym{MML} tag (@pxref{MML Definition}) when composing the message.
976
977The encoding of characters (quoted-printable, 8bit etc) is orthogonal
978to the discussion here, and is controlled by the variables
979@code{mm-body-charset-encoding-alist} and
980@code{mm-content-transfer-encoding-defaults} (@pxref{Encoding
981Customization}).
982
983@node Conversion
984@section Conversion
985
986@findex mime-to-mml
987A (multipart) @acronym{MIME} message can be converted to @acronym{MML}
988with the @code{mime-to-mml} function. It works on the message in the
989current buffer, and substitutes @acronym{MML} markup for @acronym{MIME}
990boundaries. Non-textual parts do not have their contents in the buffer,
991but instead have the contents in separate buffers that are referred to
992from the @acronym{MML} tags.
993
994@findex mml-to-mime
995An @acronym{MML} message can be converted back to @acronym{MIME} by the
996@code{mml-to-mime} function.
997
998These functions are in certain senses ``lossy''---you will not get back
999an identical message if you run @code{mime-to-mml} and then
1000@code{mml-to-mime}. Not only will trivial things like the order of the
1001headers differ, but the contents of the headers may also be different.
1002For instance, the original message may use base64 encoding on text,
1003while @code{mml-to-mime} may decide to use quoted-printable encoding, and
1004so on.
1005
1006In essence, however, these two functions should be the inverse of each
1007other. The resulting contents of the message should remain equivalent,
1008if not identical.
1009
1010
1011@node Flowed text
1012@section Flowed text
1013@cindex format=flowed
1014
1015The Emacs @acronym{MIME} library will respect the @code{use-hard-newlines}
1016variable (@pxref{Hard and Soft Newlines, ,Hard and Soft Newlines,
1017emacs, Emacs Manual}) when encoding a message, and the
1018``format=flowed'' Content-Type parameter when decoding a message.
1019
1020On encoding text, regardless of @code{use-hard-newlines}, lines
1021terminated by soft newline characters are filled together and wrapped
1022after the column decided by @code{fill-flowed-encode-column}.
1023Quotation marks (matching @samp{^>* ?}) are respected. The variable
1024controls how the text will look in a client that does not support
1025flowed text, the default is to wrap after 66 characters. If hard
1026newline characters are not present in the buffer, no flow encoding
1027occurs.
1028
1029On decoding flowed text, lines with soft newline characters are filled
1030together and wrapped after the column decided by
1031@code{fill-flowed-display-column}. The default is to wrap after
1032@code{fill-column}.
1033
1034@table @code
1035@item mm-fill-flowed
1036@vindex mm-fill-flowed
1037If non-@code{nil} a format=flowed article will be displayed flowed.
1038@end table
1039
1040
1041@node Interface Functions
1042@chapter Interface Functions
1043@cindex interface functions
1044@cindex mail-parse
1045
1046The @code{mail-parse} library is an abstraction over the actual
1047low-level libraries that are described in the next chapter.
1048
1049Standards change, and so programs have to change to fit in the new
1050mold. For instance, RFC2045 describes a syntax for the
1051@code{Content-Type} header that only allows @acronym{ASCII} characters in the
1052parameter list. RFC2231 expands on RFC2045 syntax to provide a scheme
1053for continuation headers and non-@acronym{ASCII} characters.
1054
1055The traditional way to deal with this is just to update the library
1056functions to parse the new syntax. However, this is sometimes the wrong
1057thing to do. In some instances it may be vital to be able to understand
1058both the old syntax as well as the new syntax, and if there is only one
1059library, one must choose between the old version of the library and the
1060new version of the library.
1061
1062The Emacs @acronym{MIME} library takes a different tack. It defines a
1063series of low-level libraries (@file{rfc2047.el}, @file{rfc2231.el}
1064and so on) that parses strictly according to the corresponding
1065standard. However, normal programs would not use the functions
1066provided by these libraries directly, but instead use the functions
1067provided by the @code{mail-parse} library. The functions in this
1068library are just aliases to the corresponding functions in the latest
1069low-level libraries. Using this scheme, programs get a consistent
1070interface they can use, and library developers are free to create
1071write code that handles new standards.
1072
1073The following functions are defined by this library:
1074
1075@table @code
1076@item mail-header-parse-content-type
1077@findex mail-header-parse-content-type
1078Parse a @code{Content-Type} header and return a list on the following
1079format:
1080
1081@lisp
1082("type/subtype"
1083 (attribute1 . value1)
1084 (attribute2 . value2)
1085 ...)
1086@end lisp
1087
1088Here's an example:
1089
1090@example
1091(mail-header-parse-content-type
1092 "image/gif; name=\"b980912.gif\"")
1093@result{} ("image/gif" (name . "b980912.gif"))
1094@end example
1095
1096@item mail-header-parse-content-disposition
1097@findex mail-header-parse-content-disposition
1098Parse a @code{Content-Disposition} header and return a list on the same
1099format as the function above.
1100
1101@item mail-content-type-get
1102@findex mail-content-type-get
1103Takes two parameters---a list on the format above, and an attribute.
1104Returns the value of the attribute.
1105
1106@example
1107(mail-content-type-get
1108 '("image/gif" (name . "b980912.gif")) 'name)
1109@result{} "b980912.gif"
1110@end example
1111
1112@item mail-header-encode-parameter
1113@findex mail-header-encode-parameter
1114Takes a parameter string and returns an encoded version of the string.
1115This is used for parameters in headers like @code{Content-Type} and
1116@code{Content-Disposition}.
1117
1118@item mail-header-remove-comments
1119@findex mail-header-remove-comments
1120Return a comment-free version of a header.
1121
1122@example
1123(mail-header-remove-comments
1124 "Gnus/5.070027 (Pterodactyl Gnus v0.27) (Finnish Landrace)")
1125@result{} "Gnus/5.070027 "
1126@end example
1127
1128@item mail-header-remove-whitespace
1129@findex mail-header-remove-whitespace
1130Remove linear white space from a header. Space inside quoted strings
1131and comments is preserved.
1132
1133@example
1134(mail-header-remove-whitespace
1135 "image/gif; name=\"Name with spaces\"")
1136@result{} "image/gif;name=\"Name with spaces\""
1137@end example
1138
1139@item mail-header-get-comment
1140@findex mail-header-get-comment
1141Return the last comment in a header.
1142
1143@example
1144(mail-header-get-comment
1145 "Gnus/5.070027 (Pterodactyl Gnus v0.27) (Finnish Landrace)")
1146@result{} "Finnish Landrace"
1147@end example
1148
1149@item mail-header-parse-address
1150@findex mail-header-parse-address
1151Parse an address and return a list containing the mailbox and the
1152plaintext name.
1153
1154@example
1155(mail-header-parse-address
1156 "Hrvoje Niksic <hniksic@@srce.hr>")
1157@result{} ("hniksic@@srce.hr" . "Hrvoje Niksic")
1158@end example
1159
1160@item mail-header-parse-addresses
1161@findex mail-header-parse-addresses
1162Parse a string with list of addresses and return a list of elements like
1163the one described above.
1164
1165@example
1166(mail-header-parse-addresses
1167 "Hrvoje Niksic <hniksic@@srce.hr>, Steinar Bang <sb@@metis.no>")
1168@result{} (("hniksic@@srce.hr" . "Hrvoje Niksic")
1169 ("sb@@metis.no" . "Steinar Bang"))
1170@end example
1171
1172@item mail-header-parse-date
1173@findex mail-header-parse-date
1174Parse a date string and return an Emacs time structure.
1175
1176@item mail-narrow-to-head
1177@findex mail-narrow-to-head
1178Narrow the buffer to the header section of the buffer. Point is placed
1179at the beginning of the narrowed buffer.
1180
1181@item mail-header-narrow-to-field
1182@findex mail-header-narrow-to-field
1183Narrow the buffer to the header under point. Understands continuation
1184headers.
1185
1186@item mail-header-fold-field
1187@findex mail-header-fold-field
1188Fold the header under point.
1189
1190@item mail-header-unfold-field
1191@findex mail-header-unfold-field
1192Unfold the header under point.
1193
1194@item mail-header-field-value
1195@findex mail-header-field-value
1196Return the value of the field under point.
1197
1198@item mail-encode-encoded-word-region
1199@findex mail-encode-encoded-word-region
1200Encode the non-@acronym{ASCII} words in the region. For instance,
01c52d31 1201@samp{Na@"{@dotless{i}}ve} is encoded as @samp{=?iso-8859-1?q?Na=EFve?=}.
4009494e
GM
1202
1203@item mail-encode-encoded-word-buffer
1204@findex mail-encode-encoded-word-buffer
1205Encode the non-@acronym{ASCII} words in the current buffer. This function is
1206meant to be called narrowed to the headers of a message.
1207
1208@item mail-encode-encoded-word-string
1209@findex mail-encode-encoded-word-string
1210Encode the words that need encoding in a string, and return the result.
1211
1212@example
1213(mail-encode-encoded-word-string
01c52d31 1214 "This is na@"{@dotless{i}}ve, baby")
4009494e
GM
1215@result{} "This is =?iso-8859-1?q?na=EFve,?= baby"
1216@end example
1217
1218@item mail-decode-encoded-word-region
1219@findex mail-decode-encoded-word-region
1220Decode the encoded words in the region.
1221
1222@item mail-decode-encoded-word-string
1223@findex mail-decode-encoded-word-string
1224Decode the encoded words in the string and return the result.
1225
1226@example
1227(mail-decode-encoded-word-string
1228 "This is =?iso-8859-1?q?na=EFve,?= baby")
01c52d31 1229@result{} "This is na@"{@dotless{i}}ve, baby"
4009494e
GM
1230@end example
1231
1232@end table
1233
1234Currently, @code{mail-parse} is an abstraction over @code{ietf-drums},
1235@code{rfc2047}, @code{rfc2045} and @code{rfc2231}. These are documented
1236in the subsequent sections.
1237
1238
1239
1240@node Basic Functions
1241@chapter Basic Functions
1242
1243This chapter describes the basic, ground-level functions for parsing and
1244handling. Covered here is parsing @code{From} lines, removing comments
1245from header lines, decoding encoded words, parsing date headers and so
1246on. High-level functionality is dealt with in the first chapter
1247(@pxref{Decoding and Viewing}).
1248
1249@menu
1250* rfc2045:: Encoding @code{Content-Type} headers.
1251* rfc2231:: Parsing @code{Content-Type} headers.
1252* ietf-drums:: Handling mail headers defined by RFC822bis.
1253* rfc2047:: En/decoding encoded words in headers.
1254* time-date:: Functions for parsing dates and manipulating time.
1255* qp:: Quoted-Printable en/decoding.
1256* base64:: Base64 en/decoding.
1257* binhex:: Binhex decoding.
1258* uudecode:: Uuencode decoding.
1259* yenc:: Yenc decoding.
1260* rfc1843:: Decoding HZ-encoded text.
1261* mailcap:: How parts are displayed is specified by the @file{.mailcap} file
1262@end menu
1263
1264
1265@node rfc2045
1266@section rfc2045
1267
1268RFC2045 is the ``main'' @acronym{MIME} document, and as such, one would
1269imagine that there would be a lot to implement. But there isn't, since
1270most of the implementation details are delegated to the subsequent
1271RFCs.
1272
1273So @file{rfc2045.el} has only a single function:
1274
1275@table @code
1276@item rfc2045-encode-string
1277@findex rfc2045-encode-string
1278Takes a parameter and a value and returns a @samp{PARAM=VALUE} string.
1279@var{value} will be quoted if there are non-safe characters in it.
1280@end table
1281
1282
1283@node rfc2231
1284@section rfc2231
1285
1286RFC2231 defines a syntax for the @code{Content-Type} and
1287@code{Content-Disposition} headers. Its snappy name is @dfn{MIME
1288Parameter Value and Encoded Word Extensions: Character Sets, Languages,
1289and Continuations}.
1290
1291In short, these headers look something like this:
1292
1293@example
1294Content-Type: application/x-stuff;
1295 title*0*=us-ascii'en'This%20is%20even%20more%20;
1296 title*1*=%2A%2A%2Afun%2A%2A%2A%20;
1297 title*2="isn't it!"
1298@end example
1299
1300They usually aren't this bad, though.
1301
1302The following functions are defined by this library:
1303
1304@table @code
1305@item rfc2231-parse-string
1306@findex rfc2231-parse-string
1307Parse a @code{Content-Type} header and return a list describing its
1308elements.
1309
1310@example
1311(rfc2231-parse-string
1312 "application/x-stuff;
1313 title*0*=us-ascii'en'This%20is%20even%20more%20;
1314 title*1*=%2A%2A%2Afun%2A%2A%2A%20;
1315 title*2=\"isn't it!\"")
1316@result{} ("application/x-stuff"
1317 (title . "This is even more ***fun*** isn't it!"))
1318@end example
1319
1320@item rfc2231-get-value
1321@findex rfc2231-get-value
1322Takes one of the lists on the format above and returns
1323the value of the specified attribute.
1324
1325@item rfc2231-encode-string
1326@findex rfc2231-encode-string
1327Encode a parameter in headers likes @code{Content-Type} and
1328@code{Content-Disposition}.
1329
1330@end table
1331
1332
1333@node ietf-drums
1334@section ietf-drums
1335
1336@dfn{drums} is an IETF working group that is working on the replacement
1337for RFC822.
1338
1339The functions provided by this library include:
1340
1341@table @code
1342@item ietf-drums-remove-comments
1343@findex ietf-drums-remove-comments
1344Remove the comments from the argument and return the results.
1345
1346@item ietf-drums-remove-whitespace
1347@findex ietf-drums-remove-whitespace
1348Remove linear white space from the string and return the results.
1349Spaces inside quoted strings and comments are left untouched.
1350
1351@item ietf-drums-get-comment
1352@findex ietf-drums-get-comment
1353Return the last most comment from the string.
1354
1355@item ietf-drums-parse-address
1356@findex ietf-drums-parse-address
1357Parse an address string and return a list that contains the mailbox and
1358the plain text name.
1359
1360@item ietf-drums-parse-addresses
1361@findex ietf-drums-parse-addresses
1362Parse a string that contains any number of comma-separated addresses and
1363return a list that contains mailbox/plain text pairs.
1364
1365@item ietf-drums-parse-date
1366@findex ietf-drums-parse-date
1367Parse a date string and return an Emacs time structure.
1368
1369@item ietf-drums-narrow-to-header
1370@findex ietf-drums-narrow-to-header
1371Narrow the buffer to the header section of the current buffer.
1372
1373@end table
1374
1375
1376@node rfc2047
1377@section rfc2047
1378
1379RFC2047 (Message Header Extensions for Non-@acronym{ASCII} Text) specifies how
1380non-@acronym{ASCII} text in headers are to be encoded. This is actually rather
1381complicated, so a number of variables are necessary to tweak what this
1382library does.
1383
1384The following variables are tweakable:
1385
1386@table @code
1387@item rfc2047-header-encoding-alist
1388@vindex rfc2047-header-encoding-alist
1389This is an alist of header / encoding-type pairs. Its main purpose is
1390to prevent encoding of certain headers.
1391
1392The keys can either be header regexps, or @code{t}.
1393
1394The values can be @code{nil}, in which case the header(s) in question
1395won't be encoded, @code{mime}, which means that they will be encoded, or
1396@code{address-mime}, which means the header(s) will be encoded carefully
1397assuming they contain addresses.
1398
1399@item rfc2047-charset-encoding-alist
1400@vindex rfc2047-charset-encoding-alist
1401RFC2047 specifies two forms of encoding---@code{Q} (a
1402Quoted-Printable-like encoding) and @code{B} (base64). This alist
1403specifies which charset should use which encoding.
1404
1405@item rfc2047-encode-function-alist
1406@vindex rfc2047-encode-function-alist
1407This is an alist of encoding / function pairs. The encodings are
1408@code{Q}, @code{B} and @code{nil}.
1409
1410@item rfc2047-encoded-word-regexp
1411@vindex rfc2047-encoded-word-regexp
1412When decoding words, this library looks for matches to this regexp.
1413
b890d447
MB
1414@item rfc2047-encoded-word-regexp-loose
1415@vindex rfc2047-encoded-word-regexp-loose
1416This is a version from which the regexp for the Q encoding pattern of
1417@code{rfc2047-encoded-word-regexp} is made loose.
1418
4009494e
GM
1419@item rfc2047-encode-encoded-words
1420@vindex rfc2047-encode-encoded-words
1421The boolean variable specifies whether encoded words
b890d447
MB
1422(e.g. @samp{=?us-ascii?q?hello?=}) should be encoded again.
1423@code{rfc2047-encoded-word-regexp} is used to look for such words.
1424
1425@item rfc2047-allow-irregular-q-encoded-words
1426@vindex rfc2047-allow-irregular-q-encoded-words
1427The boolean variable specifies whether irregular Q encoded words
1428(e.g. @samp{=?us-ascii?q?hello??=}) should be decoded. If it is
1429non-@code{nil}, @code{rfc2047-encoded-word-regexp-loose} is used instead
1430of @code{rfc2047-encoded-word-regexp} to look for encoded words.
4009494e
GM
1431
1432@end table
1433
1434Those were the variables, and these are this functions:
1435
1436@table @code
1437@item rfc2047-narrow-to-field
1438@findex rfc2047-narrow-to-field
1439Narrow the buffer to the header on the current line.
1440
1441@item rfc2047-encode-message-header
1442@findex rfc2047-encode-message-header
1443Should be called narrowed to the header of a message. Encodes according
1444to @code{rfc2047-header-encoding-alist}.
1445
1446@item rfc2047-encode-region
1447@findex rfc2047-encode-region
1448Encodes all encodable words in the region specified.
1449
1450@item rfc2047-encode-string
1451@findex rfc2047-encode-string
1452Encode a string and return the results.
1453
1454@item rfc2047-decode-region
1455@findex rfc2047-decode-region
1456Decode the encoded words in the region.
1457
1458@item rfc2047-decode-string
1459@findex rfc2047-decode-string
1460Decode a string and return the results.
1461
1462@item rfc2047-encode-parameter
1463@findex rfc2047-encode-parameter
1464Encode a parameter in the RFC2047-like style. This is a replacement for
1465the @code{rfc2231-encode-string} function. @xref{rfc2231}.
1466
1467When attaching files as @acronym{MIME} parts, we should use the RFC2231
1468encoding to specify the file names containing non-@acronym{ASCII}
1469characters. However, many mail softwares don't support it in practice
1470and recipients won't be able to extract files with correct names.
1471Instead, the RFC2047-like encoding is acceptable generally. This
1472function provides the very RFC2047-like encoding, resigning to such a
1473regrettable trend. To use it, put the following line in your
1474@file{~/.gnus.el} file:
1475
1476@lisp
1477(defalias 'mail-header-encode-parameter 'rfc2047-encode-parameter)
1478@end lisp
1479
1480@end table
1481
1482
1483@node time-date
1484@section time-date
1485
1486While not really a part of the @acronym{MIME} library, it is convenient to
1487document this library here. It deals with parsing @code{Date} headers
1488and manipulating time. (Not by using tesseracts, though, I'm sorry to
1489say.)
1490
1491These functions convert between five formats: A date string, an Emacs
1492time structure, a decoded time list, a second number, and a day number.
1493
1494Here's a bunch of time/date/second/day examples:
1495
1496@example
1497(parse-time-string "Sat Sep 12 12:21:54 1998 +0200")
1498@result{} (54 21 12 12 9 1998 6 nil 7200)
1499
1500(date-to-time "Sat Sep 12 12:21:54 1998 +0200")
1501@result{} (13818 19266)
1502
1503(time-to-seconds '(13818 19266))
1504@result{} 905595714.0
1505
1506(seconds-to-time 905595714.0)
1507@result{} (13818 19266 0)
1508
1509(time-to-days '(13818 19266))
1510@result{} 729644
1511
1512(days-to-time 729644)
1513@result{} (961933 65536)
1514
1515(time-since '(13818 19266))
1516@result{} (0 430)
1517
1518(time-less-p '(13818 19266) '(13818 19145))
1519@result{} nil
1520
1521(subtract-time '(13818 19266) '(13818 19145))
1522@result{} (0 121)
1523
1524(days-between "Sat Sep 12 12:21:54 1998 +0200"
1525 "Sat Sep 07 12:21:54 1998 +0200")
1526@result{} 5
1527
1528(date-leap-year-p 2000)
1529@result{} t
1530
1531(time-to-day-in-year '(13818 19266))
1532@result{} 255
1533
1534(time-to-number-of-days
1535 (time-since
1536 (date-to-time "Mon, 01 Jan 2001 02:22:26 GMT")))
1537@result{} 4.146122685185185
1538@end example
1539
1540And finally, we have @code{safe-date-to-time}, which does the same as
1541@code{date-to-time}, but returns a zero time if the date is
1542syntactically malformed.
1543
1544The five data representations used are the following:
1545
1546@table @var
1547@item date
1548An RFC822 (or similar) date string. For instance: @code{"Sat Sep 12
154912:21:54 1998 +0200"}.
1550
1551@item time
1552An internal Emacs time. For instance: @code{(13818 26466)}.
1553
1554@item seconds
1555A floating point representation of the internal Emacs time. For
1556instance: @code{905595714.0}.
1557
1558@item days
1559An integer number representing the number of days since 00000101. For
1560instance: @code{729644}.
1561
1562@item decoded time
1563A list of decoded time. For instance: @code{(54 21 12 12 9 1998 6 t
15647200)}.
1565@end table
1566
1567All the examples above represent the same moment.
1568
1569These are the functions available:
1570
1571@table @code
1572@item date-to-time
1573Take a date and return a time.
1574
1575@item time-to-seconds
1576Take a time and return seconds.
1577
1578@item seconds-to-time
1579Take seconds and return a time.
1580
1581@item time-to-days
1582Take a time and return days.
1583
1584@item days-to-time
1585Take days and return a time.
1586
1587@item date-to-day
1588Take a date and return days.
1589
1590@item time-to-number-of-days
1591Take a time and return the number of days that represents.
1592
1593@item safe-date-to-time
1594Take a date and return a time. If the date is not syntactically valid,
1595return a ``zero'' time.
1596
1597@item time-less-p
1598Take two times and say whether the first time is less (i. e., earlier)
1599than the second time.
1600
1601@item time-since
1602Take a time and return a time saying how long it was since that time.
1603
1604@item subtract-time
1605Take two times and subtract the second from the first. I. e., return
1606the time between the two times.
1607
1608@item days-between
1609Take two days and return the number of days between those two days.
1610
1611@item date-leap-year-p
1612Take a year number and say whether it's a leap year.
1613
1614@item time-to-day-in-year
1615Take a time and return the day number within the year that the time is
1616in.
1617
1618@end table
1619
1620
1621@node qp
1622@section qp
1623
1624This library deals with decoding and encoding Quoted-Printable text.
1625
1626Very briefly explained, qp encoding means translating all 8-bit
1627characters (and lots of control characters) into things that look like
1628@samp{=EF}; that is, an equal sign followed by the byte encoded as a hex
1629string.
1630
1631The following functions are defined by the library:
1632
1633@table @code
1634@item quoted-printable-decode-region
1635@findex quoted-printable-decode-region
1636QP-decode all the encoded text in the specified region.
1637
1638@item quoted-printable-decode-string
1639@findex quoted-printable-decode-string
1640Decode the QP-encoded text in a string and return the results.
1641
1642@item quoted-printable-encode-region
1643@findex quoted-printable-encode-region
1644QP-encode all the encodable characters in the specified region. The third
1645optional parameter @var{fold} specifies whether to fold long lines.
1646(Long here means 72.)
1647
1648@item quoted-printable-encode-string
1649@findex quoted-printable-encode-string
1650QP-encode all the encodable characters in a string and return the
1651results.
1652
1653@end table
1654
1655
1656@node base64
1657@section base64
1658@cindex base64
1659
1660Base64 is an encoding that encodes three bytes into four characters,
1661thereby increasing the size by about 33%. The alphabet used for
1662encoding is very resistant to mangling during transit.
1663
1664The following functions are defined by this library:
1665
1666@table @code
1667@item base64-encode-region
1668@findex base64-encode-region
1669base64 encode the selected region. Return the length of the encoded
1670text. Optional third argument @var{no-line-break} means do not break
1671long lines into shorter lines.
1672
1673@item base64-encode-string
1674@findex base64-encode-string
1675base64 encode a string and return the result.
1676
1677@item base64-decode-region
1678@findex base64-decode-region
1679base64 decode the selected region. Return the length of the decoded
1680text. If the region can't be decoded, return @code{nil} and don't
1681modify the buffer.
1682
1683@item base64-decode-string
1684@findex base64-decode-string
1685base64 decode a string and return the result. If the string can't be
1686decoded, @code{nil} is returned.
1687
1688@end table
1689
1690
1691@node binhex
1692@section binhex
1693@cindex binhex
1694@cindex Apple
1695@cindex Macintosh
1696
1697@code{binhex} is an encoding that originated in Macintosh environments.
1698The following function is supplied to deal with these:
1699
1700@table @code
1701@item binhex-decode-region
1702@findex binhex-decode-region
1703Decode the encoded text in the region. If given a third parameter, only
1704decode the @code{binhex} header and return the filename.
1705
1706@end table
1707
1708@node uudecode
1709@section uudecode
1710@cindex uuencode
1711@cindex uudecode
1712
1713@code{uuencode} is probably still the most popular encoding of binaries
1714used on Usenet, although @code{base64} rules the mail world.
1715
1716The following function is supplied by this package:
1717
1718@table @code
1719@item uudecode-decode-region
1720@findex uudecode-decode-region
1721Decode the text in the region.
1722@end table
1723
1724
1725@node yenc
1726@section yenc
1727@cindex yenc
1728
1729@code{yenc} is used for encoding binaries on Usenet. The following
1730function is supplied by this package:
1731
1732@table @code
1733@item yenc-decode-region
1734@findex yenc-decode-region
1735Decode the encoded text in the region.
1736
1737@end table
1738
1739
1740@node rfc1843
1741@section rfc1843
1742@cindex rfc1843
1743@cindex HZ
1744@cindex Chinese
1745
1746RFC1843 deals with mixing Chinese and @acronym{ASCII} characters in messages. In
1747essence, RFC1843 switches between @acronym{ASCII} and Chinese by doing this:
1748
1749@example
1750This sentence is in @acronym{ASCII}.
1751The next sentence is in GB.~@{<:Ky2;S@{#,NpJ)l6HK!#~@}Bye.
1752@end example
1753
1754Simple enough, and widely used in China.
1755
1756The following functions are available to handle this encoding:
1757
1758@table @code
1759@item rfc1843-decode-region
1760Decode HZ-encoded text in the region.
1761
1762@item rfc1843-decode-string
1763Decode a HZ-encoded string and return the result.
1764
1765@end table
1766
1767
1768@node mailcap
1769@section mailcap
1770
1771The @file{~/.mailcap} file is parsed by most @acronym{MIME}-aware message
1772handlers and describes how elements are supposed to be displayed.
1773Here's an example file:
1774
1775@example
1776image/*; gimp -8 %s
1777audio/wav; wavplayer %s
1778application/msword; catdoc %s ; copiousoutput ; nametemplate=%s.doc
1779@end example
1780
1781This says that all image files should be displayed with @code{gimp},
1782that WAVE audio files should be played by @code{wavplayer}, and that
1783MS-WORD files should be inlined by @code{catdoc}.
1784
1785The @code{mailcap} library parses this file, and provides functions for
1786matching types.
1787
1788@table @code
1789@item mailcap-mime-data
1790@vindex mailcap-mime-data
1791This variable is an alist of alists containing backup viewing rules.
1792
1793@end table
1794
1795Interface functions:
1796
1797@table @code
1798@item mailcap-parse-mailcaps
1799@findex mailcap-parse-mailcaps
1800Parse the @file{~/.mailcap} file.
1801
1802@item mailcap-mime-info
1803Takes a @acronym{MIME} type as its argument and returns the matching viewer.
1804
1805@end table
1806
1807
1808
1809
1810@node Standards
1811@chapter Standards
1812
1813The Emacs @acronym{MIME} library implements handling of various elements
1814according to a (somewhat) large number of RFCs, drafts and standards
1815documents. This chapter lists the relevant ones. They can all be
1816fetched from @uref{http://quimby.gnus.org/notes/}.
1817
1818@table @dfn
1819@item RFC822
1820@itemx STD11
1821Standard for the Format of ARPA Internet Text Messages.
1822
1823@item RFC1036
1824Standard for Interchange of USENET Messages
1825
1826@item RFC2045
1827Format of Internet Message Bodies
1828
1829@item RFC2046
1830Media Types
1831
1832@item RFC2047
1833Message Header Extensions for Non-@acronym{ASCII} Text
1834
1835@item RFC2048
1836Registration Procedures
1837
1838@item RFC2049
1839Conformance Criteria and Examples
1840
1841@item RFC2231
1842@acronym{MIME} Parameter Value and Encoded Word Extensions: Character Sets,
1843Languages, and Continuations
1844
1845@item RFC1843
1846HZ - A Data Format for Exchanging Files of Arbitrarily Mixed Chinese and
1847@acronym{ASCII} characters
1848
1849@item draft-ietf-drums-msg-fmt-05.txt
1850Draft for the successor of RFC822
1851
1852@item RFC2112
1853The @acronym{MIME} Multipart/Related Content-type
1854
1855@item RFC1892
1856The Multipart/Report Content Type for the Reporting of Mail System
1857Administrative Messages
1858
1859@item RFC2183
1860Communicating Presentation Information in Internet Messages: The
1861Content-Disposition Header Field
1862
1863@item RFC2646
1864Documentation of the text/plain format parameter for flowed text.
1865
1866@end table
1867
1868@node GNU Free Documentation License
1869@chapter GNU Free Documentation License
1870@include doclicense.texi
1871
1872@node Index
1873@chapter Index
1874@printindex cp
1875
1876@summarycontents
1877@contents
1878@bye
1879
1880\f
1881@c Local Variables:
1882@c mode: texinfo
1883@c coding: iso-8859-1
1884@c End:
1885
1886@ignore
1887 arch-tag: c7ef2fd0-a91c-4e10-aa52-c1a2b11b1a8d
1888@end ignore