1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
A quick tutorial on VM's MIME display variables.
vm-display-using-mime controls whether MIME is displayed specially
at all. Default value is t.
vm-auto-decode-mime-messages controls whether a MIME message is
decoded when the message is selected. Decoding means parsing the
message to figure out what MIME types are in it. This can be
slow for large messages, so you might not want it to happen
automatically. Default value is t.
vm-auto-displayed-mime-content-types controls which MIME types
are displayed immediately after the message is decoded.
Default value is ("text" "multipart").
vm-auto-displayed-mime-content-type-exceptions lists exceptions
to the auto-displayed types. So you can specify "text" as an
auto-displayed type and '("text/html") as the exceptions list to avoid
immediate display of text/html. Default value is nil.
(setq vm-mime-default-face-charsets
'("us-ascii" "iso-8859-1" "iso-8859-2" "iso-8859-3" "iso-8859-4"
"iso-8859-5" "iso-8859-6" "iso-8859-7" "iso-8859-8" "iso-8859-9"
"windows-1251" "windows-1252" "koi8-r" "us-ascii" "X-roman8"
))
arch-tag: 9915b9cc-999d-4481-8021-e83881233281
|