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