[[R \title{tm-gnus manual (English Version)} \author{Morioka Tomohiko} \date{1994/7/25} \maketitle ]]R * Install ** tiny-mime Please copy tiny-mime.el to your emacs lisp directory. ** tm-body Please copy tm-body.el, tl-list.el and tl-header.el to your emacs lisp directory. ** tm-misc Please copy tm-misc.el and tl-hook.el to your emacs lisp directory. ** tm-gnus Please copy tm-gnus.el to your emacs lisp directory. * .emacs Please insert following list to .emacs. [[E ---------------------------------------------------------------------- (if (not (fboundp 'add-hook)) (require 'tl-hook) ) (let ((le (function (lambda () (require 'tm-gnus) ))) ) (if (boundp 'MULE) (progn (add-hook 'gnus-Group-mode-hook (function gnusutil-initialize)) (add-hook 'gnus-group-mode-hook (function gnusutil-initialize)) (autoload 'gnusutil-initialize "gnusutil") (autoload 'gnusutil-add-group "gnusutil") (add-hook 'gnusutil-initialize-hook le) ) (progn (add-hook 'gnus-Startup-hook le) (add-hook 'gnus-startup-hook le) ))) ---------------------------------------------------------------------- ]]E * How to use ------------------------------------------------------- | key | function | ======================================================= | M-t |toggle switch of message header decoding mode | ------------------------------------------------------- | v |MIME decode message body and play | | e |MIME decode message body and extract to file(s)| |C-c p|MIME decode message body and print | ------------------------------------------------------- * How to use metamail In normal definition, tm-mh-e use tm-body as MIME body decoder. However, you can use metamail. In this case, Of course, you need metamail and metamail.el. Please insert following list to .emacs if you want to use metamail. [[E ---------------------------------------------------------------------- (autoload 'metamail-buffer "metamail" nil t) (setq mime/body-decoding-method (function metamail-buffer)) ---------------------------------------------------------------------- ]]E If you use metamail, there are no decoding mode of MIME body decoding. Therefore, functions for `v', `e', `C-c p' are equally `metamail-buffer', and decoding is sequentially.