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