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