Initial Commit
[packages] / xemacs-packages / mew / mew / 00readme
1                             <Installation>
2                             Kazu Yamamoto
3                              Oct 20, 1999
4
5 Emacs 19.28, 19.34 and 20.3 or later, Mule version 2.3 based on Emacs
6 19.28 or 19.34, and XEmacs 20.4 or later are supposed to be officially
7 supported. Mew may support beta versions of Emacs but Mew conforms the
8 spec of official release when available.
9
10 Support for Emacs 18, Mule 1 and XEmacs 19 and 20.3 is OBSOLETE,
11 sorry.
12
13 (0) Mew requires Perl 5.004_04 (note that 5.004 is buggy) or later and
14 IM. Install them in order before installing Mew. They can be found in
15 the followings:
16
17         http://www.perl.com/CPAN/src/5.0/
18         ftp://ftp.Mew.org/pub/Mew/
19
20 (1) Edit "Makefile" as you like.
21
22 (2) Type 'make'.
23
24 (3) Type 'make install'.
25
26 (4) Mew's info is formatted by Emacs 20.4. So, the info could not be
27 visible with other Emacsen like XEmacs. In this case, type 'make info'
28 to format the info.
29
30 (4.1) If you want to format the Japanese info, type 'make jinfo'.
31
32 (5) Type 'make install-info'. If you have the "install-info" command,
33 the the following line will be automatically added to the "dir" file.
34 Otherwise, add it by yourself.
35
36 ---
37 * Mew: (mew.info).      Messaging in the Emacs World
38 ---
39
40 (5.1) If you want the Japanese info, type 'make install-jinfo'. If you
41 have the "install-info" command, the the following line will be
42 automatically added to the "dir" file.  Otherwise, add it by yourself.
43
44 ---
45 * Mew-J: (mew.jis.info).  Messaging in the Emacs World
46 ---
47
48 (6) Copy the contents in the "etc" directory to anywhere, say
49 "/usr/local/lib/xemacs-20.4/etc/mew". 'make install-etc' would help.
50
51 (7) Add the following to "~/.emacs" or your site environment file.
52
53         (autoload 'mew "mew" nil t)
54         (autoload 'mew-send "mew" nil t)
55         (setq mew-mail-domain-list '("your mail domain"))
56         (setq mew-icon-directory "/usr/local/lib/xemacs-20.4/etc/mew")
57
58 Note that you need to set mew-icon-directory the directory in the
59 stage (6).
60
61 Optionally, add the following. This links Mew to other packages. For
62 example, Mew is used when you write reports on Emacs's bugs.
63
64         (autoload 'mew-user-agent-compose "mew" nil t)
65         (if (boundp 'mail-user-agent)
66             (setq mail-user-agent 'mew-user-agent))
67         (if (fboundp 'define-mail-user-agent)
68             (define-mail-user-agent
69               'mew-user-agent
70               'mew-user-agent-compose
71               'mew-draft-send-letter
72               'mew-draft-kill
73               'mew-send-hook))
74
75 (8) Please check "mew.dot.emacs". Cut parts or the entire of the file
76 then add to "~/.emacs".
77
78 (9) On XEmacs, click the "Mail" tool button to start Mew. You should
79 copy "mew.dot.emacs" into your "~/.emacs".  If cute cats are displayed
80 and no error occurs, you succeeded. On text Emacs, type 'M-x mew' to
81 execute Mew. In this case, the old demo will start.
82
83 (10) For more information, see "00readme" contained sub-directories.
84
85 If you are Japanese, please give a look at "patches/00readme.jis".
86
87 Useful information may be found from the following web page:
88
89         http://www.Mew.org/
90
91 --End of file