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