Synch with EMIKO 1.13.12
[elisp/semi.git] / emy.texi
1 \input texinfo.tex              @c -*- texinfo -*-
2
3 @setfilename emy.info
4
5 @set VERSION 1.13
6
7 @dircategory Emacs/MIME
8 @direntry
9 * EMY: (emy).   User guide for EMY.
10 @end direntry
11
12 @settitle EMY @value{VERSION}
13
14 @ifinfo
15 This file describes how to use EMY, MIME user interface which
16 implements SEMI API.
17
18 Copyright (C) 1993, 94, 95, 96, 97, 98, 99 Free Software Foundation, Inc.
19
20 Permission is granted to make and distribute verbatim copies of
21 this manual provided the copyright notice and this permission notice
22 are preserved on all copies.
23
24 @ignore
25 Permission is granted to process this file through TeX and print the
26 results, provided the printed document carries copying permission
27 notice identical to this one except for the removal of this paragraph
28 (this paragraph not being relevant to the printed manual).
29
30 @end ignore
31 Permission is granted to copy and distribute modified versions of this
32 manual under the conditions for verbatim copying, provided that the entire
33 resulting derived work is distributed under the terms of a permission
34 notice identical to this one.
35
36 Permission is granted to copy and distribute translations of this manual
37 into another language, under the above conditions for modified versions,
38 except that this permission notice may be stated in a translation approved
39 by the Free Software Foundation.
40 @end ifinfo
41
42 @titlepage
43 @title EMY
44 @subtitle MIME User Interface implements SEMI API
45 @author Yoshiki Hayashi
46 @page
47 @vskip 0pt plus 1filll
48 Copyright @copyright{} 1993, 94, 95, 96, 97, 98, 99 Free Software
49 Foundation, Inc.
50
51 Permission is granted to make and distribute verbatim copies of
52 this manual provided the copyright notice and this permission notice
53 are preserved on all copies.
54
55 Permission is granted to copy and distribute modified versions of this
56 manual under the conditions for verbatim copying, provided that the entire
57 resulting derived work is distributed under the terms of a permission
58 notice identical to this one.
59
60 Permission is granted to copy and distribute translations of this manual
61 into another language, under the above conditions for modified versions,
62 except that this permission notice may be stated in a translation approved
63 by the Free Software Foundation.
64 @end titlepage
65
66 @ifnottex
67 @node Top
68 @top EMY: An Introduction
69
70 EMY is a MIME interface for Emacs. EMY provides SEMI API, which
71 is specified in a separate document.
72 @c @xref{(semi-api)Top}.
73
74 This manual correspond to EMY version @value{VERSION}.
75 @end ifnottex
76
77 @menu
78 * MIME::                Overview of MIME.
79 * Overview::            What EMY does and doesn't.
80 * MIME-View::           How to View MIME messages.
81 * MIME-Edit::           How to compose MIME messages.
82 @end menu
83
84 @node MIME
85 @chapter Overview of MIME
86
87 MIME stands for Multipurpose Internet Mail Extensions. 
88
89 MIME is built on top of STD11.  MIME enhances semantics of STD11 so that
90 you can send messages other than text/plain and US-ASCII.  MIME does not
91 prohibit use of local conventions.  However, its use is discouraged.
92 It would be nice if all MUA uses MIME to specify character set etc.
93 Then you don't have to be aware of all local conventions in the world.
94
95 Don't assume every MUA can handle MIME correctly.  They might even don't
96 understand MIME.  EMY takes interoperability the first priority.  You
97 must be carefull to choose format that is easy to understand for
98 everyone.  But you don't have to be afraid.  MIME is written in such a
99 way that it can be viewed with non-MIME MUA if its well written.
100
101 EMY is here to make your life easier.  It provides some way to ignore
102 standards to cooperate with broken world.  However, it doesn't allow
103 you to send broken MIME messages.  If you want to same brokenness like
104 them, EMY is not a candidate.  If you really thinks it's needed, you can
105 try persuading me.  Warning: `It's de facto standard' is not enough.
106
107 @menu
108 * Text::                What you normally do.
109 * Content-Types::       You can create messages other than text/plain.
110 @end menu
111
112 @node Text
113 @section Writing text
114
115 (I'll write this sections later).
116
117 @node Content-Types
118 @section Types of message you can use
119
120 @menu
121 * Content-Type::        Details of interpreting Content-Type.
122 @end menu
123
124 @node Content-Type
125 @subsection How things are interpretes with each types
126
127 @node Overview
128 @chapter Some basic things about EMY
129
130 (Not yet written).
131
132 @menu
133 * Customize::           How to customize EMY.
134 @end menu
135
136 @node Customize
137 @section What you should care
138
139 @node MIME-View
140 @chapter Viewing MIME messages
141
142 Right now only differences between SEMI and EMY are documented.
143
144 @menu
145 * Manipulating an Entity::      Changing representation of the part
146 * Changing Entity Button::      Where to add button indicating that entity.
147 * Adding Buttons::              Where you want to see buttons.
148 * How to deal with broken MUA:: Some MUA sends totally broken messages.
149 @end menu
150
151 @node Manipulating an Entity
152 @section Playing with an entity
153
154 You can change the representation of given part in the preview buffer.
155 Following commands are available in preview buffer.
156
157 @table @code
158
159 @item c
160 @kindex c (MIME-View)
161 @findex mime-preview-text
162 Display the part as text/plain with automatic MIME charset
163 detection.  You can specify coding-system if you give a numerical
164 prefix (@code{mime-preview-text}).
165
166 @item i
167 @kindex i (MIME-View)
168 @findex mime-preview-inline
169 Show the contents of the part without code-conversion.  @code{C-u c
170 binary RET} does the same thing (@code{mime-preview-inline}).
171
172 @item t
173 @kindex t (MIME-View)
174 @findex mime-preview-type
175 Represent the part using the method specified by
176 @code{mime-preview-condition}.  When there's no presentation method for
177 given part, nothing is performed (@code{mime-preview-type}).
178
179 @item e
180 @kindex e (MIME-View)
181 @findex mime-preview-extract-current-entity
182 Save content of the part to a file.  It will prompt for you to enter
183 file name (@code{mime-preview-extract-current-entity}).
184
185 @item v
186 @kindex v (MIME-View)
187 @findex mime-preview-play-current-entity
188 Pass the entity to an external program specified by mailcap file
189 (@code{mime-preview-play-current-entity}).
190 @c Need more documentation about mailcap.
191
192 @item b
193 @kindex b (MIME-View)
194 @findex mime-preview-buttonize
195 Buttonize article (@code{mime-preview-buttonize}).
196
197 @item B
198 @kindex B (MIME-View)
199 @findex mime-preview-unbuttonize
200 Unbuttonize article (@code{mime-preview-unbuttonize}).
201
202 @end table
203
204 @table @code
205
206 @item C-c C-t C-h
207 @kindex C-c C-t C-h (MIME-View)
208 @findex mime-preview-toggle-header
209
210 Toggle display of entity header.
211
212 @item C-c C-t C-c
213 @kindex C-c C-t C-c (MIME-View)
214 @findex mime-preview-toggle-content
215
216 Toggle display of entity body.
217
218 @end table
219
220 @node Changing Entity Button
221 @section How buttons look like
222
223 Not yet written.
224
225 @node Adding Buttons
226 @section Add button before, after or around an entity
227
228 @vindex mime-view-button-place-alist
229 You can customize where to add buttons and where to not with
230 @code{mime-view-button-place-alist}.  Unfortunately, there's no variable
231 to change content of the button. It must be an alist of type or
232 type/subtype vs. keywords.
233
234 Three valid keywords are:
235
236 @table @code
237 @item before
238 Add button before given types.
239
240 @item after
241 Add button when another part follows that type.
242
243 @item around
244 Do both @code{before} and @code{after}.
245
246 @end table
247
248 Notice when deciding whether inserting button or not, an entity of same
249 level is consulted as a previous entity.  Let's say a message has
250 following structure and nothing is specified for text/xml.
251
252 @example
253 message/rfc822
254   multipart/mixed
255     text/plain
256     image/jpeg
257   text/xml
258 @end example
259
260 When MIME-View decides text/xml part should have button or not, it
261 checks multipart/mixed has @code{after} or @code{around}, not
262 image/jpeg. This behaviour may be confusing.  In the future version, the
263 very last part's value will be used as well.
264
265 Default value is:
266
267 @lisp
268 ((message . around)
269  (application . before)
270  (multipart/alternative . around))
271 @end lisp
272
273 This means you will have buttons around message/* and
274 multipart/alternative, and before application/*.
275
276 @node How to deal with broken MUA
277 @section Invalid MIME messages
278
279 Some MUAs send totally broken MIME messages.  According to the standard,
280 it's perfectly fine for EMY not to grok those message.  However, EMY
281 tries to extract as much information as possible.  Here's some functions
282 that might help you.
283
284 Some MUAs localized to Japanese sends these strings as a filename
285 parameter of Content-Disposition.
286
287 @example
288 =?ISO-2022-JP?B?GyRCRnxLXDhsGyhC?=
289 @end example
290
291 It looks like encoded-words. This usage is strictly prohibited by RFC
292 2047.  Instead, you should use mechanism described in RFC 2231.
293 If you really want to ``decode'' it when saving it to file, you can use
294 something like this.
295
296 @lisp
297 (mime-add-condition
298  'action
299  '((mode . "extract")
300    (method . mime-save-content-for-broken-message)))
301 @end lisp
302
303 Unfortunately, there's no easy way to customize looking of buttons.
304 It's on EMY's TODO list.
305
306 If you are desperate, you can redefine
307 @code{mime-view-insert-entity-button}.
308
309 @lisp
310 (defun mime-view-insert-entity-button (entity &optional body-is-invisible)
311   "Insert entity-button of ENTITY."
312   (let ((entity-node-id (mime-entity-node-id entity))
313         (params (mime-entity-parameters entity))
314         (subject (eword-decode-string (mime-view-entity-title entity))))
315     (mime-insert-button
316      (concat
317       (let ((access-type (assoc "access-type" params))
318             (num (or (cdr (assoc "x-part-number" params))
319                      (if (consp entity-node-id)
320                          (mapconcat (function
321                                      (lambda (num)
322                                        (format "%s" (1+ num))))
323                                     (reverse entity-node-id) ".")
324                        "0"))))
325         (cond (access-type
326                (let ((server (assoc "server" params)))
327                  (setq access-type (cdr access-type))
328                  (if server
329                      (format "%s %s ([%s] %s)"
330                              num subject access-type (cdr server))
331                    (let ((site (cdr (assoc "site" params)))
332                          (dir (cdr (assoc "directory" params)))
333                          (url (cdr (assoc "url" params))))
334                      (if url
335                          (format "%s %s ([%s] %s)"
336                                  num subject access-type url)
337                        (format "%s %s ([%s] %s:%s)"
338                                num subject access-type site dir))))))
339               (t
340                (let ((media-type (mime-entity-media-type entity))
341                      (media-subtype (mime-entity-media-subtype entity))
342                      (charset (cdr (assoc "charset" params)))
343                      (encoding (mime-entity-encoding entity)))
344                  (concat
345                   num " " subject
346                   (let ((rest
347                          (format " <%s/%s%s%s>"
348                                  media-type media-subtype
349                                  (if charset
350                                      (concat "; " charset)
351                                    "")
352                                  (if encoding
353                                      (concat " (" encoding ")")
354                                    ""))))
355                     (if (>= (+ (current-column)(length rest))(window-width))
356                         "\n\t")
357                     rest))))))
358       (if body-is-invisible
359           " ..."
360         ""))
361      (function mime-preview-play-current-entity))))
362 @end lisp
363
364 @strong{Note:} These settings are unsupported until better way is
365 implemented.
366
367 @node MIME-Edit
368 @chapter Composing MIME messages
369
370 @vindex mime-edit-attach-at-end-type (MIME-Edit)
371 When you are editing MIME message, you might want to insert some part at
372 the end of your message.  Some MUA are known to have some problems when
373 last part is not an attachment. 
374
375 If you want to do this, @code{mime-edit-attach-at-end-type} is your
376 friend. This variable is list of MIME types or type/subtypes inserted
377 at the last part. When only type is specified, it will affect all
378 subtypes of that type.
379
380 If you want insert application/* and message/rfc822 at the end,
381 you can do like this:
382
383 @lisp
384 (setq mime-edit-attach-at-end-types
385       '(application message/rfc822))
386 @end lisp
387
388 @bye