tm 7.67.
[elisp/tm.git] / tm-mh-e-eng.ol
1 [[R
2 \title{tm-mh-e manual (English Version)}
3 \author{Morioka Tomohiko}
4 \date{1994/8/20}
5 \maketitle
6 ]]R
7
8 * Install
9
10 ** tiny-mime
11
12   Please copy tiny-mime.el to your emacs lisp directory.
13
14
15 ** tm-body
16
17   Please copy tm-body.el, tl-list.el and tl-header.el to your emacs
18 lisp directory.
19
20
21 ** tm-misc
22
23   Please copy tm-misc.el and tl-hook.el to your emacs lisp directory.
24
25
26 ** tm-mh-e
27
28   Please copy tm-mh-e.el and tm-mh-e3.el to your emacs lisp directory.
29
30   If you want to byte-compile tm-mh-e3.el, please do it after you did
31 load mh-e version 3.x.
32
33
34 * .emacs
35
36   Please use mime-setup.
37
38   If you do not want to use mime-setup, insert following list to .
39 emacs.
40
41 [[E
42 ----------------------------------------------------------------------
43 (if (< (string-to-int emacs-version) 19)
44     (progn
45       (require 'tl-18)
46       (defvar buffer-undo-list nil)
47       ))
48
49 (add-hook 'mh-folder-mode-hook
50           (function
51            (lambda ()
52              (require 'tm-mh-e)
53              )))
54 ----------------------------------------------------------------------
55 ]]E
56
57
58 * How to use
59
60 -------------------------------------------------------
61 | key |                function                       |
62 =======================================================
63 | M-t |toggle switch of message header decoding mode  |
64 -------------------------------------------------------
65 |  v  |MIME decode message body and play              |
66 |  e  |MIME decode message body and extract to file(s)|
67 |C-c p|MIME decode message body and print             |
68 -------------------------------------------------------
69
70
71 * How to use metamail
72
73   In normal definition, tm-mh-e use tm-body as MIME body decoder. 
74 However, you can use metamail. In this case, Of course, you need
75 metamail and metamail.el.
76
77   Please insert following list to .emacs if you want to use metamail.
78
79 [[E
80 ----------------------------------------------------------------------
81 (autoload 'metamail-buffer "metamail" nil t)
82 (setq mime/body-decoding-method (function metamail-buffer))
83 ----------------------------------------------------------------------
84 ]]E
85
86   If you use metamail, there are no decoding mode of MIME body
87 decoding. Therefore, functions for `v', `e', `C-c p' are equally
88 `metamail-buffer', and decoding is sequentially.