diff options
Diffstat (limited to 'man/emacs-mime.texi')
-rw-r--r-- | man/emacs-mime.texi | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/man/emacs-mime.texi b/man/emacs-mime.texi index 35dbe1e5797..9df33969bec 100644 --- a/man/emacs-mime.texi +++ b/man/emacs-mime.texi @@ -322,6 +322,30 @@ you could say something like: (remove "text/html" mm-automatic-display)) @end lisp +Adding @code{"image/.*"} might also be useful. Spammers use it as the +prefered part of @samp{multipart/alternative} messages, and you might +not notice there are other parts. See also +@code{gnus-buttonized-mime-types} (@pxref{MIME Commands, ,MIME Commands, +gnus, Gnus Manual}), to which adding @code{"multipart/alternative"} +enables you to choose manually one of two types those mails include. +For example, you can set those variables like: + +@lisp +(setq gnus-buttonized-mime-types + '("multipart/alternative" "multipart/signed") + mm-discouraged-alternatives + '("text/html" "image/.*")) +@end lisp + +In this case, Gnus will display radio buttons for such a kind of spam +message as follows: + +@example +1. (*) multipart/alternative ( ) image/gif + +2. (*) text/plain ( ) text/html +@end example + @item mm-inline-large-images @vindex mm-inline-large-images When displaying inline images that are larger than the window, Emacs |