3 @include gnus-overrides.texi
5 @setfilename ../../info/emacs-mime.info
6 @settitle Emacs MIME Manual
13 This file documents the Emacs MIME interface functionality.
15 Copyright @copyright{} 1998--2017 Free Software Foundation, Inc.
18 Permission is granted to copy, distribute and/or modify this document
19 under the terms of the GNU Free Documentation License, Version 1.3 or
20 any later version published by the Free Software Foundation; with no
21 Invariant Sections, with the Front-Cover Texts being ``A GNU Manual'',
22 and with the Back-Cover Texts as in (a) below. A copy of the license
23 is included in the section entitled ``GNU Free Documentation License''.
25 (a) The FSF's Back-Cover Text is: ``You have the freedom to copy and
26 modify this GNU manual.''
30 @c Node ``Interface Functions'' uses non-ASCII characters
32 @dircategory Emacs lisp libraries
34 * Emacs MIME: (emacs-mime). Emacs MIME de/composition library.
39 @setchapternewpage odd
43 @title Emacs MIME Manual (DEVELOPMENT VERSION)
46 @title Emacs MIME Manual
49 @author by Lars Magne Ingebrigtsen
51 @vskip 0pt plus 1filll
60 This manual documents the libraries used to compose and display
61 @acronym{MIME} messages.
63 This manual is directed at users who want to modify the behavior of
64 the @acronym{MIME} encoding/decoding process or want a more detailed
65 picture of how the Emacs @acronym{MIME} library works, and people who want
66 to write functions and commands that manipulate @acronym{MIME} elements.
68 @acronym{MIME} is short for @dfn{Multipurpose Internet Mail Extensions}.
69 This standard is documented in a number of RFCs; mainly RFC2045 (Format
70 of Internet Message Bodies), RFC2046 (Media Types), RFC2047 (Message
71 Header Extensions for Non-@acronym{ASCII} Text), RFC2048 (Registration
72 Procedures), RFC2049 (Conformance Criteria and Examples). It is highly
73 recommended that anyone who intends writing @acronym{MIME}-compliant software
74 read at least RFC2045 and RFC2047.
81 * Decoding and Viewing:: A framework for decoding and viewing.
82 * Composing:: @acronym{MML}; a language for describing @acronym{MIME} parts.
83 * Interface Functions:: An abstraction over the basic functions.
84 * Basic Functions:: Utility and basic parsing functions.
85 * Standards:: A summary of RFCs and working documents used.
86 * GNU Free Documentation License:: The license for this documentation.
87 * Index:: Function and variable index.
91 @node Decoding and Viewing
92 @chapter Decoding and Viewing
94 This chapter deals with decoding and viewing @acronym{MIME} messages on a
97 The main idea is to first analyze a @acronym{MIME} article, and then allow
98 other programs to do things based on the list of @dfn{handles} that are
99 returned as a result of this analysis.
102 * Dissection:: Analyzing a @acronym{MIME} message.
103 * Non-MIME:: Analyzing a non-@acronym{MIME} message.
104 * Handles:: Handle manipulations.
105 * Display:: Displaying handles.
106 * Display Customization:: Variables that affect display.
107 * Files and Directories:: Saving and naming attachments.
108 * New Viewers:: How to write your own viewers.
115 The @code{mm-dissect-buffer} is the function responsible for dissecting
116 a @acronym{MIME} article. If given a multipart message, it will recursively
117 descend the message, following the structure, and return a tree of
118 @acronym{MIME} handles that describes the structure of the message.
122 @vindex mm-uu-configure-list
124 Gnus also understands some non-@acronym{MIME} attachments, such as
125 postscript, uuencode, binhex, yenc, shar, forward, gnatsweb, pgp,
126 diff. Each of these features can be disabled by add an item into
127 @code{mm-uu-configure-list}. For example,
131 (add-to-list 'mm-uu-configure-list '(pgp-signed . disabled))
157 Non-@acronym{MIME} forwarded message.
165 @acronym{PGP} signed clear text.
168 @findex pgp-encrypted
169 @acronym{PGP} encrypted clear text.
173 @acronym{PGP} public keys.
176 @findex emacs-sources
177 @vindex mm-uu-emacs-sources-regexp
178 Emacs source code. This item works only in the groups matching
179 @code{mm-uu-emacs-sources-regexp}.
183 @vindex mm-uu-diff-groups-regexp
184 Patches. This is intended for groups where diffs of committed files
185 are automatically sent to. It only works in groups matching
186 @code{mm-uu-diff-groups-regexp}.
189 @cindex verbatim-marks
190 Slrn-style verbatim marks.
194 LaTeX documents. It only works in groups matching
195 @code{mm-uu-tex-groups-regexp}.
199 @cindex text/x-verbatim
200 @c Is @vindex suitable for a face?
201 @vindex mm-uu-extract
202 Some inlined non-@acronym{MIME} attachments are displayed using the face
203 @code{mm-uu-extract}. By default, no @acronym{MIME} button for these
204 parts is displayed. You can force displaying a button using @kbd{K b}
205 (@code{gnus-summary-display-buttonized}) or add @code{text/x-verbatim}
206 to @code{gnus-buttonized-mime-types}, @xref{MIME Commands, ,MIME
207 Commands, gnus, Gnus Manual}.
212 A @acronym{MIME} handle is a list that fully describes a @acronym{MIME}
215 The following macros can be used to access elements in a handle:
218 @item mm-handle-buffer
219 @findex mm-handle-buffer
220 Return the buffer that holds the contents of the undecoded @acronym{MIME}
224 @findex mm-handle-type
225 Return the parsed @code{Content-Type} of the part.
227 @item mm-handle-encoding
228 @findex mm-handle-encoding
229 Return the @code{Content-Transfer-Encoding} of the part.
231 @item mm-handle-undisplayer
232 @findex mm-handle-undisplayer
233 Return the object that can be used to remove the displayed part (if it
236 @item mm-handle-set-undisplayer
237 @findex mm-handle-set-undisplayer
238 Set the undisplayer object.
240 @item mm-handle-disposition
241 @findex mm-handle-disposition
242 Return the parsed @code{Content-Disposition} of the part.
244 @item mm-get-content-id
245 Returns the handle(s) referred to by @code{Content-ID}.
253 Functions for displaying, removing and saving.
256 @item mm-display-part
257 @findex mm-display-part
261 @findex mm-remove-part
262 Remove the part (if it has been displayed).
265 @findex mm-inlinable-p
266 Say whether a @acronym{MIME} type can be displayed inline.
268 @item mm-automatic-display-p
269 @findex mm-automatic-display-p
270 Say whether a @acronym{MIME} type should be displayed automatically.
272 @item mm-destroy-part
273 @findex mm-destroy-part
274 Free all resources occupied by a part.
278 Offer to save the part in a file.
282 Offer to pipe the part to some process.
284 @item mm-interactively-view-part
285 @findex mm-interactively-view-part
286 Prompt for a mailcap method to use to view the part.
291 @node Display Customization
292 @section Display Customization
296 @item mm-inline-media-tests
297 @vindex mm-inline-media-tests
298 This is an alist where the key is a @acronym{MIME} type, the second element
299 is a function to display the part @dfn{inline} (i.e., inside Emacs), and
300 the third element is a form to be @code{eval}ed to say whether the part
301 can be displayed inline.
303 This variable specifies whether a part @emph{can} be displayed inline,
304 and, if so, how to do it. It does not say whether parts are
305 @emph{actually} displayed inline.
307 @item mm-inlined-types
308 @vindex mm-inlined-types
309 This, on the other hand, says what types are to be displayed inline, if
310 they satisfy the conditions set by the variable above. It's a list of
311 @acronym{MIME} media types.
313 @item mm-automatic-display
314 @vindex mm-automatic-display
315 This is a list of types that are to be displayed ``automatically'', but
316 only if the above variable allows it. That is, only inlinable parts can
317 be displayed automatically.
319 @item mm-automatic-external-display
320 @vindex mm-automatic-external-display
321 This is a list of types that will be displayed automatically in an
324 @item mm-keep-viewer-alive-types
325 @vindex mm-keep-viewer-alive-types
326 This is a list of media types for which the external viewer will not
327 be killed when selecting a different article.
329 @item mm-attachment-override-types
330 @vindex mm-attachment-override-types
331 Some @acronym{MIME} agents create parts that have a content-disposition of
332 @samp{attachment}. This variable allows overriding that disposition and
333 displaying the part inline. (Note that the disposition is only
334 overridden if we are able to, and want to, display the part inline.)
336 @item mm-discouraged-alternatives
337 @vindex mm-discouraged-alternatives
338 List of @acronym{MIME} types that are discouraged when viewing
339 @samp{multipart/alternative}. Viewing agents are supposed to view the
340 last possible part of a message, as that is supposed to be the richest.
341 However, users may prefer other types instead, and this list says what
342 types are most unwanted. If, for instance, @samp{text/html} parts are
343 very unwanted, and @samp{text/richtext} parts are somewhat unwanted,
344 you could say something like:
347 (setq mm-discouraged-alternatives
348 '("text/html" "text/richtext")
350 (remove "text/html" mm-automatic-display))
353 Adding @code{"image/.*"} might also be useful. Spammers use images as
354 the preferred part of @samp{multipart/alternative} messages, so you might
355 not notice there are other parts. See also
356 @code{gnus-buttonized-mime-types}, @ref{MIME Commands, ,MIME Commands,
357 gnus, Gnus Manual}. After adding @code{"multipart/alternative"} to
358 @code{gnus-buttonized-mime-types} you can choose manually which
359 alternative you'd like to view. For example, you can set those
363 (setq gnus-buttonized-mime-types
364 '("multipart/alternative" "multipart/signed")
365 mm-discouraged-alternatives
366 '("text/html" "image/.*"))
369 In this case, Gnus will display radio buttons for such a kind of spam
373 1. (*) multipart/alternative ( ) image/gif
375 2. (*) text/plain ( ) text/html
378 @item mm-inline-large-images
379 @vindex mm-inline-large-images
380 When displaying inline images that are larger than the window, Emacs
381 does not enable scrolling, which means that you cannot see the whole
382 image. To prevent this, the library tries to determine the image size
383 before displaying it inline, and if it doesn't fit the window, the
384 library will display it externally (e.g., with @samp{ImageMagick} or
385 @samp{xv}). Setting this variable to @code{t} disables this check and
386 makes the library display all inline images as inline, regardless of
387 their size. If you set this variable to @code{resize}, the image will
388 be displayed resized to fit in the window, if Emacs has the ability to
391 @item mm-inline-large-images-proportion
392 @vindex mm-inline-images-max-proportion
393 The proportion used when resizing large images.
395 @item mm-inline-override-types
396 @vindex mm-inline-override-types
397 @code{mm-inlined-types} may include regular expressions, for example to
398 specify that all @samp{text/.*} parts be displayed inline. If a user
399 prefers to have a type that matches such a regular expression be treated
400 as an attachment, that can be accomplished by setting this variable to a
401 list containing that type. For example assuming @code{mm-inlined-types}
402 includes @samp{text/.*}, then including @samp{text/html} in this
403 variable will cause @samp{text/html} parts to be treated as attachments.
405 @item mm-text-html-renderer
406 @vindex mm-text-html-renderer
407 This selects the function used to render @acronym{HTML}. The predefined
408 renderers are selected by the symbols @code{shr}, @code{gnus-w3m},
409 @code{w3m}@footnote{See @uref{http://emacs-w3m.namazu.org/} for more
410 information about emacs-w3m}, @code{links}, @code{lynx},
411 @code{w3m-standalone} or @code{html2text}. If @code{nil} use an
412 external viewer. You can also specify a function, which will be
413 called with a @acronym{MIME} handle as the argument.
415 @item mm-html-inhibit-images
416 @vindex mm-html-inhibit-images
417 @vindex mm-inline-text-html-with-images
418 If this is non-@code{nil}, inhibit displaying of images inline in the
419 article body. It is effective to images in @acronym{HTML} articles
420 rendered when @code{mm-text-html-renderer} (@pxref{Display
421 Customization}) is @code{shr} or @code{w3m}. In Gnus, this is
422 overridden by the value of @code{gnus-inhibit-images} (@pxref{Misc
423 Article, ,Misc Article, gnus, Gnus manual}). The default is @code{nil}.
425 @item mm-html-blocked-images
426 @vindex mm-html-blocked-images
427 External images that have @acronym{URL}s that match this regexp won't
428 be fetched and displayed. For instance, to block all @acronym{URL}s
429 that have the string ``ads'' in them, do the following:
432 (setq mm-html-blocked-images "ads")
435 It is effective when @code{mm-text-html-renderer} (@pxref{Display
436 Customization}) is @code{shr}. In Gnus, this is overridden by the value
437 of @code{gnus-blocked-images} or the return value of the function that
438 @code{gnus-blocked-images} is set to (@pxref{HTML, ,HTML, gnus, Gnus
441 Some @acronym{HTML} mails might have the trick of spammers using
442 @samp{<img>} tags. It is likely to be intended to verify whether you
443 have read the mail. You can prevent your personal information from
444 leaking by setting this option to @code{""} (which is the default).
446 @item mm-w3m-safe-url-regexp
447 @vindex mm-w3m-safe-url-regexp
448 A regular expression that matches safe URL names, i.e., URLs that are
449 unlikely to leak personal information when rendering @acronym{HTML}
450 email (the default value is @samp{\\`cid:}). If @code{nil} consider
451 all URLs safe. In Gnus, this will be overridden according to the value
452 of the variable @code{gnus-safe-html-newsgroups}, @xref{Various
453 Various, ,Various Various, gnus, Gnus Manual}.
455 @item mm-inline-text-html-with-w3m-keymap
456 @vindex mm-inline-text-html-with-w3m-keymap
457 You can use emacs-w3m command keys in the inlined text/html part by
458 setting this option to non-@code{nil}. The default value is @code{t}.
460 @item mm-external-terminal-program
461 @vindex mm-external-terminal-program
462 The program used to start an external terminal.
464 @item mm-enable-external
465 @vindex mm-enable-external
466 Indicate whether external @acronym{MIME} handlers should be used.
468 If @code{t}, all defined external @acronym{MIME} handlers are used. If
469 @code{nil}, files are saved to disk (@code{mailcap-save-binary-file}).
470 If it is the symbol @code{ask}, you are prompted before the external
471 @acronym{MIME} handler is invoked.
473 When you launch an attachment through mailcap (@pxref{mailcap}) an
474 attempt is made to use a safe viewer with the safest options---this isn't
475 the case if you save it to disk and launch it in a different way
476 (command line or double-clicking). Anyhow, if you want to be sure not
477 to launch any external programs, set this variable to @code{nil} or
482 @node Files and Directories
483 @section Files and Directories
487 @item mm-default-directory
488 @vindex mm-default-directory
489 The default directory for saving attachments. If @code{nil} use
490 @code{default-directory}.
492 @item mm-tmp-directory
493 @vindex mm-tmp-directory
494 Directory for storing temporary files.
496 @item mm-file-name-rewrite-functions
497 @vindex mm-file-name-rewrite-functions
498 A list of functions used for rewriting file names of @acronym{MIME}
499 parts. Each function is applied successively to the file name.
500 Ready-made functions include
503 @item mm-file-name-delete-control
504 @findex mm-file-name-delete-control
505 Delete all control characters.
507 @item mm-file-name-delete-gotchas
508 @findex mm-file-name-delete-gotchas
509 Delete characters that could have unintended consequences when used
510 with flawed shell scripts, i.e., @samp{|}, @samp{>} and @samp{<}; and
511 @samp{-}, @samp{.} as the first character.
513 @item mm-file-name-delete-whitespace
514 @findex mm-file-name-delete-whitespace
515 Remove all whitespace.
517 @item mm-file-name-trim-whitespace
518 @findex mm-file-name-trim-whitespace
519 Remove leading and trailing whitespace.
521 @item mm-file-name-collapse-whitespace
522 @findex mm-file-name-collapse-whitespace
523 Collapse multiple whitespace characters.
525 @item mm-file-name-replace-whitespace
526 @findex mm-file-name-replace-whitespace
527 @vindex mm-file-name-replace-whitespace
528 Replace whitespace with underscores. Set the variable
529 @code{mm-file-name-replace-whitespace} to any other string if you do
530 not like underscores.
533 The standard Emacs functions @code{capitalize}, @code{downcase},
534 @code{upcase} and @code{upcase-initials} might also prove useful.
536 @item mm-path-name-rewrite-functions
537 @vindex mm-path-name-rewrite-functions
538 List of functions used for rewriting the full file names of @acronym{MIME}
539 parts. This is used when viewing parts externally, and is meant for
540 transforming the absolute name so that non-compliant programs can find
541 the file where it's saved.
548 Here's an example viewer for displaying @code{text/enriched} inline:
551 (defun mm-display-enriched-inline (handle)
554 (mm-insert-part handle)
555 (save-window-excursion
556 (enriched-decode (point-min) (point-max))
557 (setq text (buffer-string))))
558 (mm-insert-inline handle text)))
561 We see that the function takes a @acronym{MIME} handle as its parameter. It
562 then goes to a temporary buffer, inserts the text of the part, does some
563 work on the text, stores the result, goes back to the buffer it was
564 called from and inserts the result.
566 The two important helper functions here are @code{mm-insert-part} and
567 @code{mm-insert-inline}. The first function inserts the text of the
568 handle in the current buffer. It handles charset and/or content
569 transfer decoding. The second function just inserts whatever text you
570 tell it to insert, but it also sets things up so that the text can be
571 ``undisplayed'' in a convenient manner.
577 @cindex MIME Composing
579 @cindex MIME Meta Language
581 Creating a @acronym{MIME} message is boring and non-trivial. Therefore,
582 a library called @code{mml} has been defined that parses a language
583 called @acronym{MML} (@acronym{MIME} Meta Language) and generates
584 @acronym{MIME} messages.
586 @findex mml-generate-mime
587 The main interface function is @code{mml-generate-mime}. It will
588 examine the contents of the current (narrowed-to) buffer and return a
589 string containing the @acronym{MIME} message.
592 * Simple MML Example:: An example @acronym{MML} document.
593 * MML Definition:: All valid @acronym{MML} elements.
594 * Advanced MML Example:: Another example @acronym{MML} document.
595 * Encoding Customization:: Variables that affect encoding.
596 * Charset Translation:: How charsets are mapped from @sc{mule} to @acronym{MIME}.
597 * Conversion:: Going from @acronym{MIME} to @acronym{MML} and vice versa.
598 * Flowed text:: Soft and hard newlines.
602 @node Simple MML Example
603 @section Simple MML Example
605 Here's a simple @samp{multipart/alternative}:
608 <#multipart type=alternative>
609 This is a plain text part.
610 <#part type=text/enriched>
611 <center>This is a centered enriched part</center>
615 After running this through @code{mml-generate-mime}, we get this:
618 Content-Type: multipart/alternative; boundary="=-=-="
624 This is a plain text part.
627 Content-Type: text/enriched
630 <center>This is a centered enriched part</center>
637 @section MML Definition
639 The @acronym{MML} language is very simple. It looks a bit like an SGML
640 application, but it's not.
642 The main concept of @acronym{MML} is the @dfn{part}. Each part can be of a
643 different type or use a different charset. The way to delineate a part
644 is with a @samp{<#part ...>} tag. Multipart parts can be introduced
645 with the @samp{<#multipart ...>} tag. Parts are ended by the
646 @samp{<#/part>} or @samp{<#/multipart>} tags. Parts started with the
647 @samp{<#part ...>} tags are also closed by the next open tag.
649 There's also the @samp{<#external ...>} tag. These introduce
650 @samp{external/message-body} parts.
652 Each tag can contain zero or more parameters on the form
653 @samp{parameter=value}. The values may be enclosed in quotation marks,
654 but that's not necessary unless the value contains white space. So
655 @samp{filename=/home/user/#hello$^yes} is perfectly valid.
657 If you want to talk about MML in a message, you need a way to
658 ``quote'' these tags. The way to do that is to include an exclamation
659 point after the opening two characters; i. e. @samp{<#!part ...>}.
661 The following parameters have meaning in @acronym{MML}; parameters that have no
662 meaning are ignored. The @acronym{MML} parameter names are the same as the
663 @acronym{MIME} parameter names; the things in the parentheses say which
664 header it will be used in.
668 The @acronym{MIME} type of the part (@code{Content-Type}).
671 Use the contents of the file in the body of the part
672 (@code{Content-Disposition}).
674 @item recipient-filename
675 Use this as the file name in the generated @acronym{MIME} message for
676 the recipient. That is, even if the file is called @file{foo.txt}
677 locally, use this name instead in the @code{Content-Disposition} in
681 The contents of the body of the part are to be encoded in the character
682 set specified (@code{Content-Type}). @xref{Charset Translation}.
685 Might be used to suggest a file name if the part is to be saved
686 to a file (@code{Content-Type}).
689 Valid values are @samp{inline} and @samp{attachment}
690 (@code{Content-Disposition}).
693 Valid values are @samp{7bit}, @samp{8bit}, @samp{quoted-printable} and
694 @samp{base64} (@code{Content-Transfer-Encoding}). @xref{Charset
698 A description of the part (@code{Content-Description}).
701 RFC822 date when the part was created (@code{Content-Disposition}).
703 @item modification-date
704 RFC822 date when the part was modified (@code{Content-Disposition}).
707 RFC822 date when the part was read (@code{Content-Disposition}).
710 Who to encrypt/sign the part to. This field is used to override any
711 auto-detection based on the To/CC headers.
714 Identity used to sign the part. This field is used to override the
718 The size (in octets) of the part (@code{Content-Disposition}).
721 What technology to sign this @acronym{MML} part with (@code{smime}, @code{pgp}
725 What technology to encrypt this @acronym{MML} part with (@code{smime},
726 @code{pgp} or @code{pgpmime})
730 Parameters for @samp{text/plain}:
734 Formatting parameter for the text, valid values include @samp{fixed}
735 (the default) and @samp{flowed}. Normally you do not specify this
736 manually, since it requires the textual body to be formatted in a
737 special way described in RFC 2646. @xref{Flowed text}.
740 Parameters for @samp{application/octet-stream}:
744 Type of the part; informal---meant for human readers
745 (@code{Content-Type}).
748 Parameters for @samp{message/external-body}:
752 A word indicating the supported access mechanism by which the file may
753 be obtained. Values include @samp{ftp}, @samp{anon-ftp}, @samp{tftp},
754 @samp{localfile}, and @samp{mailserver}. (@code{Content-Type}.)
757 The RFC822 date after which the file may no longer be fetched.
758 (@code{Content-Type}.)
761 The size (in octets) of the file. (@code{Content-Type}.)
764 Valid values are @samp{read} and @samp{read-write}
765 (@code{Content-Type}).
769 Parameters for @samp{sign=smime}:
774 File containing key and certificate for signer.
778 Parameters for @samp{encrypt=smime}:
783 File containing certificate for recipient.
788 @node Advanced MML Example
789 @section Advanced MML Example
791 Here's a complex multipart message. It's a @samp{multipart/mixed} that
792 contains many parts, one of which is a @samp{multipart/alternative}.
795 <#multipart type=mixed>
796 <#part type=image/jpeg filename=~/rms.jpg disposition=inline>
797 <#multipart type=alternative>
798 This is a plain text part.
799 <#part type=text/enriched name=enriched.txt>
800 <center>This is a centered enriched part</center>
802 This is a new plain text part.
803 <#part disposition=attachment>
804 This plain text part is an attachment.
808 And this is the resulting @acronym{MIME} message:
811 Content-Type: multipart/mixed; boundary="=-=-="
819 Content-Type: image/jpeg;
821 Content-Disposition: inline;
823 Content-Transfer-Encoding: base64
825 /9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRof
826 Hh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/wAALCAAwADABAREA/8QAHwAA
827 AQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQR
828 BRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RF
829 RkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ip
830 qrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/9oACAEB
831 AAA/AO/rifFHjldNuGsrDa0qcSSHkA+gHrXKw+LtWLrMb+RgTyhbr+HSug07xNqV9fQtZrNI
832 AyiaE/NuBPOOOP0rvRNE880KOC8TbXXGCv1FPqjrF4LDR7u5L7SkTFT/ALWOP1xXgTuXfc7E
833 sx6nua6rwp4IvvEM8chCxWxOdzn7wz6V9AaB4S07w9p5itow0rDLSY5Pt9K43xO66P4xs71m
834 2QXiGCbA4yOVJ9+1aYORkdK434lyNH4ahCnG66VT9Nj15JFbPdX0MS43M4VQf5/yr2vSpLnw
835 5ZW8dlCZ8KFXjOPX0/mK6rSPEGt3Angu44fNEReHYNvIH3TzXDeKNO8RX+kSX2ouZkicTIOc
836 L+g7E810ulFjpVtv3bwgB3HJyK5L4quY/C9sVxk3ij/xx6850u7t1mtp/wDlpEw3An3Jr3Dw
837 34gsbWza4nBlhC5LDsaW6+IFgupQyCF3iHH7gA7c9R9ay7zx6t7aX9jHC4smhfBkGCvHGfrm
838 tLQ7hbnRrV1GPkAP1x1/Hr+Ncr8Vzjwrbf8AX6v/AKA9eQRyYlQk8Yx9K6XTNbkgia2ciSIn
839 7p5Ga9Atte0LTLKO6it4i7dVRFJDcZ4PvXN+JvEMF9bILVGXJLSZ4zkjivRPDaeX4b08HOTC
840 pOffmua+KkbS+GLVUGT9tT/0B68eeIpIFYjB70+OOVXyoOM9+M1eaWeCLzHPyHGO/NVWvJJm
841 jQ8KGH1NfQWhXSXmh2c8eArRLwO3HSv/2Q==
844 Content-Type: multipart/alternative; boundary="==-=-="
850 This is a plain text part.
853 Content-Type: text/enriched;
857 <center>This is a centered enriched part</center>
863 This is a new plain text part.
866 Content-Disposition: attachment
869 This plain text part is an attachment.
874 @node Encoding Customization
875 @section Encoding Customization
879 @item mm-body-charset-encoding-alist
880 @vindex mm-body-charset-encoding-alist
881 Mapping from @acronym{MIME} charset to encoding to use. This variable is
882 usually used except, e.g., when other requirements force a specific
883 encoding (digitally signed messages require 7bit encodings). The
887 ((iso-2022-jp . 7bit)
888 (iso-2022-jp-2 . 7bit)
894 As an example, if you do not want to have ISO-8859-1 characters
895 quoted-printable encoded, you may add @code{(iso-8859-1 . 8bit)} to
896 this variable. You can override this setting on a per-message basis
897 by using the @code{encoding} @acronym{MML} tag (@pxref{MML Definition}).
899 @item mm-coding-system-priorities
900 @vindex mm-coding-system-priorities
901 Prioritize coding systems to use for outgoing messages. The default
902 is @code{nil}, which means to use the defaults in Emacs, but is
903 @code{(iso-8859-1 iso-2022-jp utf-8)} when running Emacs in the Japanese
904 language environment. It is a list of coding system symbols (aliases of
905 coding systems are also allowed, use @kbd{M-x describe-coding-system} to
906 make sure you are specifying correct coding system names). For example,
907 if you have configured Emacs to prefer UTF-8, but wish that outgoing
908 messages should be sent in ISO-8859-1 if possible, you can set this
909 variable to @code{(iso-8859-1)}. You can override this setting on a
910 per-message basis by using the @code{charset} @acronym{MML} tag
911 (@pxref{MML Definition}).
913 As different hierarchies prefer different charsets, you may want to set
914 @code{mm-coding-system-priorities} according to the hierarchy in Gnus.
917 @c Corrections about preferred charsets are welcome. de, fr and fj
918 @c should be correct, I don't know about the rest (so these are only
921 (add-to-list 'gnus-newsgroup-variables 'mm-coding-system-priorities)
922 (setq gnus-parameters
924 ;; Some charsets are just examples!
925 '(("^cn\\." ;; Chinese
926 (mm-coding-system-priorities
927 '(iso-8859-1 cn-big5 chinese-iso-7bit utf-8)))
928 ("^cz\\.\\|^pl\\." ;; Central and Eastern European
929 (mm-coding-system-priorities '(iso-8859-2 utf-8)))
930 ("^de\\." ;; German language
931 (mm-coding-system-priorities '(iso-8859-1 iso-8859-15 utf-8)))
933 (mm-coding-system-priorities '(iso-8859-15 iso-8859-1 utf-8)))
934 ("^fj\\." ;; Japanese
935 (mm-coding-system-priorities
936 '(iso-8859-1 iso-2022-jp utf-8)))
937 ("^ru\\." ;; Cyrillic
938 (mm-coding-system-priorities
939 '(koi8-r iso-8859-5 iso-8859-1 utf-8))))
943 @item mm-content-transfer-encoding-defaults
944 @vindex mm-content-transfer-encoding-defaults
945 Mapping from @acronym{MIME} types to encoding to use. This variable is usually
946 used except, e.g., when other requirements force a safer encoding
947 (digitally signed messages require 7bit encoding). Besides the normal
948 @acronym{MIME} encodings, @code{qp-or-base64} may be used to indicate that for
949 each case the most efficient of quoted-printable and base64 should be
952 @code{qp-or-base64} has another effect. It will fold long lines so that
953 MIME parts may not be broken by MTA@. So do @code{quoted-printable} and
956 Note that it affects body encoding only when a part is a raw forwarded
957 message (which will be made by @code{gnus-summary-mail-forward} with the
958 arg 2 for example) or is neither the @samp{text/*} type nor the
959 @samp{message/*} type. Even though in those cases, you can override
960 this setting on a per-message basis by using the @code{encoding}
961 @acronym{MML} tag (@pxref{MML Definition}).
963 @item mm-use-ultra-safe-encoding
964 @vindex mm-use-ultra-safe-encoding
965 When this is non-@code{nil}, it means that textual parts are encoded as
966 quoted-printable if they contain lines longer than 76 characters or
967 starting with "From " in the body. Non-7bit encodings (8bit, binary)
968 are generally disallowed. This reduce the probability that a non-8bit
969 clean MTA or MDA changes the message. This should never be set
970 directly, but bound by other functions when necessary (e.g., when
971 encoding messages that are to be digitally signed).
975 @node Charset Translation
976 @section Charset Translation
979 During translation from @acronym{MML} to @acronym{MIME}, for each
980 @acronym{MIME} part which has been composed inside Emacs, an appropriate
981 charset has to be chosen.
983 @vindex mail-parse-charset
984 If you are running a non-@sc{mule} Emacs, this process is simple: If the
985 part contains any non-@acronym{ASCII} (8-bit) characters, the @acronym{MIME} charset
986 given by @code{mail-parse-charset} (a symbol) is used. (Never set this
987 variable directly, though. If you want to change the default charset,
988 please consult the documentation of the package which you use to process
989 @acronym{MIME} messages.
990 @xref{Various Message Variables, , Various Message Variables, message,
991 Message Manual}, for example.)
992 If there are only @acronym{ASCII} characters, the @acronym{MIME} charset US-ASCII is
998 @vindex mm-mime-mule-charset-alist
999 Things are slightly more complicated when running Emacs with @sc{mule}
1000 support. In this case, a list of the @sc{mule} charsets used in the
1001 part is obtained, and the @sc{mule} charsets are translated to
1002 @acronym{MIME} charsets by consulting the table provided by Emacs itself
1003 or the variable @code{mm-mime-mule-charset-alist} for XEmacs.
1004 If this results in a single @acronym{MIME} charset, this is used to encode
1005 the part. But if the resulting list of @acronym{MIME} charsets contains more
1006 than one element, two things can happen: If it is possible to encode the
1007 part via UTF-8, this charset is used. (For this, Emacs must support
1008 the @code{utf-8} coding system, and the part must consist entirely of
1009 characters which have Unicode counterparts.) If UTF-8 is not available
1010 for some reason, the part is split into several ones, so that each one
1011 can be encoded with a single @acronym{MIME} charset. The part can only be
1012 split at line boundaries, though---if more than one @acronym{MIME} charset is
1013 required to encode a single line, it is not possible to encode the part.
1015 When running Emacs with @sc{mule} support, the preferences for which
1016 coding system to use is inherited from Emacs itself. This means that
1017 if Emacs is set up to prefer UTF-8, it will be used when encoding
1018 messages. You can modify this by altering the
1019 @code{mm-coding-system-priorities} variable though (@pxref{Encoding
1022 The charset to be used can be overridden by setting the @code{charset}
1023 @acronym{MML} tag (@pxref{MML Definition}) when composing the message.
1025 The encoding of characters (quoted-printable, 8bit, etc.)@: is orthogonal
1026 to the discussion here, and is controlled by the variables
1027 @code{mm-body-charset-encoding-alist} and
1028 @code{mm-content-transfer-encoding-defaults} (@pxref{Encoding
1035 A (multipart) @acronym{MIME} message can be converted to @acronym{MML}
1036 with the @code{mime-to-mml} function. It works on the message in the
1037 current buffer, and substitutes @acronym{MML} markup for @acronym{MIME}
1038 boundaries. Non-textual parts do not have their contents in the buffer,
1039 but instead have the contents in separate buffers that are referred to
1040 from the @acronym{MML} tags.
1043 An @acronym{MML} message can be converted back to @acronym{MIME} by the
1044 @code{mml-to-mime} function.
1046 These functions are in certain senses ``lossy''---you will not get back
1047 an identical message if you run @code{mime-to-mml} and then
1048 @code{mml-to-mime}. Not only will trivial things like the order of the
1049 headers differ, but the contents of the headers may also be different.
1050 For instance, the original message may use base64 encoding on text,
1051 while @code{mml-to-mime} may decide to use quoted-printable encoding, and
1054 In essence, however, these two functions should be the inverse of each
1055 other. The resulting contents of the message should remain equivalent,
1060 @section Flowed text
1061 @cindex format=flowed
1063 The Emacs @acronym{MIME} library will respect the @code{use-hard-newlines}
1064 variable (@pxref{Hard and Soft Newlines, ,Hard and Soft Newlines,
1065 emacs, Emacs Manual}) when encoding a message, and the
1066 ``format=flowed'' Content-Type parameter when decoding a message.
1068 On encoding text, regardless of @code{use-hard-newlines}, lines
1069 terminated by soft newline characters are filled together and wrapped
1070 after the column decided by @code{fill-flowed-encode-column}.
1071 Quotation marks (matching @samp{^>* ?}) are respected. The variable
1072 controls how the text will look in a client that does not support
1073 flowed text, the default is to wrap after 66 characters. If hard
1074 newline characters are not present in the buffer, no flow encoding
1077 You can customize the value of the @code{mml-enable-flowed} variable
1078 to enable or disable the flowed encoding usage when newline
1079 characters are present in the buffer.
1081 On decoding flowed text, lines with soft newline characters are filled
1082 together and wrapped after the column decided by
1083 @code{fill-flowed-display-column}. The default is to wrap after
1087 @item mm-fill-flowed
1088 @vindex mm-fill-flowed
1089 If non-@code{nil} a format=flowed article will be displayed flowed.
1093 @node Interface Functions
1094 @chapter Interface Functions
1095 @cindex interface functions
1098 The @code{mail-parse} library is an abstraction over the actual
1099 low-level libraries that are described in the next chapter.
1101 Standards change, and so programs have to change to fit in the new
1102 mold. For instance, RFC2045 describes a syntax for the
1103 @code{Content-Type} header that only allows @acronym{ASCII} characters in the
1104 parameter list. RFC2231 expands on RFC2045 syntax to provide a scheme
1105 for continuation headers and non-@acronym{ASCII} characters.
1107 The traditional way to deal with this is just to update the library
1108 functions to parse the new syntax. However, this is sometimes the wrong
1109 thing to do. In some instances it may be vital to be able to understand
1110 both the old syntax as well as the new syntax, and if there is only one
1111 library, one must choose between the old version of the library and the
1112 new version of the library.
1114 The Emacs @acronym{MIME} library takes a different tack. It defines a
1115 series of low-level libraries (@file{rfc2047.el}, @file{rfc2231.el}
1116 and so on) that parses strictly according to the corresponding
1117 standard. However, normal programs would not use the functions
1118 provided by these libraries directly, but instead use the functions
1119 provided by the @code{mail-parse} library. The functions in this
1120 library are just aliases to the corresponding functions in the latest
1121 low-level libraries. Using this scheme, programs get a consistent
1122 interface they can use, and library developers are free to create
1123 write code that handles new standards.
1125 The following functions are defined by this library:
1128 @item mail-header-parse-content-type
1129 @findex mail-header-parse-content-type
1130 Parse a @code{Content-Type} header and return a list on the following
1135 (attribute1 . value1)
1136 (attribute2 . value2)
1143 (mail-header-parse-content-type
1144 "image/gif; name=\"b980912.gif\"")
1145 @result{} ("image/gif" (name . "b980912.gif"))
1148 @item mail-header-parse-content-disposition
1149 @findex mail-header-parse-content-disposition
1150 Parse a @code{Content-Disposition} header and return a list on the same
1151 format as the function above.
1153 @item mail-content-type-get
1154 @findex mail-content-type-get
1155 Takes two parameters---a list on the format above, and an attribute.
1156 Returns the value of the attribute.
1159 (mail-content-type-get
1160 '("image/gif" (name . "b980912.gif")) 'name)
1161 @result{} "b980912.gif"
1164 @item mail-header-encode-parameter
1165 @findex mail-header-encode-parameter
1166 Takes a parameter string and returns an encoded version of the string.
1167 This is used for parameters in headers like @code{Content-Type} and
1168 @code{Content-Disposition}.
1170 @item mail-header-remove-comments
1171 @findex mail-header-remove-comments
1172 Return a comment-free version of a header.
1175 (mail-header-remove-comments
1176 "Gnus/5.070027 (Pterodactyl Gnus v0.27) (Finnish Landrace)")
1177 @result{} "Gnus/5.070027 "
1180 @item mail-header-remove-whitespace
1181 @findex mail-header-remove-whitespace
1182 Remove linear white space from a header. Space inside quoted strings
1183 and comments is preserved.
1186 (mail-header-remove-whitespace
1187 "image/gif; name=\"Name with spaces\"")
1188 @result{} "image/gif;name=\"Name with spaces\""
1191 @item mail-header-get-comment
1192 @findex mail-header-get-comment
1193 Return the last comment in a header.
1196 (mail-header-get-comment
1197 "Gnus/5.070027 (Pterodactyl Gnus v0.27) (Finnish Landrace)")
1198 @result{} "Finnish Landrace"
1201 @item mail-header-parse-address
1202 @findex mail-header-parse-address
1203 Parse an address and return a list containing the mailbox and the
1207 (mail-header-parse-address
1208 "Hrvoje Niksic <hniksic@@srce.hr>")
1209 @result{} ("hniksic@@srce.hr" . "Hrvoje Niksic")
1212 @item mail-header-parse-addresses
1213 @findex mail-header-parse-addresses
1214 Parse a string with list of addresses and return a list of elements like
1215 the one described above.
1218 (mail-header-parse-addresses
1219 "Hrvoje Niksic <hniksic@@srce.hr>, Steinar Bang <sb@@metis.no>")
1220 @result{} (("hniksic@@srce.hr" . "Hrvoje Niksic")
1221 ("sb@@metis.no" . "Steinar Bang"))
1224 @item mail-header-parse-date
1225 @findex mail-header-parse-date
1226 Parse a date string and return an Emacs time structure.
1228 @item mail-narrow-to-head
1229 @findex mail-narrow-to-head
1230 Narrow the buffer to the header section of the buffer. Point is placed
1231 at the beginning of the narrowed buffer.
1233 @item mail-header-narrow-to-field
1234 @findex mail-header-narrow-to-field
1235 Narrow the buffer to the header under point. Understands continuation
1238 @item mail-header-fold-field
1239 @findex mail-header-fold-field
1240 Fold the header under point.
1242 @item mail-header-unfold-field
1243 @findex mail-header-unfold-field
1244 Unfold the header under point.
1246 @item mail-header-field-value
1247 @findex mail-header-field-value
1248 Return the value of the field under point.
1250 @item mail-encode-encoded-word-region
1251 @findex mail-encode-encoded-word-region
1252 Encode the non-@acronym{ASCII} words in the region. For instance,
1253 @samp{Naïve} is encoded as @samp{=?iso-8859-1?q?Na=EFve?=}.
1255 @item mail-encode-encoded-word-buffer
1256 @findex mail-encode-encoded-word-buffer
1257 Encode the non-@acronym{ASCII} words in the current buffer. This function is
1258 meant to be called narrowed to the headers of a message.
1260 @item mail-encode-encoded-word-string
1261 @findex mail-encode-encoded-word-string
1262 Encode the words that need encoding in a string, and return the result.
1265 (mail-encode-encoded-word-string
1266 "This is naïve, baby")
1267 @result{} "This is =?iso-8859-1?q?na=EFve,?= baby"
1270 @item mail-decode-encoded-word-region
1271 @findex mail-decode-encoded-word-region
1272 Decode the encoded words in the region.
1274 @item mail-decode-encoded-word-string
1275 @findex mail-decode-encoded-word-string
1276 Decode the encoded words in the string and return the result.
1279 (mail-decode-encoded-word-string
1280 "This is =?iso-8859-1?q?na=EFve,?= baby")
1281 @result{} "This is naïve, baby"
1286 Currently, @code{mail-parse} is an abstraction over @code{ietf-drums},
1287 @code{rfc2047}, @code{rfc2045} and @code{rfc2231}. These are documented
1288 in the subsequent sections.
1292 @node Basic Functions
1293 @chapter Basic Functions
1295 This chapter describes the basic, ground-level functions for parsing and
1296 handling. Covered here is parsing @code{From} lines, removing comments
1297 from header lines, decoding encoded words, parsing date headers and so
1298 on. High-level functionality is dealt with in the first chapter
1299 (@pxref{Decoding and Viewing}).
1302 * rfc2045:: Encoding @code{Content-Type} headers.
1303 * rfc2231:: Parsing @code{Content-Type} headers.
1304 * ietf-drums:: Handling mail headers defined by RFC822bis.
1305 * rfc2047:: En/decoding encoded words in headers.
1306 * time-date:: Functions for parsing dates and manipulating time.
1307 * qp:: Quoted-Printable en/decoding.
1308 * base64:: Base64 en/decoding.
1309 * binhex:: Binhex decoding.
1310 * uudecode:: Uuencode decoding.
1311 * yenc:: Yenc decoding.
1312 * rfc1843:: Decoding HZ-encoded text.
1313 * mailcap:: How parts are displayed is specified by the @file{.mailcap} file
1320 RFC2045 is the ``main'' @acronym{MIME} document, and as such, one would
1321 imagine that there would be a lot to implement. But there isn't, since
1322 most of the implementation details are delegated to the subsequent
1325 So @file{rfc2045.el} has only a single function:
1328 @item rfc2045-encode-string
1329 @findex rfc2045-encode-string
1330 Takes a parameter and a value and returns a @samp{PARAM=VALUE} string.
1331 @var{value} will be quoted if there are non-safe characters in it.
1338 RFC2231 defines a syntax for the @code{Content-Type} and
1339 @code{Content-Disposition} headers. Its snappy name is @dfn{MIME
1340 Parameter Value and Encoded Word Extensions: Character Sets, Languages,
1343 In short, these headers look something like this:
1346 Content-Type: application/x-stuff;
1347 title*0*=us-ascii'en'This%20is%20even%20more%20;
1348 title*1*=%2A%2A%2Afun%2A%2A%2A%20;
1352 They usually aren't this bad, though.
1354 The following functions are defined by this library:
1357 @item rfc2231-parse-string
1358 @findex rfc2231-parse-string
1359 Parse a @code{Content-Type} header and return a list describing its
1363 (rfc2231-parse-string
1364 "application/x-stuff;
1365 title*0*=us-ascii'en'This%20is%20even%20more%20;
1366 title*1*=%2A%2A%2Afun%2A%2A%2A%20;
1367 title*2=\"isn't it!\"")
1368 @result{} ("application/x-stuff"
1369 (title . "This is even more ***fun*** isn't it!"))
1372 @item rfc2231-get-value
1373 @findex rfc2231-get-value
1374 Takes one of the lists on the format above and returns
1375 the value of the specified attribute.
1377 @item rfc2231-encode-string
1378 @findex rfc2231-encode-string
1379 Encode a parameter in headers likes @code{Content-Type} and
1380 @code{Content-Disposition}.
1388 @dfn{drums} is an IETF working group that is working on the replacement
1391 The functions provided by this library include:
1394 @item ietf-drums-remove-comments
1395 @findex ietf-drums-remove-comments
1396 Remove the comments from the argument and return the results.
1398 @item ietf-drums-remove-whitespace
1399 @findex ietf-drums-remove-whitespace
1400 Remove linear white space from the string and return the results.
1401 Spaces inside quoted strings and comments are left untouched.
1403 @item ietf-drums-get-comment
1404 @findex ietf-drums-get-comment
1405 Return the last most comment from the string.
1407 @item ietf-drums-parse-address
1408 @findex ietf-drums-parse-address
1409 Parse an address string and return a list that contains the mailbox and
1410 the plain text name.
1412 @item ietf-drums-parse-addresses
1413 @findex ietf-drums-parse-addresses
1414 Parse a string that contains any number of comma-separated addresses and
1415 return a list that contains mailbox/plain text pairs.
1417 @item ietf-drums-parse-date
1418 @findex ietf-drums-parse-date
1419 Parse a date string and return an Emacs time structure.
1421 @item ietf-drums-narrow-to-header
1422 @findex ietf-drums-narrow-to-header
1423 Narrow the buffer to the header section of the current buffer.
1431 RFC2047 (Message Header Extensions for Non-@acronym{ASCII} Text) specifies how
1432 non-@acronym{ASCII} text in headers are to be encoded. This is actually rather
1433 complicated, so a number of variables are necessary to tweak what this
1436 The following variables are tweakable:
1439 @item rfc2047-header-encoding-alist
1440 @vindex rfc2047-header-encoding-alist
1441 This is an alist of header / encoding-type pairs. Its main purpose is
1442 to prevent encoding of certain headers.
1444 The keys can either be header regexps, or @code{t}.
1446 The values can be @code{nil}, in which case the header(s) in question
1447 won't be encoded, @code{mime}, which means that they will be encoded, or
1448 @code{address-mime}, which means the header(s) will be encoded carefully
1449 assuming they contain addresses.
1451 @item rfc2047-charset-encoding-alist
1452 @vindex rfc2047-charset-encoding-alist
1453 RFC2047 specifies two forms of encoding---@code{Q} (a
1454 Quoted-Printable-like encoding) and @code{B} (base64). This alist
1455 specifies which charset should use which encoding.
1457 @item rfc2047-encode-function-alist
1458 @vindex rfc2047-encode-function-alist
1459 This is an alist of encoding / function pairs. The encodings are
1460 @code{Q}, @code{B} and @code{nil}.
1462 @item rfc2047-encoded-word-regexp
1463 @vindex rfc2047-encoded-word-regexp
1464 When decoding words, this library looks for matches to this regexp.
1466 @item rfc2047-encoded-word-regexp-loose
1467 @vindex rfc2047-encoded-word-regexp-loose
1468 This is a version from which the regexp for the Q encoding pattern of
1469 @code{rfc2047-encoded-word-regexp} is made loose.
1471 @item rfc2047-encode-encoded-words
1472 @vindex rfc2047-encode-encoded-words
1473 The boolean variable specifies whether encoded words
1474 (e.g., @samp{=?us-ascii?q?hello?=}) should be encoded again.
1475 @code{rfc2047-encoded-word-regexp} is used to look for such words.
1477 @item rfc2047-allow-irregular-q-encoded-words
1478 @vindex rfc2047-allow-irregular-q-encoded-words
1479 The boolean variable specifies whether irregular Q encoded words
1480 (e.g., @samp{=?us-ascii?q?hello??=}) should be decoded. If it is
1481 non-@code{nil}, @code{rfc2047-encoded-word-regexp-loose} is used instead
1482 of @code{rfc2047-encoded-word-regexp} to look for encoded words.
1486 Those were the variables, and these are this functions:
1489 @item rfc2047-narrow-to-field
1490 @findex rfc2047-narrow-to-field
1491 Narrow the buffer to the header on the current line.
1493 @item rfc2047-encode-message-header
1494 @findex rfc2047-encode-message-header
1495 Should be called narrowed to the header of a message. Encodes according
1496 to @code{rfc2047-header-encoding-alist}.
1498 @item rfc2047-encode-region
1499 @findex rfc2047-encode-region
1500 Encodes all encodable words in the region specified.
1502 @item rfc2047-encode-string
1503 @findex rfc2047-encode-string
1504 Encode a string and return the results.
1506 @item rfc2047-decode-region
1507 @findex rfc2047-decode-region
1508 Decode the encoded words in the region.
1510 @item rfc2047-decode-string
1511 @findex rfc2047-decode-string
1512 Decode a string and return the results.
1514 @item rfc2047-encode-parameter
1515 @findex rfc2047-encode-parameter
1516 Encode a parameter in the RFC2047-like style. This is a substitution
1517 for the @code{rfc2231-encode-string} function, that is the standard but
1518 many mailers don't support it. @xref{rfc2231}.
1526 While not really a part of the @acronym{MIME} library, it is convenient to
1527 document this library here. It deals with parsing @code{Date} headers
1528 and manipulating time. (Not by using tesseracts, though, I'm sorry to
1531 These functions convert between five formats: A date string, an Emacs
1532 time structure, a decoded time list, a second number, and a day number.
1534 Here's a bunch of time/date/second/day examples:
1537 (parse-time-string "Sat Sep 12 12:21:54 1998 +0200")
1538 @result{} (54 21 12 12 9 1998 6 nil 7200)
1540 (date-to-time "Sat Sep 12 12:21:54 1998 +0200")
1541 @result{} (13818 19266)
1543 (parse-iso8601-time-string "1998-09-12T12:21:54+0200")
1544 @result{} (13818 19266)
1546 (float-time '(13818 19266))
1547 @result{} 905595714.0
1549 (seconds-to-time 905595714.0)
1550 @result{} (13818 19266 0 0)
1552 (time-to-days '(13818 19266))
1555 (days-to-time 729644)
1556 @result{} (961933 512)
1558 (time-since '(13818 19266))
1559 @result{} (6797 9607 984839 247000)
1561 (time-less-p '(13818 19266) '(13818 19145))
1564 (time-subtract '(13818 19266) '(13818 19145))
1567 (days-between "Sat Sep 12 12:21:54 1998 +0200"
1568 "Sat Sep 07 12:21:54 1998 +0200")
1571 (date-leap-year-p 2000)
1574 (time-to-day-in-year '(13818 19266))
1577 (time-to-number-of-days
1579 (date-to-time "Mon, 01 Jan 2001 02:22:26 GMT")))
1580 @result{} 4314.095589286675
1583 And finally, we have @code{safe-date-to-time}, which does the same as
1584 @code{date-to-time}, but returns a zero time if the date is
1585 syntactically malformed.
1587 The five data representations used are the following:
1591 An RFC822 (or similar) date string. For instance: @code{"Sat Sep 12
1592 12:21:54 1998 +0200"}.
1595 An internal Emacs time. For instance: @code{(13818 26466 0 0)}.
1598 A floating point representation of the internal Emacs time. For
1599 instance: @code{905595714.0}.
1602 An integer number representing the number of days since 00000101. For
1603 instance: @code{729644}.
1606 A list of decoded time. For instance: @code{(54 21 12 12 9 1998 6 t
1610 All the examples above represent the same moment.
1612 These are the functions available:
1616 Take a date and return a time.
1619 Take a time and return seconds. (This is a built-in function.)
1621 @item seconds-to-time
1622 Take seconds and return a time.
1625 Take a time and return days.
1628 Take days and return a time.
1631 Take a date and return days.
1633 @item time-to-number-of-days
1634 Take a time and return the number of days that represents.
1636 @item safe-date-to-time
1637 Take a date and return a time. If the date is not syntactically valid,
1638 return a ``zero'' time.
1641 Take two times and say whether the first time is less (i.e., earlier)
1642 than the second time. (This is a built-in function.)
1645 Take a time and return a time saying how long it was since that time.
1648 Take two times and subtract the second from the first. I.e., return
1649 the time between the two times. (This is a built-in function.)
1652 Take two days and return the number of days between those two days.
1654 @item date-leap-year-p
1655 Take a year number and say whether it's a leap year.
1657 @item time-to-day-in-year
1658 Take a time and return the day number within the year that the time is
1667 This library deals with decoding and encoding Quoted-Printable text.
1669 Very briefly explained, qp encoding means translating all 8-bit
1670 characters (and lots of control characters) into things that look like
1671 @samp{=EF}; that is, an equal sign followed by the byte encoded as a hex
1674 The following functions are defined by the library:
1677 @item quoted-printable-decode-region
1678 @findex quoted-printable-decode-region
1679 QP-decode all the encoded text in the specified region.
1681 @item quoted-printable-decode-string
1682 @findex quoted-printable-decode-string
1683 Decode the QP-encoded text in a string and return the results.
1685 @item quoted-printable-encode-region
1686 @findex quoted-printable-encode-region
1687 QP-encode all the encodable characters in the specified region. The third
1688 optional parameter @var{fold} specifies whether to fold long lines.
1689 (Long here means 72.)
1691 @item quoted-printable-encode-string
1692 @findex quoted-printable-encode-string
1693 QP-encode all the encodable characters in a string and return the
1703 Base64 is an encoding that encodes three bytes into four characters,
1704 thereby increasing the size by about 33%. The alphabet used for
1705 encoding is very resistant to mangling during transit.
1707 The following functions are defined by this library:
1710 @item base64-encode-region
1711 @findex base64-encode-region
1712 base64 encode the selected region. Return the length of the encoded
1713 text. Optional third argument @var{no-line-break} means do not break
1714 long lines into shorter lines.
1716 @item base64-encode-string
1717 @findex base64-encode-string
1718 base64 encode a string and return the result.
1720 @item base64-decode-region
1721 @findex base64-decode-region
1722 base64 decode the selected region. Return the length of the decoded
1723 text. If the region can't be decoded, return @code{nil} and don't
1726 @item base64-decode-string
1727 @findex base64-decode-string
1728 base64 decode a string and return the result. If the string can't be
1729 decoded, @code{nil} is returned.
1740 @code{binhex} is an encoding that originated in Macintosh environments.
1741 The following function is supplied to deal with these:
1744 @item binhex-decode-region
1745 @findex binhex-decode-region
1746 Decode the encoded text in the region. If given a third parameter, only
1747 decode the @code{binhex} header and return the filename.
1756 @code{uuencode} is probably still the most popular encoding of binaries
1757 used on Usenet, although @code{base64} rules the mail world.
1759 The following function is supplied by this package:
1762 @item uudecode-decode-region
1763 @findex uudecode-decode-region
1764 Decode the text in the region.
1772 @code{yenc} is used for encoding binaries on Usenet. The following
1773 function is supplied by this package:
1776 @item yenc-decode-region
1777 @findex yenc-decode-region
1778 Decode the encoded text in the region.
1789 RFC1843 deals with mixing Chinese and @acronym{ASCII} characters in messages. In
1790 essence, RFC1843 switches between @acronym{ASCII} and Chinese by doing this:
1793 This sentence is in @acronym{ASCII}.
1794 The next sentence is in GB.~@{<:Ky2;S@{#,NpJ)l6HK!#~@}Bye.
1797 Simple enough, and widely used in China.
1799 The following functions are available to handle this encoding:
1802 @item rfc1843-decode-region
1803 Decode HZ-encoded text in the region.
1805 @item rfc1843-decode-string
1806 Decode a HZ-encoded string and return the result.
1814 The @file{~/.mailcap} file is parsed by most @acronym{MIME}-aware message
1815 handlers and describes how elements are supposed to be displayed.
1816 Here's an example file:
1820 audio/wav; wavplayer %s
1821 application/msword; catdoc %s ; copiousoutput ; nametemplate=%s.doc
1824 This says that all image files should be displayed with @code{gimp},
1825 that WAVE audio files should be played by @code{wavplayer}, and that
1826 MS-WORD files should be inlined by @code{catdoc}.
1828 The @code{mailcap} library parses this file, and provides functions for
1832 @item mailcap-mime-data
1833 @vindex mailcap-mime-data
1834 This variable is an alist of alists containing backup viewing rules.
1836 @item mailcap-user-mime-data
1837 @vindex mailcap-user-mime-data
1838 A customizable list of viewers that take preference over
1839 @code{mailcap-mime-data}.
1843 Interface functions:
1846 @item mailcap-parse-mailcaps
1847 @findex mailcap-parse-mailcaps
1848 Parse the @file{~/.mailcap} file.
1850 @item mailcap-mime-info
1851 Takes a @acronym{MIME} type as its argument and returns the matching viewer.
1861 The Emacs @acronym{MIME} library implements handling of various elements
1862 according to a (somewhat) large number of RFCs, drafts and standards
1863 documents. This chapter lists the relevant ones. They can all be
1864 fetched from @uref{http://quimby.gnus.org/notes/}.
1869 Standard for the Format of ARPA Internet Text Messages.
1872 Standard for Interchange of USENET Messages
1875 Format of Internet Message Bodies
1881 Message Header Extensions for Non-@acronym{ASCII} Text
1884 Registration Procedures
1887 Conformance Criteria and Examples
1890 @acronym{MIME} Parameter Value and Encoded Word Extensions: Character Sets,
1891 Languages, and Continuations
1894 HZ---A Data Format for Exchanging Files of Arbitrarily Mixed Chinese and
1895 @acronym{ASCII} characters
1897 @item draft-ietf-drums-msg-fmt-05.txt
1898 Draft for the successor of RFC822
1901 The @acronym{MIME} Multipart/Related Content-type
1904 The Multipart/Report Content Type for the Reporting of Mail System
1905 Administrative Messages
1908 Communicating Presentation Information in Internet Messages: The
1909 Content-Disposition Header Field
1912 Documentation of the text/plain format parameter for flowed text.
1916 @node GNU Free Documentation License
1917 @chapter GNU Free Documentation License
1918 @include doclicense.texi