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