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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
See /usr/share/doc/examples/vm/dot.vm for some options you may well
want to set in ~/.vm - IMO the behaviour without some of these is not
optimal.
See /usr/share/doc/vm/README.hilit19 for a note about using vm with
hilit19.
The files in /usr/lib/emacs/site-lisp/vm/etc are intended for use with
XEmacs; I left them in so that vm will stand a better chance of
working with Xemacs if someone packages it for Debian or installs it
for themselves.
It should also be mentioned here that the documentation for vm is woefully
behind the times; there fore we include /usr/doc/vm/vm-vars.el.gz, which
has information about all customizable variables in vm.
Do not load the library "tm-vm" from the Tiny Mime (TM) package. That
library was designed for an older version of VM, and it breaks current
versions rather badly. It is still fine to use TM to compose mail
messages, though.
There are fast external decoders for common mime transport encodings
bundled into the source packages, and these are available in the
separate mime-codec package. Similar functionality is available in
the metamail package.
;; Uncomment these if you have the package mime-codecs installed
; (setq
; vm-mime-qp-decoder-program "qp-decode"
; vm-mime-qp-encoder-program "qp-encode"
; vm-mime-base64-decoder-program "base64-decode"
; vm-mime-base64-encoder-program "base64-encode"
; )
;; If you have metamail, you would set these instead:
;; (setq vm-mime-base64-decoder-program "mimencode")
;; (setq vm-mime-base64-decoder-switches '("-u" "-b" "-p"))
;; (setq vm-mime-base64-encoder-program "mimencode")
;; (setq vm-mime-base64-encoder-switches '("-b"))
;; (setq vm-mime-qp-decoder-program "mimencode")
;; (setq vm-mime-qp-decoder-switches '("-u" "-q"))
;; (setq vm-mime-qp-encoder-program "mimencode")
;; (setq vm-mime-qp-encoder-switches '("-q"))
arch-tag: 9fe93746-7c4a-4b0c-b1cd-bc2f6713c345
|