(mime-acting-condition): Modify order.
[elisp/semi.git] / README.en
1 [README for SEMI kernel package (English Version)]
2 by MORIOKA Tomohiko <morioka@jaist.ac.jp>
3 $Id: README.en,v 1.8 1998-04-13 15:36:57 morioka Exp $
4
5 What's SEMI?
6 ------------
7
8   SEMI is a library to provide MIME feature for GNU Emacs.  MIME is a
9   proposed internet standard for including content and headers other
10   than (ASCII) plain text in messages.
11
12         RFC 2045 : Internet Message Bodies
13         RFC 2046 : Media Types
14         RFC 2047 : Message Header Extensions
15         RFC 2048 : MIME Registration Procedures
16         RFC 2049 : MIME Conformance
17
18   SEMI has the following features:
19
20         - MIME style multilingual header (RFC 2047)
21         - MIME message viewer   (mime-view-mode) (RFC 2045 .. 2049)
22         - MIME message composer (mime-edit-mode) (RFC 2045 .. 2049)
23
24   MIME message viewer and composer also support following features:
25
26         - filename handling by Content-Disposition field (RFC 1806)
27         - PGP/MIME security Multiparts (RFC 2015)
28         - application/pgp (draft-kazu-pgp-mime-00.txt; obsolete)
29         - text/richtext (RFC 1521; obsolete; preview only)
30         - text/enriched (RFC 1896)
31
32   Notice that this package does not contain MIME extender for any
33   MUAs and external methods.  They are released as separated packages.
34
35
36 Required environment
37 --------------------
38
39   SEMI supports XEmacs 20.2 or later with mule, and Emacs 20.
40
41   SEMI does not support anything older than Emacs 19.28 or XEmacs
42   19.14.  SEMI also does not support Emacs 19.29 to 19.34, XEmacs
43   19.15 or XEmacs 20.2 without mule, but SEMI may work with them.
44
45   If you use Emacs 20, don't set `enable-multibyte-characters' to
46   nil. (Maybe non mule setting requires to modify emu.  In addition,
47   it is better to use terminal-coding-system feature)
48
49   SEMI requires APEL (8.2 or later) and FLIM package.  Please install
50   them before installing it.  APEL package is available at:
51
52         ftp://ftp.jaist.ac.jp/pub/GNU/elisp/apel/
53
54   and FLIM package is available at:
55
56         ftp://ftp.jaist.ac.jp/pub/GNU/elisp/flim/
57
58   PGP/MIME and application/pgp require mailcrypt or tiny-pgp package.
59
60   The package enriched.el is required to compose text/enriched, so if
61   you use Emacs anything 19.28 or older (including official version of
62   MULE 2.3), WYSIWYG composing for text/enriched is not available.
63
64
65 Installation
66 ------------
67
68         % make install
69
70   You can specify the emacs command name, for example
71
72         % make install EMACS=xemacs
73
74   If `EMACS=...' is omitted, EMACS=emacs is used.
75
76   You can specify the prefix of the directory tree for Emacs Lisp
77   programs and shell scripts, for example:
78
79         % make install PREFIX=~/
80
81   If `PREFIX=...' is omitted, the prefix of the directory tree of the
82   specified emacs command is used (perhaps /usr/local).
83
84   For example, if PREFIX=/usr/local and EMACS 19.34 is specified, it
85   will create the following directory tree:
86
87         /usr/local/share/emacs/19.34/site-lisp/  --- emu
88         /usr/local/share/emacs/site-lisp/apel/   --- APEL
89         /usr/local/share/emacs/site-lisp/flim/   --- FLIM
90         /usr/local/share/emacs/site-lisp/semi/   --- SEMI
91
92   You can specify site-lisp directory, for example
93
94         % make install LISPDIR=~/share/emacs/lisp
95
96   If `LISPDIR=...' is omitted, site-lisp directory of the specified
97   emacs command is used (perhaps /usr/local/share/emacs/site-lisp or
98   /usr/local/lib/xemacs/site-lisp).
99
100   You can specify other optional settings by editing the file
101   semi/SEMI-CFG.  Please read semi/README.en and comments in
102   semi/SEMI-CFG.
103
104
105 Initialization
106 --------------
107
108 (a) load-path
109
110   If you are using Emacs or Mule, please add directory of emu, apel,
111   flim and semi to load-path.  If you install by default setting, you
112   can write subdirs.el for example:
113
114   --------------------------------------------------------------------
115   (normal-top-level-add-to-load-path
116    '("apel" "flim" "semi"))
117   --------------------------------------------------------------------
118
119   If you are using XEmacs, there are no need of setting about
120   load-path.
121
122 (b) mime-setup
123
124   Please insert the following into your ~/.emacs:
125
126         (load "mime-setup")
127
128
129 Documentation
130 -------------
131
132   To get started, please read semi/README.en.
133
134   RFC's 822, 1806, 1847, 1896, 2015, 2045, 2046, 2047, 2048 and 2049
135   are available via anonymous ftp:
136   ftp://ds.internic.net/rfc/
137
138
139 Bug reports
140 -----------
141
142   If you write bug-reports and/or suggestions for improvement, please
143   send them to the tm Mailing List:
144
145         bug-tm-en@chamonix.jaist.ac.jp  (English)
146         bug-tm-ja@chamonix.jaist.ac.jp  (Japanese)
147
148   Via the tm ML, you can report SEMI bugs, obtain the latest release
149   of SEMI, and discuss future enhancements to SEMI.  To join the tm
150   ML, send an empty e-mail to
151
152         tm-en-help@chamonix.jaist.ac.jp (English)
153         tm-ja-help@chamonix.jaist.ac.jp (Japanese)