f3bbf8a8199d4c402db35bf42b513331a88f8c1c
[elisp/flim.git] / mime-en.texi
1 \input texinfo.tex
2 @setfilename mime-en.info
3 @settitle{FLIM 1.9 Manual about MIME Features}
4 @titlepage
5 @title FLIM 1.9 Manual about MIME Features
6 @author MORIOKA Tomohiko <morioka@@jaist.ac.jp>
7 @subtitle 1998/07/01
8 @end titlepage
9 @node Top, Introduction, (dir), (dir)
10 @top FLIM 1.9 Manual about MIME Features
11
12 @ifinfo
13
14 This file documents MIME features of FLIM, a Internet message
15 parsing/encoding library for GNU Emacs.
16 @end ifinfo
17
18 @menu
19 * Introduction::                What is FLIM?
20 * How to use::                  How to use MIME features
21 * Entity::                      Message and Entity
22 * Content-Type::                Information of Content-Type field
23 * Content-Disposition::         Information of Content-Disposition field
24 * Content-Transfer-Encoding::   Encoding Method
25 * encoded-word::                Network representation of header
26 * custom::                      Various Customization
27 * Appendix::                    
28 * Concept Index::               
29 * Function Index::              
30 * Variable Index::              
31 @end menu
32
33 @node Introduction, How to use, Top, Top
34 @chapter What is FLIM?
35
36 FLIM is a library to provide basic features about message
37 representation or encoding.
38
39
40 @node How to use, Entity, Introduction, Top
41 @chapter How to use MIME features
42
43 Please eval following to use MIME features provided by FLIM:
44
45 @lisp
46 (require 'mime)
47 @end lisp
48
49
50
51 @node Entity, Content-Type, How to use, Top
52 @chapter Message and Entity
53 @cindex mime-entity
54 @cindex entity
55
56 According to RFC 2045 (@ref{RFC 2045}), `The term ``entity'', refers
57 specifically to the MIME-defined header fields and contents of either a
58 message or one of the parts in the body of a multipart entity.'  In this
59 document, the term @strong{entity} indicates all of header fields and
60 body.@refill
61
62 The definition of RFC 2045 indicates that a MIME message is a tree, and
63 each node of the tree is an entity.  Namely MIME extends message to tree
64 structure.@refill
65
66 FLIM uses @strong{mime-entity} structure to represent
67 information of entity.  In this document, it is called simply
68 `mime-entity'.
69
70
71 @menu
72 * Entity creation::             Functions to create mime-entity
73 * Entity hierarchy::            Features about message tree
74 * Entity Attributes::           Functions about attributes of mime-entity
75 * Entity-header::               Information of entity header
76 * Entity-content::              Contents of Entity
77 * Entity buffer::               Entity as buffer representation
78 * mm-backend::                  Entity representations and implementations
79 @end menu
80
81 @node Entity creation, Entity hierarchy, Entity, Entity
82 @section Functions to create mime-entity
83
84 @defun mime-open-entity &optional  type location
85
86 Open an entity and return it.@refill
87
88 @var{type} is representation-type. (cf. @ref{mm-backend}) @refill
89
90 @var{location} is location of entity.  Specification of it is depended
91 on representation-type.
92 @end defun
93
94
95 @defun mime-parse-buffer &optional  buffer type
96
97 Parse @var{buffer} as message, and set the result to buffer local
98 variable @code{mime-message-structure} of @var{buffer} as
99 mime-entity.@refill
100
101 If @var{buffer} is omitted, current buffer is used.@refill
102
103 @var{type} is representation-type of created
104 mime-entity. (cf. @ref{mm-backend}) Default value is @var{buffer}.
105 @end defun
106
107
108
109 @node Entity hierarchy, Entity Attributes, Entity creation, Entity
110 @section Features about message tree
111 @cindex node-id
112 @cindex entity-number
113 @cindex message
114 @cindex root-entity
115
116 Structure of a MIME message is tree.@refill
117
118 In the tree, root node is the entity indicates all of the message.  In
119 this document, it is called @strong{root-entity} or @strong{message}.
120 In FLIM, it is indicated by buffer local variable
121 @code{mime-message-structure}.@refill
122
123 Each entity except root-entity has a parent.  An entity may have
124 children.  We can indicate an entity by relative position from a base
125 entity, based on the parent-child relationship.@refill
126
127 In addition, we can indicate an entity by absolute position of the
128 message.@refill
129
130 Each entity, which is a node of the tree, can be numbered by
131 depth and left-to-right order of the depth.
132 @example
133
134                               +-------+
135                               |  nil  |
136                               +---+---+
137               +-------------------+-------------------+
138             +-+-+               +-+-+               +-+-+
139             | 0 |               | 1 |               | 2 |
140             +-+-+               +-+-+               +-+-+
141               |         +---------+---------+         |
142            +--+--+   +--+--+   +--+--+   +--+--+   +--+--+
143            | 0.0 |   | 1.0 |   | 1.1 |   | 1.2 |   | 2.0 |
144            +-----+   +-----+   +-----+   +-----+   +-----+
145 @end example
146
147 Namely, if depth of a node is n, the node has a node-number, which is
148 consists of n integers.  In this document, it is called
149 @strong{entity-number}.  An entity-number is represented by list of
150 integer, like @code{(1 2 3)}.@refill
151
152 mime-entity has also @strong{node-id}.  A node-id is represented by
153 reversed list of entity-number.  For example, node-id corresponding with
154 1.2.3 is @code{(3 2 1)}.@refill
155
156 Each entity can be indicated by entity-number or node-id in
157 @code{mime-message-structure}.
158
159 @defvar mime-message-structure
160
161 Buffer local variable to store mime-entity structure of message.
162 @end defvar
163
164
165 @defun mime-entity-children entity
166
167 Return list of entities included in the @var{entity}.
168 @end defun
169
170
171 @defun mime-entity-parent entity  &optional  message
172
173 Return parent entity of the @var{entity}.@refill
174
175 If @var{message} is specified, it is regarded as root instead of
176 @code{mime-message-structure}.
177 @end defun
178
179
180 @defun mime-root-entity-p entity
181
182 Return non-@code{nil} if @var{entity} is root entity (message).
183 @end defun
184
185
186 @defun mime-entity-node-id entity
187
188 Return node-id of @var{entity}.
189 @end defun
190
191
192 @defun mime-entity-number entity
193
194 Return entity-number of @var{entity}.
195 @end defun
196
197
198 @defun mime-find-entity-from-number entity-number  &optional  message
199
200 Return entity from @var{entity-number} in @var{message}.@refill
201
202 If @var{message} is not specified, @code{mime-message-structure} is
203 used.
204 @end defun
205
206
207 @defun mime-find-entity-from-node-id entity-node-id  &optional  message
208
209 Return entity from @var{entity-node-id} in @var{message}.@refill
210
211 If @var{message} is not specified, @code{mime-message-structure} is
212 used.
213 @end defun
214
215
216
217 @node Entity Attributes, Entity-header, Entity hierarchy, Entity
218 @section Functions about attributes of mime-entity
219
220 @defun mime-entity-content-type entity
221
222 Return content-type of @var{entity}.  (cf. @ref{mime-content-type})
223 @end defun
224
225
226 @defun mime-entity-content-disposition entity
227
228 Return content-disposition of
229 @var{entity}. (cf. @ref{mime-content-disposition})
230 @end defun
231
232
233 @defun mime-entity-filename entity
234
235 Return file name of @var{entity}.
236 @end defun
237
238
239 @defun mime-entity-encoding entity  &optional  default-encoding
240
241 Return content-transfer-encoding of @var{entity}.
242 (cf. @ref{Content-Transfer-Encoding}) @refill
243
244 If the @var{entity} does not have Content-Transfer-Encoding field, this
245 function returns @var{default-encoding}.  If it is nil, @code{"7bit"} is
246 used as default value.
247 @end defun
248
249
250 @defun mime-entity-cooked-p entity
251
252 Return non-nil if contents of @var{entity} has been already
253 code-converted.
254 @end defun
255
256
257
258 @node Entity-header, Entity-content, Entity Attributes, Entity
259 @section Information of entity header
260
261 @defun mime-fetch-field field-name  &optional  entity
262
263 Return field-body of @var{field-name} field in header of
264 @var{entity}.@refill
265
266 The results is network representation.@refill
267
268 If @var{entity} is omitted, @code{mime-message-structure} is used as
269 default value.@refill
270
271 If @var{field-name} field is not found, this function returns
272 @code{nil}.
273 @end defun
274
275
276 @defun mime-read-field field-name  &optional  entity
277
278 Parse @var{field-name} field in header of @var{entity}, and return the
279 result.@refill
280
281 Format of result is depended on kind of field.  For non-structured
282 field, this function returns string.  For structured field, it returns
283 list corresponding with structure of the field.@refill
284
285 Strings in the result will be converted to internal representation of
286 Emacs.@refill
287
288 If @var{entity} is omitted, @code{mime-message-structure} is used as
289 default value.@refill
290
291 If @var{field-name} field is not found, this function returns
292 @code{nil}.
293 @end defun
294
295
296 @defun mime-insert-decoded-header entity  &optional  invisible-fields visible-fields
297
298 Insert before point a decoded contents of header of @var{entity}.@refill
299
300 @var{invisible-fields} is list of regexps to match field-name to hide.
301 @var{visible-fields} is list of regexps to match field-name to
302 hide.@refill
303
304 If a field-name is matched with some elements of @var{invisible-fields}
305 and matched with none of @var{visible-fields}, this function don't
306 insert the field.
307 @end defun
308
309
310
311 @node Entity-content, Entity buffer, Entity-header, Entity
312 @section Contents of Entity
313
314 @defun mime-entity-content entity
315
316 Return content of @var{entity} as byte sequence.
317 @end defun
318
319
320 @defun mime-write-entity-content entity filename
321
322 Write content of @var{entity} into @var{filename}.
323 @end defun
324
325
326 @defun mime-write-entity entity filename
327
328 Write representation of @var{entity} into @var{filename}.
329 @end defun
330
331
332 @defun mime-write-entity-body entity filename
333
334 Write body of @var{entity} into @var{filename}.
335 @end defun
336
337
338
339 @node Entity buffer, mm-backend, Entity-content, Entity
340 @section Entity as buffer representation
341
342 @defun mime-entity-buffer entity
343
344 Return buffer, which contains @var{entity}.
345 @end defun
346
347
348 @defun mime-entity-point-min entity
349
350 Return the start point of @var{entity} in the buffer which contains
351 @var{entity}.
352 @end defun
353
354
355 @defun mime-entity-point-max entity
356
357 Return the end point of @var{entity} in the buffer which contains
358 @var{entity}.
359 @end defun
360
361
362 @defun mime-entity-header-start entity
363
364 Return the start point of header of @var{entity} in the buffer which
365 contains @var{entity}.
366 @end defun
367
368
369 @defun mime-entity-header-end entity
370
371 Return the end point of header of @var{entity} in the buffer which
372 contains @var{entity}.
373 @end defun
374
375
376 @defun mime-entity-body-start entity
377
378 Return the start point of body of @var{entity} in the buffer which
379 contains @var{entity}.
380 @end defun
381
382
383 @defun mime-entity-body-end entity
384
385 Return the end point of body of @var{entity} in the buffer which
386 contains @var{entity}.
387 @end defun
388
389
390
391 @node mm-backend,  , Entity buffer, Entity
392 @section Entity representations and implementations
393 @cindex mm-backend
394 @cindex entity processing method
395 @cindex representation-type
396
397 Entity is an abstraction.  It is designed to use various data
398 representations for their purposes.@refill
399
400 Each entity has @strong{representation-type}.  It must be specified when
401 an entity is created. (cf. @ref{Entity Creation}) @refill
402
403 Functions about entity are implemented by request processing to the
404 entity.  Each entity knows its representation-type.  Each entity calls
405 processing function corresponding with the representation-type.  Such
406 kind of function is called @strong{entity processing method}.  A module,
407 consists of them corresponding with a representation-type, is called
408 @strong{mm-backend}.@refill
409
410 Module name of each mm-backend consists of the prefix @code{mm}
411 and its representation-type.  The module is required automatically
412 when its entity is created at first.
413
414
415 @menu
416 * Request for entity::          Message-passing for entity
417 * mm-backend module::           How to make mm-backend
418 @end menu
419
420 @node Request for entity, mm-backend module, mm-backend, mm-backend
421 @subsection Message-passing for entity
422
423 @defun mime-entity-send entity message  &rest  args
424
425 Send @var{message} to @var{entity} with @var{args}, and return the
426 result.@refill
427
428 @var{args} is arguments of the @var{message}.
429 @end defun
430
431
432
433 @node mm-backend module,  , Request for entity, mm-backend
434 @subsection How to make mm-backend
435
436 (It is not written yet, sorry. (^_^;)@refill
437
438 (Please read mm*.el)
439
440
441 @node Content-Type, Content-Disposition, Entity, Top
442 @chapter Information of Content-Type field
443 @cindex mime-content-type
444 @cindex Content-Type field
445
446 @strong{Content-Type field} is a field to indicate kind of contents or
447 data format, such as media-type (@ref{media-type}) and MIME charset.  It
448 is defined in RFC 2045 (@ref{RFC 2045}).
449
450 @noindent
451 @strong{[Memo]}
452 @quotation
453
454 Historically, Content-Type field was proposed in RFC 1049.  In it,
455 Content-Type did not distinguish type and subtype, and there are no
456 mechanism to represent kind of character code like MIME charset.
457 @end quotation
458
459
460 FLIM provides parser for Content-Type field and structure
461 @strong{mime-content-type} to store information of
462 Content-Type field.
463
464
465 @menu
466 * Content-Type field::          Format of Content-Type field
467 * mime-content-type::           mime-content-type structure
468 * Content-Type parser::         Parser
469 * Content-Type utility::        Utility functions
470 @end menu
471
472 @node Content-Type field, mime-content-type, Content-Type, Content-Type
473 @section Format of Content-Type field
474 @cindex parameter
475 @cindex subtype
476 @cindex type
477
478 Format of Content-Type field is defined as follows:
479
480 @quotation
481 ``Content-Type'' ``:'' @strong{type} ``/''
482 @strong{subtype} *( ``;'' @strong{parameter} )
483 @end quotation
484
485 For example:
486
487 @quotation
488 @example
489 Content-Type: image/jpeg
490 @end example
491 @end quotation
492
493
494 @quotation
495 @example
496 Content-Type: text/plain; charset=iso-2022-jp
497 @end example
498 @end quotation
499
500 `type' and `subtype' indicate format of an entity.  In this document,
501 pair of them is called `media-type'.  `image/jpeg' or `text/plain' is
502 a media-type.
503
504 @noindent
505 @strong{[Memo]}
506 @quotation
507
508 If an entity does not have Content-Type field, it is regarded as
509 following:
510
511 @quotation
512 @example
513 Content-Type: text/plain; charset=us-ascii
514 @end example
515 @end quotation
516
517 @noindent
518 (cf. @ref{us-ascii})
519 @end quotation
520
521
522
523 @node mime-content-type, Content-Type parser, Content-Type field, Content-Type
524 @section mime-content-type structure
525
526 @deffn{Structure} mime-content-type
527
528 Structure to store information of a Content-Type field.@refill
529
530 Applications should use reference functions
531 @code{mime-content-type-SLOT} to refer information of the
532 structure.@refill
533
534 Slots of the structure are following:
535
536 @table @var
537 @item primary-type
538 primary type of media-type (symbol).
539
540 @item subtype
541 subtype of media-type (symbol).
542
543 @item parameters
544 parameters of Content-Type field (association-list).
545
546 @end table
547 @end deffn
548
549
550 @defun make-mime-content-type type subtype
551            &optional  parameters
552
553 Constructor of content-type.
554 @end defun
555
556
557 @defun mime-content-type-parameter content-type parameter
558
559 Return value of @var{parameter} of @var{content-type}.
560 @end defun
561
562
563
564 @node Content-Type parser, Content-Type utility, mime-content-type, Content-Type
565 @section Parser
566
567 @defun mime-parse-Content-Type string
568
569 Parse @var{string} as field-body of Content-Type field.
570 @end defun
571
572
573 @defun mime-read-Content-Type
574
575 Read field-body of Content-Type field from current-buffer, and return
576 parsed it.@refill
577
578 Return @code{nil} if Content-Type field is not found.
579 @end defun
580
581
582
583 @node Content-Type utility,  , Content-Type parser, Content-Type
584 @section Utility functions
585
586 @defun mime-type/subtype-string type  &optional  subtype
587
588 Return type/subtype string from @var{type} and @var{subtype}.
589 @end defun
590
591
592
593 @node Content-Disposition, Content-Transfer-Encoding, Content-Type, Top
594 @chapter Information of Content-Disposition field
595 @cindex mime-content-disposition
596 @cindex RFC 2183
597 @cindex Standards Track
598 @cindex Content-Disposition field
599
600 @strong{Content-Disposition field} is an optional field to
601 specify presentation of an entity or attributes of an entity, such as
602 file name.
603
604
605 @noindent
606 [RFC 2183]
607 @quotation
608 S. Dorner, K. Moore and R. Troost, ``Communicating Presentation
609 Information in Internet Messages: The Content-Disposition Header'',
610 August 1997, Standards Track.
611 @end quotation
612
613 FLIM provides parser for Content-Disposition field and structure
614 @strong{mime-content-disposition} to store information of
615 Content-Disposition field.
616
617
618 @menu
619 * mime-content-disposition::    mime-content-disposition structure
620 * Content-Disposition parser::  Parser for Content-Disposition field
621 @end menu
622
623 @node mime-content-disposition, Content-Disposition parser, Content-Disposition, Content-Disposition
624 @section mime-content-disposition structure
625
626 @deffn{Structure} mime-content-disposition
627
628 Structure to store information of a Content-Disposition field.@refill
629
630 Applications should use reference functions
631 @code{mime-content-disposition-SLOT} to refer information of the
632 structure.@refill
633
634 Slots of the structure are following:
635
636 @table @var
637 @item disposition-type
638 disposition-type (symbol).
639
640 @item parameters
641 parameters of Content-Disposition field
642 (association-list).
643
644 @end table
645 @end deffn
646
647
648 @defun mime-content-disposition-parameter content-disposition parameter
649
650 Return value of @var{parameter} of @var{content-disposition}.
651 @end defun
652
653
654 @defun mime-content-disposition-filename content-disposition
655
656 Return filename of @var{content-disposition}.
657 @end defun
658
659
660
661 @node Content-Disposition parser,  , mime-content-disposition, Content-Disposition
662 @section Parser for Content-Disposition field
663
664 @defun mime-parse-Content-Disposition string
665
666 Parse @var{string} as field-body of Content-Disposition field, and
667 return the result.
668 @end defun
669
670
671 @defun mime-read-Content-Disposition
672
673 Read field-body of Content-Disposition field from current-buffer,@refill
674
675 Return nil if Content-Disposition field is not found.
676 @end defun
677
678
679
680 @node Content-Transfer-Encoding, encoded-word, Content-Disposition, Top
681 @chapter Encoding Method
682 @cindex Content-Transfer-Encoding field
683
684 @strong{Content-Transfer-Encoding field} is a header field to indicate
685 body encoding of a entity.@refill
686
687 FLIM provides parser functions for Content-Transfer-Encoding field.
688 They represent information of Content-Transfer-Encoding field as
689 string.@refill
690
691 In addition, FLIM provides encoder/decoder functions by
692 Content-Transfer-Encoding.
693
694
695 @menu
696 * Content-Transfer-Encoding parser::  Parser
697 * Region encoder/decoder::      Region encoding/decoding
698 * String encoder/decoder::      String encoding/decoding
699 * File encoder/decoder::        File encoding/decoding
700 @end menu
701
702 @node Content-Transfer-Encoding parser, Region encoder/decoder, Content-Transfer-Encoding, Content-Transfer-Encoding
703 @section Parser
704
705 @defun mime-parse-Content-Transfer-Encoding string
706
707 @var{string} \e$B$r\e(B content-transfer-encoding \e$B$H$7$F2r@O$7$?7k2L$rJV$9!#\e(B
708 @end defun
709
710
711 @defun mime-read-Content-Transfer-Encoding &optional default-encoding
712
713 \e$B8=:_$N\e(B buffer \e$B$N\e(B Content-Transfer-Encoding \e$BMs$rFI$_<h$j!"2r@O$7$?7k2L$r\e(B
714 \e$BJV$9!#\e(B@refill
715
716 Content-Transfer-Encoding \e$BMs$,B8:_$7$J$$>l9g$O\e(B@var{default-encoding} \e$B$r\e(B
717 \e$BJV$9!#\e(B
718 @end defun
719
720
721
722 @node Region encoder/decoder, String encoder/decoder, Content-Transfer-Encoding parser, Content-Transfer-Encoding
723 @section Region encoding/decoding
724
725 @defun mime-encode-region start end encoding
726
727 Encode region @var{start} to @var{end} of current buffer using
728 @var{encoding}.
729 @end defun
730
731
732 @defun mime-decode-region start end encoding
733
734 Decode region @var{start} to @var{end} of current buffer using
735 @var{encoding}.
736 @end defun
737
738
739 @defvar mime-encoding-method-alist
740
741 Alist of encoding vs. corresponding method to encode region.@refill
742
743 Each element looks like @code{(STRING . FUNCTION)} or @code{(STRING
744 . nil)}.  @var{string} is content-transfer-encoding.  @code{function} is
745 region encoder and @code{nil} means not to encode.
746 @end defvar
747
748
749 @defvar mime-decoding-method-alist
750
751 Alist of encoding vs. corresponding method to decode region.@refill
752
753 Each element looks like @code{(STRING . FUNCTION)} or @code{(STRING
754 . nil)}.  @var{string} is content-transfer-encoding.  @code{function} is
755 region decoder and @code{nil} means not to decode.
756 @end defvar
757
758
759
760 @node String encoder/decoder, File encoder/decoder, Region encoder/decoder, Content-Transfer-Encoding
761 @section String encoding/decoding
762
763 @defun mime-decode-string string encoding
764
765 @var{string} \e$B$r\e(B @var{encoding} \e$B$H$7$FI|9f$7$?7k2L$rJV$7$^$9!#\e(B
766 @end defun
767
768
769 @defvar mime-string-decoding-method-alist
770
771 Alist of encoding vs. corresponding method to decode string.@refill
772
773 Each element looks like @code{(STRING . FUNCTION)}.  STRING is
774 content-transfer-encoding.  FUNCTION is string decoder.
775 @end defvar
776
777
778
779 @node File encoder/decoder,  , String encoder/decoder, Content-Transfer-Encoding
780 @section File encoding/decoding
781
782 @defun mime-insert-encoded-file filename encoding
783
784 Insert file @var{FILENAME} encoded by @var{ENCODING} format.
785 @end defun
786
787
788 @defun mime-write-decoded-region start end filename encoding
789
790 Decode and write current region encoded by @var{encoding} into
791 @var{filename}.@refill
792
793 @var{start} and @var{end} are buffer positions.
794 @end defun
795
796
797 @defvar mime-file-encoding-method-alist
798
799 Alist of encoding vs. corresponding method to insert encoded
800 file.@refill
801
802 Each element looks like @code{(STRING . FUNCTION)}.  STRING is
803 content-transfer-encoding.  FUNCTION is function to insert encoded file.
804 @end defvar
805
806
807 @defvar mime-file-decoding-method-alist
808
809 Alist of encoding vs. corresponding method to write decoded region to
810 file.@refill
811
812 Each element looks like @code{(STRING . FUNCTION)}.  STRING is
813 content-transfer-encoding.  FUNCTION is function to write decoded region
814 to file.
815 @end defvar
816
817
818
819 @node encoded-word, custom, Content-Transfer-Encoding, Top
820 @chapter Network representation of header
821 @cindex RFC 2047
822 @cindex Standards Track
823 @cindex RFC 2047
824
825 encoded-word \e$B$O\e(B header \e$B$GHs\e(B ASCII (@ref{ASCII}) \e$BJ8;z$rI=8=$9$k$?$a$N7A<0\e(B
826 \e$B$G!"\e(B@strong{RFC 2047} \e$B$GDj5A$5$l$F$$$^$9!#\e(B@refill
827
828
829 @noindent
830 [RFC 2047]
831 @quotation
832 K. Moore, ``MIME (Multipurpose Internet Mail Extensions) Part Three:
833 Message Header Extensions for Non-ASCII Text'', November 1996, Standards
834 Track (obsolete RFC 1521,1522,1590).
835 @end quotation
836
837 \e$B$^$?!"9T57$N0-$$$3$H$@$H8@$($^$9$,!"\e(Bencoded-word \e$B$rMQ$$$:$KHs\e(B ASCII
838 (@ref{ASCII}) \e$BJ8;z$r\e(B header \e$B$KF~$l$?5-;v$bB8:_$7$^$9!#\e(B@refill
839
840 FLIM \e$B$O$3$l$i$rId9f2=!&I|9f2=$9$k5!G=$rDs6!$7$^$9!#\e(B
841
842
843 @menu
844 * Header encoder/decoder::      Header encoding/decoding
845 @end menu
846
847 @node Header encoder/decoder,  , encoded-word, encoded-word
848 @section Header encoding/decoding
849
850 @defun eword-encode-header &optional  code-conversion separator
851
852 Decode MIME encoded-words in header fields.@refill
853
854 If @var{code-conversion} is @code{nil}, it decodes only encoded-words.
855 If it is mime-charset, it decodes non-ASCII bit patterns as the
856 mime-charset.  Otherwise it decodes non-ASCII bit patterns as the
857 default-mime-charset.@refill
858
859 If @var{separator} is not nil, it is used as header separator.
860 @end defun
861
862
863 @defun eword-encode-header &optional  code-conversion
864
865 Encode header fields to network representation, such as MIME
866 encoded-word.@refill
867
868 It refer variable @code{eword-field-encoding-method-alist}.
869 @end defun
870
871
872
873 @node custom, Appendix, encoded-word, Top
874 @chapter Various Customization
875
876 @deffn{group} mime
877
878 MIME \e$B4XO"5!G=$K4X$9$k\e(B group.@refill
879
880 @code{mail} \e$B$H\e(B @code{news} \e$B$KB0$9$k!#\e(B
881 @end deffn
882
883
884 @defvar default-mime-charset
885
886 \e$BE,@Z$J\e(B MIME charset (@ref{MIME charset}) \e$B$,8+$D$+$i$J$+$C$?>l9g$KMQ$$$i\e(B
887 \e$B$l$k\e(BMIME charset.@refill
888
889 \e$BK\Mh$O\e(B APEL \e$B$NJQ?t$G$"$k!#\e(B
890 @end defvar
891
892
893 @defvar mime-temp-directory
894
895 MIME \e$B5!G=$K4X$9$k<BAu$,0l;~E*$K;HMQ$9$k\e(B file \e$B$r:n@.$9$k\e(B 
896 directory.@refill
897
898 \e$B4D6-JQ?t\e(B @code{MIME_TMP_DIR}, @code{TM_TMP_DIR}, @code{TMPDIR},
899 @code{TMP} \e$B$b$7$/$O\e(B @code{TEMP} \e$B$,@_Dj$5$l$F$$$?>l9g!"$=$l$r=i4|CM$H$7$F\e(B
900 \e$BMQ$$$k!#2?$b@_Dj$5$l$F$$$J$$>l9g!"\e(B@code{"/tmp/"} \e$B$rMQ$$$k!#\e(B
901 @end defvar
902
903
904
905 @node Appendix, Concept Index, custom, Top
906 @chapter Appendix
907
908
909 @menu
910 * Glossary::                    
911 * Bug report::                  How to report bugs
912 * CVS::                         CVS based development
913 * History::                     History of FLIM
914 @end menu
915
916 @node Glossary, Bug report, Appendix, Appendix
917 @section Glossary
918
919
920 @menu
921 * 7bit::                        
922 * 8bit::                        
923 * ASCII::                       
924 * Base64::                      
925 * binary::                      
926 * coded character set::         Coded character set, Character code
927 * media-type::                  
928 * message::                     
929 * MIME::                        
930 * MIME charset::                
931 * MTA::                         
932 * MUA::                         
933 * Quoted-Printable::            
934 * RFC 822::                     
935 * RFC 1036::                    
936 * RFC 2045::                    
937 * RFC 2046::                    
938 * RFC 2048::                    
939 * RFC 2049::                    
940 * plain text::                  
941 * us-ascii::                    
942 @end menu
943
944 @node 7bit, 8bit, Glossary, Glossary
945 @subsection 7bit
946 @cindex 7bit (textual) string
947 @cindex 7bit data
948 @cindex 7bit
949
950 @strong{7bit} means any integer between 0 .. 127.@refill
951
952 Any data represented by 7bit integers is called @strong{7bit data}.@refill
953
954 Textual string consisted of Control characters between 0 .. 31 and 127,
955 and space represented by 32, and graphic characters between 33 .. 236
956 are called @strong{7bit (textual) string}.@refill
957
958 Conventional Internet MTA (@ref{MTA}) can translate 7bit data, so it is
959 no need to translate by Quoted-Printable (@ref{Quoted-Printable}) or
960 Base64 (@ref{Base64}) for 7bit data.@refill
961
962 However if there are too long lines, it can not translate by 7bit MTA
963 even if it is 7bit data.  RFC 821 (@ref{RFC 821}) and RFC 2045 (@ref{RFC 2045}) require lines in 7bit data must be less than 998 bytes.  So if a
964 ``7bit data'' has a line more than 999 bytes, it is regarded as binary
965 (@ref{binary}).  For example, Postscript file should be encoded by
966 Quoted-Printable.
967
968
969 @node 8bit, ASCII, 7bit, Glossary
970 @subsection 8bit
971 @cindex 8bit (textual) string
972 @cindex 8bit data
973 @cindex 8bit
974
975 @strong{8bit} means any integer between 0 .. 255.@refill
976
977 Any data represented by 8bit integers is called @strong{8bit data}.@refill
978
979 Textual string consisted of Control characters between 0 .. 31, 127, and
980 128 .. 159, and space represented by 32, and graphic characters between
981 33 .. 236 and 160 .. 255 are called @strong{8bit (textual) string}.@refill
982
983 For example, iso-8859-1 (@ref{iso-8859-1}) or euc-kr (@ref{euc-kr}) are
984 coded-character-set represented by 8bit textual string.@refill
985
986 Traditional Internet MTA (@ref{MTA}) can translate only 7bit
987 (@ref{7bit}) data, so if a 8bit data will be translated such MTA, it
988 must be encoded by Quoted-Printable (@ref{Quoted-Printable}) or Base64
989 (@ref{Base64}).@refill
990
991 However 8bit MTA are increasing today.@refill
992
993 However if there are too long lines, it can not translate by 8bit MTA
994 even if it is 8bit data.  RFC 2045 (@ref{RFC 2045}) require lines in
995 8bit data must be less than 998 bytes.  So if a ``8bit data'' has a line
996 more than 999 bytes, it is regarded as binary (@ref{binary}), so it must
997 be encoded by Base64 or Quoted-Printable.
998
999
1000 @node ASCII, Base64, 8bit, Glossary
1001 @subsection ASCII
1002 @cindex ANSI X3.4:1986
1003 @cindex ASCII
1004 @cindex ASCII
1005
1006 @strong{ASCII} is a 94-character set contains primary latin characters
1007 (A-Z, a-z), numbers and some characters.  It is a standard of the United
1008 States of America.  It is a variant of ISO 646 (@ref{ISO 646}).
1009
1010
1011 @noindent
1012 [ASCII]
1013 @quotation
1014 ``Coded Character Set -- 7-Bit American Standard Code for Information
1015 Interchange'', ANSI X3.4:1986.
1016 @end quotation
1017
1018
1019
1020 @node Base64, binary, ASCII, Glossary
1021 @subsection Base64
1022 @cindex pad
1023 @cindex Base64
1024
1025 @strong{Base64} is a transfer encoding method of MIME (@ref{MIME})
1026 defined in RFC 2045 (@ref{RFC 2045}).@refill
1027
1028 The encoding process represents 24-bit groups of input bits as output
1029 strings of 4 encoded characters.  Encoded characters represent integer 0
1030 .. 63 or @strong{pad}.  Base64 data must be 4 * n bytes, so pad is used
1031 to adjust size.@refill
1032
1033 These 65 characters are subset of all versions of ISO 646, including
1034 US-ASCII, and all versions of EBCDIC.  So it is safe even if it is
1035 translated by non-Internet gateways.
1036
1037
1038 @node binary, coded character set, Base64, Glossary
1039 @subsection binary
1040 @cindex binary
1041
1042 Any byte stream is called @strong{binary}.@refill
1043
1044 It does not require structureof lines.  It differs from from 8bit
1045 (@ref{8bit}).@refill
1046
1047 In addition, if line structured data contain too long line (more than
1048 998 bytes), it is regarded as binary.
1049
1050
1051 @node coded character set, media-type, binary, Glossary
1052 @subsection Coded character set, Character code
1053
1054 A set of unambiguous rules that establishes a character set and the
1055 one-to-one relationship between the characters of the set and their
1056 bit combinations.
1057
1058
1059 @node media-type, message, coded character set, Glossary
1060 @subsection media-type
1061 @cindex x-token
1062 @cindex message
1063 @cindex multipart
1064 @cindex application
1065 @cindex video
1066 @cindex audio
1067 @cindex image
1068 @cindex text
1069 @cindex subtype
1070 @cindex type
1071 @cindex media-type
1072
1073 @strong{media-type} specifies the nature of the data in the body of MIME
1074 (@ref{MIME}) entity (@ref{entity}).  It consists of @strong{type} and
1075 @strong{subtype}.  It is defined in RFC 2046 (@ref{RFC 2046}).@refill
1076
1077 Currently there are following standard primary-types:
1078
1079 @itemize @bullet
1080 @item
1081 @strong{text}
1082 @item
1083 @strong{image}
1084 @item
1085 @strong{audio}
1086 @item
1087 @strong{video}
1088 @item
1089 @strong{application}
1090 @item
1091 @strong{multipart} (@ref{multipart})
1092 @item
1093 @strong{message}
1094 @end itemize
1095
1096
1097 And there are various subtypes, for example, application/octet-stream,
1098 audio/basic, image/jpeg, multipart/mixed (@ref{multipart/mixed}),
1099 text/plain (@ref{text/plain}), video/mpeg...  @refill
1100
1101 You can refer registered media types at MEDIA TYPES
1102 (ftp://ftp.isi.edu/in-notes/iana/assignments/media-types).@refill
1103
1104 In addition, you can use private type or subtype using @strong{x-token},
1105 which as the prefix `x-'.  However you can not use them in
1106 public.@refill
1107
1108 (cf. @ref{Content-Type field})
1109
1110
1111
1112 @node message, MIME, media-type, Glossary
1113 @subsection message
1114
1115 In this document, it means mail defined in RFC 822 (@ref{RFC 822}) and
1116 news message defined in RFC 1036 (@ref{RFC 1036}).
1117
1118
1119 @node MIME, MIME charset, message, Glossary
1120 @subsection MIME
1121 @cindex Multipurpose Internet Mail Extensions
1122
1123 MIME stands for @strong{Multipurpose Internet Mail Extensions}, it is an
1124 extension for RFC 822 (@ref{RFC 822}).@refill
1125
1126 According to RFC 2045:@refill
1127
1128 STD 11, RFC 822, defines a message representation protocol specifying
1129 considerable detail about US-ASCII message headers, and leaves the
1130 message content, or message body, as flat US-ASCII text.  This set of
1131 documents, collectively called the Multipurpose Internet Mail
1132 Extensions, or MIME, redefines the format of messages to allow for
1133
1134 @enumerate
1135 @item
1136 textual message bodies in character sets other than US-ASCII,
1137 @item
1138 an extensible set of different formats for non-textual message
1139 bodies,
1140 @item
1141 multi-part message bodies, and
1142 @item
1143 textual header information in character sets other than US-ASCII.
1144 @end enumerate
1145
1146
1147 It is defined in RFC 2045 (@ref{RFC 2045}), RFC 2046 (@ref{RFC 2046}),
1148 RFC 2047 (@ref{encoded-word}), RFC 2048 (@ref{RFC 2048}) and RFC 2049
1149 (@ref{RFC 2049}).
1150
1151
1152 @node MIME charset, MTA, MIME, Glossary
1153 @subsection MIME charset
1154
1155 Coded character set (@ref{coded character set}) used in Content-Type
1156 field (@ref{Content-Type field}) or charset parameter of encoded-word
1157 (@ref{encoded-word}).@refill
1158
1159 It is defined in RFC 2045 (@ref{RFC 2045}).@refill
1160
1161 iso-2022-jp (@ref{iso-2022-jp}) or euc-kr (@ref{euc-kr}) are kinds of
1162 it.  (In this document, MIME charsets are written by small letters to
1163 distinguish graphic character set (@ref{graphic character set}).  For
1164 example, ISO 8859-1 is a graphic character set, and iso-8859-1 is a MIME
1165 charset)
1166
1167
1168 @node MTA, MUA, MIME charset, Glossary
1169 @subsection MTA
1170 @cindex Message Transfer Agent
1171
1172 @strong{Message Transfer Agent}.  It means mail transfer programs
1173 (ex. sendmail) and news servers.@refill
1174
1175 (cf. @ref{MUA})
1176
1177
1178
1179 @node MUA, Quoted-Printable, MTA, Glossary
1180 @subsection MUA
1181 @cindex Message User Agent
1182
1183 @strong{Message User Agent}.  It means mail readers and news
1184 readers.@refill
1185
1186 (cf. @ref{MTA})
1187
1188
1189
1190 @node Quoted-Printable, RFC 822, MUA, Glossary
1191 @subsection Quoted-Printable
1192 @cindex Quoted-Printable
1193
1194 @strong{Quoted-Printable} is a transfer encoding method of MIME
1195 (@ref{MIME}) defined in RFC 2045 (@ref{RFC 2045}).@refill
1196
1197 If the data being encoded are mostly US-ASCII text, the encoded form of
1198 the data remains largely recognizable by humans.@refill
1199
1200 (cf. @ref{Base64})
1201
1202
1203
1204 @node RFC 822, RFC 1036, Quoted-Printable, Glossary
1205 @subsection RFC 822
1206 @cindex RFC 822
1207 @cindex STD 11
1208 @cindex Internet mail
1209 @cindex Internet message
1210 @cindex message header
1211
1212 A RFC defines format of Internet mail message, mainly @strong{message header}.
1213
1214 @noindent
1215 @strong{[Memo]}
1216 @quotation
1217
1218 news message is based on RFC 822, so @strong{Internet message} may be
1219 more suitable than @strong{Internet mail} .
1220 @end quotation
1221
1222
1223
1224 @noindent
1225 [RFC 822]
1226 @quotation
1227 D. Crocker, ``Standard for the Format of ARPA Internet Text Messages'',
1228 August 1982, STD 11.
1229 @end quotation
1230
1231
1232
1233 @node RFC 1036, RFC 2045, RFC 822, Glossary
1234 @subsection RFC 1036
1235 @cindex RFC 1036
1236 @cindex USENET
1237
1238 A RFC defines format of USENET message.  It is a subset of RFC 822
1239 (@ref{RFC 822}).  It is not Internet standard, but a lot of netnews
1240 excepting Usenet uses it.
1241
1242
1243 @noindent
1244 [USENET: RFC 1036]
1245 @quotation
1246 M. Horton and R. Adams, ``Standard for Interchange of USENET Messages'',
1247 December 1987, (obsolete RFC 850).
1248 @end quotation
1249
1250
1251
1252 @node RFC 2045, RFC 2046, RFC 1036, Glossary
1253 @subsection RFC 2045
1254 @cindex RFC 2045
1255 @cindex Standards Track
1256
1257
1258 @noindent
1259 [RFC 2045]
1260 @quotation
1261 N. Freed and N. Borenstein, ``Multipurpose Internet Mail Extensions
1262 (MIME) Part One: Format of Internet Message Bodies'', November 1996,
1263 Standards Track (obsolete RFC 1521, 1522, 1590).
1264 @end quotation
1265
1266
1267
1268 @node RFC 2046, RFC 2048, RFC 2045, Glossary
1269 @subsection RFC 2046
1270 @cindex RFC 2046
1271 @cindex Standards Track
1272
1273
1274 @noindent
1275 [RFC 2046]
1276 @quotation
1277 N. Freed and N. Borenstein, ``Multipurpose Internet Mail Extensions
1278 (MIME) Part Two: Media Types'', November 1996, Standards Track (obsolete
1279 RFC 1521, 1522, 1590).
1280 @end quotation
1281
1282
1283
1284 @node RFC 2048, RFC 2049, RFC 2046, Glossary
1285 @subsection RFC 2048
1286 @cindex RFC 2048
1287 @cindex Standards Track
1288
1289
1290 @noindent
1291 [RFC 2048]
1292 @quotation
1293 N. Freed, J. Klensin and J. Postel, ``Multipurpose Internet Mail
1294 Extensions (MIME) Part Four: Registration Procedures'', November 1996,
1295 Standards Track (obsolete RFC 1521, 1522, 1590).
1296 @end quotation
1297
1298
1299
1300 @node RFC 2049, plain text, RFC 2048, Glossary
1301 @subsection RFC 2049
1302 @cindex RFC 2049
1303 @cindex Standards Track
1304
1305
1306 @noindent
1307 [RFC 2049]
1308 @quotation
1309 N. Freed and N. Borenstein, ``Multipurpose Internet Mail Extensions
1310 (MIME) Part Five: Conformance Criteria and Examples'', November 1996,
1311 Standards Track (obsolete RFC 1521, 1522, 1590).
1312 @end quotation
1313
1314
1315
1316 @node plain text, us-ascii, RFC 2049, Glossary
1317 @subsection plain text
1318
1319 A textual data represented by only coded character set (@ref{coded character set}).  It does not have information about font or
1320 typesetting.  (cf. @ref{text/plain})
1321
1322
1323
1324 @node us-ascii,  , plain text, Glossary
1325 @subsection us-ascii
1326 @cindex ASCII
1327 @cindex us-ascii
1328
1329 A MIME charset (@ref{MIME charset}) for primary Latin script mainly
1330 written by English or other languages.@refill
1331
1332 It is a 7bit coded character set (@ref{coded character set}) based on
1333 ISO 2022 (@ref{ISO 2022}), it contains only ASCII (@ref{ASCII}) and code
1334 extension (@ref{code extension}) is not allowed.@refill
1335
1336 It is standard coded character set of Internet mail.  If MIME charset is
1337 not specified, @strong{us-ascii} is used as default.@refill
1338
1339 In addition, @strong{ASCII} of RFC 822 (@ref{RFC 822}) should be
1340 interpreted as us-ascii.
1341
1342
1343 @node Bug report, CVS, Glossary, Appendix
1344 @section How to report bugs
1345 @cindex good bug report
1346
1347 If you write bug-reports and/or suggestions for improvement, please
1348 send them to the tm Mailing List:
1349
1350 @itemize @bullet
1351 @item
1352  Japanese <bug-tm-ja@@chamonix.jaist.ac.jp>
1353 @item
1354  English <bug-tm-en@@chamonix.jaist.ac.jp>
1355 @end itemize
1356
1357
1358 Notice that, we do not welcome bug reports about too old version.  Bugs
1359 in old version might be fixed.  So please try latest version at
1360 first.@refill
1361
1362 You should write @strong{good bug report}.  If you write only ``FLIM
1363 does not work'', we can not find such situations.  At least, you should
1364 write name, type, variants and version of OS, emacs, APEL, FLIM, SEMI
1365 and MUA, and setting.  In addition, if error occurs, to send backtrace
1366 is very important. (cf. @ref{(emacs)Bugs}) @refill
1367
1368 Bug may not appear only your environment, but also in a lot of
1369 environment (otherwise it might not bug).  Therefor if you send mail
1370 to author directly, we must write a lot of mails.  So please send mail
1371 to address for tm bugs instead of author.
1372
1373 Via the tm ML, you can report FLIM bugs, obtain the latest release of
1374 FLIM, and discuss future enhancements to FLIM.  To join the tm ML,
1375 send empty e-mail to:
1376
1377 @itemize @bullet
1378 @item
1379  Japanese <tm-ja-help@@chamonix.jaist.ac.jp>
1380 @item
1381  English  <tm-en-help@@chamonix.jaist.ac.jp>
1382 @end itemize
1383
1384
1385
1386 @node CVS, History, Bug report, Appendix
1387 @section CVS based development
1388
1389 FLIM \e$B$N\e(B file \e$B$O\e(B CVS \e$B$r;H$C$F4IM}$5$l$F$$$^$9!#$3$N$?$a!"0J2<$NJ}K!$G:G\e(B
1390 \e$B?7$N\e(B FLIM \e$B$rF~<j$9$k$3$H$,$G$-$^$9!'\e(B
1391
1392 @example
1393 (0) cvs login
1394
1395     % cvs -d :pserver:anonymous@@chamonix.jaist.ac.jp:/hare/cvs/root \
1396         login
1397
1398     CVS password: [CR] # NULL string
1399
1400 (1) checkout
1401
1402     % cvs -d :pserver:anonymous@@chamonix.jaist.ac.jp:/hare/cvs/root \
1403         checkout [-r TAG] flim
1404 @end example
1405
1406
1407 CVS \e$B$rMQ$$$?3+H/$K;22C$7$?$$J}$O\e(B
1408
1409 @itemize @bullet
1410 @item
1411  <cvs@@chamonix.jaist.ac.jp>
1412 @end itemize
1413
1414 @noindent
1415 \e$B$^$G!"\e(Baccount \e$BL>$H\e(B UNIX \e$B$N\e(B passwd \e$B$HF1$87A<0$N\e(B crypt \e$B2=$5$l$?\e(B password
1416 \e$B$r1h$($F8fO"Mm$/$@$5$$!#\e(B
1417
1418
1419 @node History,  , CVS, Appendix
1420 @section History of FLIM
1421
1422 FLIM \e$B$N\e(B code \e$B$N:G8E$NItJ,$O\e(B \e$B1]JB\e(B \e$B;LCR\e(B \e$B;a$,=q$$$?\e(B @file{mime.el}\e$B$K5/8;$7\e(B
1423 \e$B$^$9!#$3$N>.$5$J\e(B program \e$B$O\e(B Nemacs \e$B$GF0:n$9$k\e(B iso-2022-jp \e$B$N\e(B B-encoding 
1424 \e$B@lMQ$N\e(B encoded-word \e$B$NI|9f2=%W%m%0%i%`$G$7$?!#\e(B@refill
1425
1426 \e$B$=$N8e!"<i2,\e(B \e$BCNI'\e(B \e$B$O\e(B @file{mime.el} \e$B$r85$K\e(B@file{tiny-mime.el} \e$B$H$$$&%W%m\e(B
1427 \e$B%0%i%`$r=q$-$^$9!#$3$l$O!"\e(BNemacs \e$B$H\e(B Mule \e$B$GF0:n$9$k\e(B encoded-word \e$B$NId9f\e(B
1428 \e$B2=!&I|9f2=%W%m%0%i%`$G$7$?!#\e(B@file{tiny-mime.el} \e$B$O\e(B B-encoding \e$B$@$1$G$J$/\e(B 
1429 Q-encoding \e$B$b\e(Bsupport \e$B$7!"$^$?!"\e(BMULE \e$B$G07$&$3$H$,$G$-$k$5$^$6$^$J\e(B MIME
1430 charset (@ref{MIME charset}) \e$B$rF1;~$K;H$&$3$H$,$G$-$^$7$?!#$3$N;~!"\e(B
1431 Nemacs \e$B$H\e(B Mule \e$B$NAPJ}$r\e(B support \e$B$9$k$?$a$KMQ$$$i$l$?%F%/%K%C%/$O8e$K\e(B emu
1432 package \e$B$K$^$H$a$i$l$^$9!#\e(B@refill
1433
1434 \e$B$3$N:"!"<i2,\e(B \e$BCNI'\e(B \e$B$O\e(B @file{tiny-mime.el} \e$B$r$5$^$6$^$J\e(B MUA \e$B$G;H$&$?$a$N@_\e(B
1435 \e$BDj=8$bG[I[$7$F$$$^$7$?$,!"$=$l$i$O8e$K\e(B@file{tiny-mime.el} \e$B$H$H$b$K#1$D$N\e(B 
1436 package \e$B$K$^$H$a$i$l!"\e(Btm \e$B$H$$$&L>A0$GG[I[$5$l$^$9!#\e(B@refill
1437
1438 \e$B<i2,\e(B \e$BCNI'\e(B \e$B$O$d$,$F!"\e(BMIME message \e$B$r1\Mw$9$k$?$a$N%W%m%0%i%`$G$"$k\e(B
1439 @file{tm-body.el} \e$B$r=q$-$^$9!#$3$l$O!"$9$0$K\e(B@file{tm-view.el} \e$B$H$$$&L>A0\e(B
1440 \e$B$KJQ$o$j$^$7$?$,!"$d$,$F!"$3$l$,\e(B@file{tiny-mime.el} \e$B$KBe$o$C$F!"\e(Btm \e$B$NCf\e(B
1441 \e$B3K$H$J$j$^$9!#\e(B@refill
1442
1443 @file{tm-view.el} \e$B$OEvA3!"\e(BContent-Transfer-Encoding \e$B$r07$&I,MW$,$"$j$^$9!#\e(B
1444 \e$B$3$NL\E*$N$?$a$K!"\e(BMEL \e$B$,@0Hw$5$l$O$8$a$^$7$?!#\e(BBase64 \e$B$K4X$7$F$O\e(B 
1445 @file{tiny-mime.el} \e$B$N\e(B code \e$B$,0\$5$l!"$^$?!"?7$?$K\e(BQuoted-Printable \e$B$N\e(B 
1446 code \e$B$,DI2C$5$l$^$7$?!#$3$l$i$,\e(B@file{mel-b.el} \e$B$H\e(B @file{mel-q.el} \e$B$K$J$j\e(B
1447 \e$B$^$7$?!#\e(B@refill
1448
1449 \e$B$^$?!"8e$K!"<i2,\e(B \e$BCNI'\e(B \e$B$K$h$C$F\e(B uuencode \e$BMQ$N\e(B @file{mel-u.el} \e$B$,DI2C$5$l!"\e(B
1450 \e$B$=$N8e$K!">.NS\e(B \e$B=$J?\e(B \e$B;a$K$h$C$F\e(B x-gzip64 \e$BMQ$N\e(B@file{mel-g.el} \e$B$,DI2C$5$l$^\e(B
1451 \e$B$7$?!#\e(B@refill
1452
1453 tm \e$B$G$O8e$K!"<i2,\e(B \e$BCNI'\e(B \e$B$K$h$C$F\e(B @file{tiny-mime.el} \e$B$N:F<BAu$,9T$o$l!"$3\e(B
1454 \e$B$N2aDx$G!"\e(BSTD 11 \e$B$N\e(B parser \e$B$,=q$+$l$^$7$?!#$3$l$O!"8=:_$N\e(B 
1455 @file{std11.el} \e$B$KEv$?$j$^$9!#$^$?!"$3$N2aDx$G\e(B @file{tiny-mime.el} \e$B$OI|\e(B
1456 \e$B9f2=$r9T$&\e(B @file{tm-ew-d.el} \e$B$HId9f2=$r9T$&\e(B @file{tm-ew-e.el} \e$B$KJ,$1$i$l\e(B
1457 \e$B$^$7$?!#$3$NN><T$,8=:_$N\e(B @file{eword-decode.el} \e$B$H\e(B 
1458 @file{eword-encode.el} \e$B$N@hAD$KEv$?$j$^$9!#\e(B@refill
1459
1460 \e$B8e$K!"<i2,\e(B \e$BCNI'\e(B \e$B$i$K$h$C$F\e(B tm \e$B$NA4LL=q$-49$(:n6H$,9T$o$l!"$3$N2aDx$G!"\e(Btm 
1461 \e$B$O\e(B APEL, MEL, SEMI, EMH, RMAIL-MIME, Gnus-MIME \e$B$J$I$KJ,$1$i$l$^$7$?!#$3\e(B
1462 \e$B$N$&$A$N\e(B MEL \e$B$,\e(B FLIM \e$B$ND>@\$N@hAD$KEv$?$j$^$9!#\e(B@refill
1463
1464 \e$B8e$K!"\e(BAPEL \e$B$+$i\e(B @file{std11.el} \e$B$,0\$5$l!"$^$?!"\e(B@file{mailcap.el},
1465 @file{eword-decode.el} \e$B$*$h$S\e(B @file{eword-encode.el} \e$B$,\e(B SEMI \e$B$+$i0\$5$l!"\e(B
1466 package \e$B$NL>A0$,\e(B FLIM\e$B$H$J$j$^$9!#\e(B@refill
1467
1468 \e$B$3$ND>A0$+$iEDCf\e(B \e$BE/\e(B \e$B;a$,$h$j\e(B RFC \e$B$KCi<B$J<BAu$r=q$-;O$a!"$3$l$O!"8=:_!"\e(B
1469 FLIM \e$B$N;^$G$"$k\e(B ``FLIM-FLAM'' \e$B$H$J$C$F$$$^$9!#\e(B
1470
1471
1472 @node Concept Index, Function Index, Appendix, Top
1473 @chapter Concept Index
1474
1475 @printindex cp
1476
1477 @node Function Index, Variable Index, Concept Index, Top
1478 @chapter Function Index
1479
1480 @printindex fn
1481
1482 @node Variable Index,  , Function Index, Top
1483 @chapter Variable Index
1484
1485 @printindex vr
1486 @bye