X-Git-Url: https://cgit.sxemacs.org/?a=blobdiff_plain;f=texi%2Femacs-mime.texi;h=3de34ae88fbda73697a74b8f4e51664ba046f290;hb=9506fb26760bbd9fae1ecc8bc05627ceb847008c;hp=92fa8b48c1370fc07a0a9fa64e2cba5321129cc3;hpb=755710121861d2ab372beaa78bc58871b4c20578;p=gnus diff --git a/texi/emacs-mime.texi b/texi/emacs-mime.texi index 92fa8b48c..3de34ae88 100644 --- a/texi/emacs-mime.texi +++ b/texi/emacs-mime.texi @@ -9,6 +9,7 @@ @direntry * Emacs MIME: (emacs-mime). The MIME de/composition library. @end direntry +@documentencoding ISO-8859-1 @iftex @finalout @end iftex @@ -18,7 +19,7 @@ This file documents the Emacs MIME interface functionality. -Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 +Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document @@ -407,6 +408,22 @@ setting this option to non-@code{nil}. The default value is @code{t}. @vindex mm-external-terminal-program The program used to start an external terminal. +@item mm-enable-external +@vindex mm-enable-external +Indicate whether external @acronym{MIME} handlers should be used. + +If @code{t}, all defined external @acronym{MIME} handlers are used. If +@code{nil}, files are saved to disk (@code{mailcap-save-binary-file}). +If it is the symbol @code{ask}, you are prompted before the external +@acronym{MIME} handler is invoked. + +When you launch an attachment through mailcap (@pxref{mailcap}) an +attempt is made to use a safe viewer with the safest options---this isn't +the case if you save it to disk and launch it in a different way +(command line or double-clicking). Anyhow, if you want to be sure not +to launch any external programs, set this variable to @code{nil} or +@code{ask}. + @end table @node Files and Directories @@ -942,7 +959,7 @@ variable (@pxref{Hard and Soft Newlines, ,Hard and Soft Newlines, emacs, Emacs Manual}) when encoding a message, and the ``format=flowed'' Content-Type parameter when decoding a message. -On encoding text, if @code{use-hard-newlines} is enabled, lines +On encoding text, regardless of @code{use-hard-newlines}, lines terminated by soft newline characters are filled together and wrapped after the column decided by @code{fill-flowed-encode-column}. Quotation marks (matching @samp{^>* ?}) are respected. The variable @@ -956,7 +973,11 @@ together and wrapped after the column decided by @code{fill-flowed-display-column}. The default is to wrap after @code{fill-column}. - +@table @code +@item mm-fill-flowed +@vindex mm-fill-flowed +If non-@code{nil} a format=flowed article will be displayed flowed. +@end table @node Interface Functions @@ -1119,7 +1140,7 @@ Return the value of the field under point. @item mail-encode-encoded-word-region @findex mail-encode-encoded-word-region Encode the non-@acronym{ASCII} words in the region. For instance, -@samp{Naïve} is encoded as @samp{=?iso-8859-1?q?Na=EFve?=}. +@samp{Na@"{@dotless{i}}ve} is encoded as @samp{=?iso-8859-1?q?Na=EFve?=}. @item mail-encode-encoded-word-buffer @findex mail-encode-encoded-word-buffer @@ -1132,7 +1153,7 @@ Encode the words that need encoding in a string, and return the result. @example (mail-encode-encoded-word-string - "This is naïve, baby") + "This is na@"{@dotless{i}}ve, baby") @result{} "This is =?iso-8859-1?q?na=EFve,?= baby" @end example @@ -1147,7 +1168,7 @@ Decode the encoded words in the string and return the result. @example (mail-decode-encoded-word-string "This is =?iso-8859-1?q?na=EFve,?= baby") -@result{} "This is naïve, baby" +@result{} "This is na@"{@dotless{i}}ve, baby" @end example @end table