fcfc39153768a1bb519d11e268f69946e4a3c3a0
[elisp/semi.git] / mime-view.el
1 ;;; mime-view.el --- interactive MIME viewer for GNU Emacs
2
3 ;; Copyright (C) 1995,1996,1997,1998 Free Software Foundation, Inc.
4
5 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
6 ;; Created: 1994/07/13
7 ;;      Renamed: 1994/08/31 from tm-body.el
8 ;;      Renamed: 1997/02/19 from tm-view.el
9 ;; Keywords: MIME, multimedia, mail, news
10
11 ;; This file is part of SEMI (Sophisticated Emacs MIME Interfaces).
12
13 ;; This program is free software; you can redistribute it and/or
14 ;; modify it under the terms of the GNU General Public License as
15 ;; published by the Free Software Foundation; either version 2, or (at
16 ;; your option) any later version.
17
18 ;; This program is distributed in the hope that it will be useful, but
19 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21 ;; General Public License for more details.
22
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
25 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
26 ;; Boston, MA 02111-1307, USA.
27
28 ;;; Code:
29
30 (require 'std11)
31 (require 'mel)
32 (require 'eword-decode)
33 (require 'mime-parse)
34 (require 'semi-def)
35 (require 'calist)
36 (require 'mailcap)
37
38
39 ;;; @ version
40 ;;;
41
42 (defconst mime-view-version-string
43   `,(concat (car mime-module-version) " MIME-View "
44             (mapconcat #'number-to-string (cddr mime-module-version) ".")
45             " (" (cadr mime-module-version) ")"))
46
47
48 ;;; @ variables
49 ;;;
50
51 (defgroup mime-view nil
52   "MIME view mode"
53   :group 'mime)
54
55 (defcustom mime-view-find-every-acting-situation t
56   "*Find every available acting-situation if non-nil."
57   :group 'mime-view
58   :type 'boolean)
59
60 (defcustom mime-acting-situation-examples-file "~/.mime-example"
61   "*File name of example about acting-situation demonstrated by user."
62   :group 'mime-view
63   :type 'file)
64
65
66 ;;; @ buffer local variables
67 ;;;
68
69 ;;; @@ in raw-buffer
70 ;;;
71
72 (defvar mime-raw-message-info
73   "Information about structure of message.
74 Please use reference function `mime-entity-SLOT' to get value of SLOT.
75
76 Following is a list of slots of the structure:
77
78 node-id         reversed entity-number (list of integers)
79 point-min       beginning point of region in raw-buffer
80 point-max       end point of region in raw-buffer
81 type            media-type (symbol)
82 subtype         media-subtype (symbol)
83 type/subtype    media-type/subtype (string or nil)
84 parameters      parameter of Content-Type field (association list)
85 encoding        Content-Transfer-Encoding (string or nil)
86 children        entities included in this entity (list of content-infos)
87
88 If an entity includes other entities in its body, such as multipart or
89 message/rfc822, `mime-entity' structures of them are included in
90 `children', so the `mime-entity' structure become a tree.")
91 (make-variable-buffer-local 'mime-raw-message-info)
92
93 (defvar mime-preview-buffer nil
94   "MIME-preview buffer corresponding with the (raw) buffer.")
95 (make-variable-buffer-local 'mime-preview-buffer)
96
97
98 ;;; @@ in preview-buffer
99 ;;;
100
101 (defvar mime-mother-buffer nil
102   "Mother buffer corresponding with the (MIME-preview) buffer.
103 If current MIME-preview buffer is generated by other buffer, such as
104 message/partial, it is called `mother-buffer'.")
105 (make-variable-buffer-local 'mime-mother-buffer)
106
107 (defvar mime-raw-buffer nil
108   "Raw buffer corresponding with the (MIME-preview) buffer.")
109 (make-variable-buffer-local 'mime-raw-buffer)
110
111 (defvar mime-preview-original-major-mode nil
112   "Major-mode of mime-raw-buffer.")
113 (make-variable-buffer-local 'mime-preview-original-major-mode)
114
115 (defvar mime-preview-original-window-configuration nil
116   "Window-configuration before mime-view-mode is called.")
117 (make-variable-buffer-local 'mime-preview-original-window-configuration)
118
119
120 ;;; @ entity information
121 ;;;
122
123 (defsubst mime-raw-find-entity-from-node-id (entity-node-id
124                                              &optional message-info)
125   "Return entity from ENTITY-NODE-ID in mime-raw-buffer.
126 If optional argument MESSAGE-INFO is not specified,
127 `mime-raw-message-info' is used."
128   (mime-raw-find-entity-from-number (reverse entity-node-id) message-info))
129
130 (defun mime-raw-find-entity-from-number (entity-number &optional message-info)
131   "Return entity from ENTITY-NUMBER in mime-raw-buffer.
132 If optional argument MESSAGE-INFO is not specified,
133 `mime-raw-message-info' is used."
134   (or message-info
135       (setq message-info mime-raw-message-info))
136   (if (eq entity-number t)
137       message-info
138     (let ((sn (car entity-number)))
139       (if (null sn)
140           message-info
141         (let ((rc (nth sn (mime-entity-children message-info))))
142           (if rc
143               (mime-raw-find-entity-from-number (cdr entity-number) rc)
144             ))
145         ))))
146
147 (defun mime-raw-find-entity-from-point (point &optional message-info)
148   "Return entity from POINT in mime-raw-buffer.
149 If optional argument MESSAGE-INFO is not specified,
150 `mime-raw-message-info' is used."
151   (or message-info
152       (setq message-info mime-raw-message-info))
153   (if (and (<= (mime-entity-point-min message-info) point)
154            (<= point (mime-entity-point-max message-info)))
155       (let ((children (mime-entity-children message-info)))
156         (catch 'tag
157           (while children
158             (let ((ret
159                    (mime-raw-find-entity-from-point point (car children))))
160               (if ret
161                   (throw 'tag ret)
162                 ))
163             (setq children (cdr children)))
164           message-info))))
165
166 (defsubst mime-raw-point-to-entity-node-id (point &optional message-info)
167   "Return entity-node-id from POINT in mime-raw-buffer.
168 If optional argument MESSAGE-INFO is not specified,
169 `mime-raw-message-info' is used."
170   (mime-entity-node-id (mime-raw-find-entity-from-point point message-info)))
171
172 (defsubst mime-raw-point-to-entity-number (point &optional message-info)
173   "Return entity-number from POINT in mime-raw-buffer.
174 If optional argument MESSAGE-INFO is not specified,
175 `mime-raw-message-info' is used."
176   (reverse (mime-raw-point-to-entity-node-id point message-info)))
177
178 (defsubst mime-raw-entity-parent (entity &optional message-info)
179   "Return mother entity of ENTITY.
180 If optional argument MESSAGE-INFO is not specified,
181 `mime-raw-message-info' is used."
182   (mime-raw-find-entity-from-node-id (cdr (mime-entity-node-id entity))
183                                      message-info))
184
185 (defun mime-raw-flatten-message-info (&optional message-info)
186   "Return list of entity in mime-raw-buffer.
187 If optional argument MESSAGE-INFO is not specified,
188 `mime-raw-message-info' is used."
189   (or message-info
190       (setq message-info mime-raw-message-info))
191   (let ((dest (list message-info))
192         (rcl (mime-entity-children message-info)))
193     (while rcl
194       (setq dest (nconc dest (mime-raw-flatten-message-info (car rcl))))
195       (setq rcl (cdr rcl)))
196     dest))
197
198
199 ;;; @ presentation of preview
200 ;;;
201
202 ;;; @@ entity-button
203 ;;;
204
205 ;;; @@@ predicate function
206 ;;;
207
208 (defun mime-view-entity-button-visible-p (entity message-info)
209   "Return non-nil if header of ENTITY is visible.
210 Please redefine this function if you want to change default setting."
211   (let ((media-type (mime-entity-media-type entity))
212         (media-subtype (mime-entity-media-subtype entity)))
213     (or (not (eq media-type 'application))
214         (and (not (eq media-subtype 'x-selection))
215              (or (not (eq media-subtype 'octet-stream))
216                  (let ((mother-entity
217                         (mime-raw-entity-parent entity message-info)))
218                    (or (not (eq (mime-entity-media-type mother-entity)
219                                 'multipart))
220                        (not (eq (mime-entity-media-subtype mother-entity)
221                                 'encrypted)))
222                    )
223                  )))))
224
225 ;;; @@@ entity button generator
226 ;;;
227
228 (defun mime-view-insert-entity-button (entity message-info subj)
229   "Insert entity-button of ENTITY."
230   (let ((entity-node-id (mime-entity-node-id entity))
231         (params (mime-entity-parameters entity)))
232     (mime-insert-button
233      (let ((access-type (assoc "access-type" params))
234            (num (or (cdr (assoc "x-part-number" params))
235                     (if (consp entity-node-id)
236                         (mapconcat (function
237                                     (lambda (num)
238                                       (format "%s" (1+ num))
239                                       ))
240                                    (reverse entity-node-id) ".")
241                       "0"))
242                 ))
243        (cond (access-type
244               (let ((server (assoc "server" params)))
245                 (setq access-type (cdr access-type))
246                 (if server
247                     (format "%s %s ([%s] %s)"
248                             num subj access-type (cdr server))
249                 (let ((site (cdr (assoc "site" params)))
250                       (dir (cdr (assoc "directory" params)))
251                       )
252                   (format "%s %s ([%s] %s:%s)"
253                           num subj access-type site dir)
254                   )))
255             )
256            (t
257             (let ((media-type (mime-entity-media-type entity))
258                   (media-subtype (mime-entity-media-subtype entity))
259                   (charset (cdr (assoc "charset" params)))
260                   (encoding (mime-entity-encoding entity)))
261               (concat
262                num " " subj
263                (let ((rest
264                       (format " <%s/%s%s%s>"
265                               media-type media-subtype
266                               (if charset
267                                   (concat "; " charset)
268                                 "")
269                               (if encoding
270                                   (concat " (" encoding ")")
271                                 ""))))
272                  (if (>= (+ (current-column)(length rest))(window-width))
273                      "\n\t")
274                  rest)))
275             )))
276      (function mime-preview-play-current-entity))
277     ))
278
279
280 ;;; @@ entity-header
281 ;;;
282
283 ;;; @@@ predicate function
284 ;;;
285
286 ;; (defvar mime-view-childrens-header-showing-Content-Type-list
287 ;;   '("message/rfc822" "message/news"))
288
289 ;; (defun mime-view-header-visible-p (entity message-info)
290 ;;   "Return non-nil if header of ENTITY is visible."
291 ;;   (let ((entity-node-id (mime-entity-node-id entity)))
292 ;;     (member (mime-entity-type/subtype
293 ;;              (mime-raw-find-entity-from-node-id
294 ;;               (cdr entity-node-id) message-info))
295 ;;             mime-view-childrens-header-showing-Content-Type-list)
296 ;;     ))
297
298 ;;; @@@ entity header filter
299 ;;;
300
301 (defvar mime-view-content-header-filter-alist nil)
302
303 (defun mime-view-default-content-header-filter ()
304   (mime-view-cut-header)
305   (eword-decode-header)
306   )
307
308 ;;; @@@ entity field cutter
309 ;;;
310
311 (defvar mime-view-ignored-field-list
312   '(".*Received" ".*Path" ".*Id" "References"
313     "Replied" "Errors-To"
314     "Lines" "Sender" ".*Host" "Xref"
315     "Content-Type" "Precedence"
316     "Status" "X-VM-.*")
317   "All fields that match this list will be hidden in MIME preview buffer.
318 Each elements are regexp of field-name.")
319
320 (defvar mime-view-ignored-field-regexp
321   (concat "^"
322           (apply (function regexp-or) mime-view-ignored-field-list)
323           ":"))
324
325 (defvar mime-view-visible-field-list '("Dnas.*" "Message-Id")
326   "All fields that match this list will be displayed in MIME preview buffer.
327 Each elements are regexp of field-name.")
328
329 (defun mime-view-cut-header ()
330   (goto-char (point-min))
331   (while (re-search-forward mime-view-ignored-field-regexp nil t)
332     (let* ((beg (match-beginning 0))
333            (end (match-end 0))
334            (name (buffer-substring beg end))
335            )
336       (catch 'visible
337         (let ((rest mime-view-visible-field-list))
338           (while rest
339             (if (string-match (car rest) name)
340                 (throw 'visible nil)
341               )
342             (setq rest (cdr rest))))
343         (delete-region beg
344                        (save-excursion
345                          (if (re-search-forward "^\\([^ \t]\\|$\\)" nil t)
346                              (match-beginning 0)
347                            (point-max))))
348         ))))
349
350
351 ;;; @@ entity-body
352 ;;;
353
354 ;;; @@@ predicate function
355 ;;;
356
357 (defun mime-calist::field-match-method-as-default-rule (calist
358                                                         field-type field-value)
359   (let ((s-field (assq field-type calist)))
360     (cond ((null s-field)
361            (cons (cons field-type field-value) calist)
362            )
363           (t calist))))
364
365 (define-calist-field-match-method
366   'header #'mime-calist::field-match-method-as-default-rule)
367
368 (define-calist-field-match-method
369   'body #'mime-calist::field-match-method-as-default-rule)
370
371
372 (defvar mime-preview-condition nil
373   "Condition-tree about how to display entity.")
374
375 (ctree-set-calist-strictly
376  'mime-preview-condition '((type . application)(subtype . octet-stream)
377                            (encoding . nil)
378                            (body . visible)))
379 (ctree-set-calist-strictly
380  'mime-preview-condition '((type . application)(subtype . octet-stream)
381                            (encoding . "7bit")
382                            (body . visible)))
383 (ctree-set-calist-strictly
384  'mime-preview-condition '((type . application)(subtype . octet-stream)
385                            (encoding . "8bit")
386                            (body . visible)))
387
388 (ctree-set-calist-strictly
389  'mime-preview-condition '((type . application)(subtype . pgp)
390                            (body . visible)))
391
392 (ctree-set-calist-strictly
393  'mime-preview-condition '((type . application)(subtype . x-latex)
394                            (body . visible)))
395
396 (ctree-set-calist-strictly
397  'mime-preview-condition '((type . application)(subtype . x-selection)
398                            (body . visible)))
399
400 (ctree-set-calist-strictly
401  'mime-preview-condition '((type . application)(subtype . x-comment)
402                            (body . visible)))
403
404 (ctree-set-calist-strictly
405  'mime-preview-condition '((type . message)(subtype . delivery-status)
406                            (body . visible)))
407
408 (ctree-set-calist-strictly
409  'mime-preview-condition '((body . visible)
410                            (body-presentation-method . with-filter)
411                            (body-filter . mime-preview-filter-for-text/plain)))
412
413 (ctree-set-calist-strictly
414  'mime-preview-condition '((type . nil)
415                            (body . visible)
416                            (body-presentation-method . with-filter)
417                            (body-filter . mime-preview-filter-for-text/plain)))
418
419 (ctree-set-calist-strictly
420  'mime-preview-condition '((type . text)(subtype . enriched)
421                            (body . visible)
422                            (body-presentation-method . with-filter)
423                            (body-filter
424                             . mime-preview-filter-for-text/enriched)))
425
426 (ctree-set-calist-strictly
427  'mime-preview-condition '((type . text)(subtype . richtext)
428                            (body . visible)
429                            (body-presentation-method . with-filter)
430                            (body-filter
431                             . mime-preview-filter-for-text/richtext)))
432
433 (ctree-set-calist-strictly
434  'mime-preview-condition '((type . text)(subtype . t)
435                            (body . visible)
436                            (body-presentation-method . with-filter)
437                            (body-filter . mime-preview-filter-for-text/plain)))
438
439 (ctree-set-calist-strictly
440  'mime-preview-condition '((type . message)(subtype . partial)
441                            (body-presentation-method
442                             . mime-view-insert-message/partial-button)))
443
444 (ctree-set-calist-strictly
445  'mime-preview-condition '((type . message)(subtype . rfc822)
446                            (body-presentation-method . nil)
447                            (childrens-situation (header . visible)
448                                                 (entity-button . invisible))))
449
450 (ctree-set-calist-strictly
451  'mime-preview-condition '((type . message)(subtype . news)
452                            (body-presentation-method . nil)
453                            (childrens-situation (header . visible)
454                                                 (entity-button . invisible))))
455
456
457 ;;; @@@ entity filter
458 ;;;
459
460 (autoload 'mime-preview-filter-for-text/plain "mime-text")
461 (autoload 'mime-preview-filter-for-text/enriched "mime-text")
462 (autoload 'mime-preview-filter-for-text/richtext "mime-text")
463
464 (defvar mime-text-decoder-alist
465   '((mime-show-message-mode     . mime-text-decode-buffer)
466     (mime-temp-message-mode     . mime-text-decode-buffer)
467     (t                          . mime-text-decode-buffer-maybe)
468     )
469   "Alist of major-mode vs. mime-text-decoder.
470 Each element looks like (SYMBOL . FUNCTION).  SYMBOL is major-mode or
471 t.  t means default.
472
473 Specification of FUNCTION is described in DOC-string of variable
474 `mime-text-decoder'.
475
476 This value is overridden by buffer local variable `mime-text-decoder'
477 if it is not nil.")
478
479
480 (defvar mime-view-announcement-for-message/partial
481   (if (and (>= emacs-major-version 19) window-system)
482       "\
483 \[[ This is message/partial style split message. ]]
484 \[[ Please press `v' key in this buffer          ]]
485 \[[ or click here by mouse button-2.             ]]"
486     "\
487 \[[ This is message/partial style split message. ]]
488 \[[ Please press `v' key in this buffer.         ]]"
489     ))
490
491 (defun mime-view-insert-message/partial-button (&optional situation)
492   (save-restriction
493     (goto-char (point-max))
494     (if (not (search-backward "\n\n" nil t))
495         (insert "\n")
496       )
497     (goto-char (point-max))
498     (narrow-to-region (point-max)(point-max))
499     (insert mime-view-announcement-for-message/partial)
500     (mime-add-button (point-min)(point-max)
501                      #'mime-preview-play-current-entity)
502     ))
503
504
505 ;;; @ acting-condition
506 ;;;
507
508 (defvar mime-acting-condition nil
509   "Condition-tree about how to process entity.")
510
511 (if (file-readable-p mailcap-file)
512     (let ((entries (mailcap-parse-file)))
513       (while entries
514         (let ((entry (car entries))
515               view print shared)
516           (while entry
517             (let* ((field (car entry))
518                    (field-type (car field)))
519               (cond ((eq field-type 'view)  (setq view field))
520                     ((eq field-type 'print) (setq print field))
521                     ((memq field-type '(compose composetyped edit)))
522                     (t (setq shared (cons field shared))))
523               )
524             (setq entry (cdr entry))
525             )
526           (setq shared (nreverse shared))
527           (ctree-set-calist-with-default
528            'mime-acting-condition
529            (append shared (list '(mode . "play")(cons 'method (cdr view)))))
530           (if print
531               (ctree-set-calist-with-default
532                'mime-acting-condition
533                (append shared
534                        (list '(mode . "print")(cons 'method (cdr view))))
535                ))
536           )
537         (setq entries (cdr entries))
538         )))
539
540 ;; (ctree-set-calist-strictly
541 ;;  'mime-acting-condition
542 ;;  '((type . t)(subtype . t)(mode . "extract")
543 ;;    (method . mime-method-to-save)))
544 (ctree-set-calist-with-default
545  'mime-acting-condition
546  '((mode . "extract")
547    (method . mime-method-to-save)))
548
549 ;; (ctree-set-calist-strictly
550 ;;  'mime-acting-condition
551 ;;  '((type . text)(subtype . plain)(mode . "play")
552 ;;    (method "tm-plain" nil 'file "" 'encoding 'mode 'name)
553 ;;    ))
554 ;; (ctree-set-calist-strictly
555 ;;  'mime-acting-condition
556 ;;  '((type . text)(subtype . plain)(mode . "print")
557 ;;    (method "tm-plain" nil 'file "" 'encoding 'mode 'name)
558 ;;    ))
559 ;; (ctree-set-calist-strictly
560 ;;  'mime-acting-condition
561 ;;  '((type . text)(subtype . html)(mode . "play")
562 ;;    (method "tm-html" nil 'file "" 'encoding 'mode 'name)
563 ;;    ))
564 (ctree-set-calist-strictly
565  'mime-acting-condition
566  '((type . text)(subtype . x-rot13-47)(mode . "play")
567    (method . mime-method-to-display-caesar)
568    ))
569 (ctree-set-calist-strictly
570  'mime-acting-condition
571  '((type . text)(subtype . x-rot13-47-48)(mode . "play")
572    (method . mime-method-to-display-caesar)
573    ))
574
575 ;; (ctree-set-calist-strictly
576 ;;  'mime-acting-condition
577 ;;  '((type . audio)(subtype . basic)(mode . "play")
578 ;;    (method "tm-au" nil 'file "" 'encoding 'mode 'name)
579 ;;    ))
580
581 ;; (ctree-set-calist-strictly
582 ;;  'mime-acting-condition
583 ;;  '((type . image)(mode . "play")
584 ;;    (method "tm-image" nil 'file "" 'encoding 'mode 'name)
585 ;;    ))
586 ;; (ctree-set-calist-strictly
587 ;;  'mime-acting-condition
588 ;;  '((type . image)(mode . "print")
589 ;;    (method "tm-image" nil 'file "" 'encoding 'mode 'name)
590 ;;    ))
591
592 ;; (ctree-set-calist-strictly
593 ;;  'mime-acting-condition
594 ;;  '((type . video)(subtype . mpeg)(mode . "play")
595 ;;    (method "tm-mpeg" nil 'file "" 'encoding 'mode 'name)
596 ;;    ))
597
598 ;; (ctree-set-calist-strictly
599 ;;  'mime-acting-condition
600 ;;  '((type . application)(subtype . postscript)(mode . "play")
601 ;;    (method "tm-ps" nil 'file "" 'encoding 'mode 'name)
602 ;;    ))
603 ;; (ctree-set-calist-strictly
604 ;;  'mime-acting-condition
605 ;;  '((type . application)(subtype . postscript)(mode . "print")
606 ;;    (method "tm-ps" nil 'file "" 'encoding 'mode 'name)
607 ;;    ))
608
609 (ctree-set-calist-strictly
610  'mime-acting-condition
611  '((type . message)(subtype . rfc822)(mode . "play")
612    (method . mime-method-to-display-message/rfc822)
613    ))
614 (ctree-set-calist-strictly
615  'mime-acting-condition
616  '((type . message)(subtype . partial)(mode . "play")
617    (method . mime-method-to-store-message/partial)
618    ))
619
620 (ctree-set-calist-strictly
621  'mime-acting-condition
622  '((type . message)(subtype . external-body)
623    ("access-type" . "anon-ftp")
624    (method . mime-method-to-display-message/external-ftp)
625    ))
626
627 (ctree-set-calist-strictly
628  'mime-acting-condition
629  '((type . application)(subtype . octet-stream)
630    (method . mime-method-to-save)
631    ))
632
633
634 ;;; @ quitting method
635 ;;;
636
637 (defvar mime-preview-quitting-method-alist
638   '((mime-show-message-mode
639      . mime-preview-quitting-method-for-mime-show-message-mode))
640   "Alist of major-mode vs. quitting-method of mime-view.")
641
642 (defvar mime-view-over-to-previous-method-alist nil)
643 (defvar mime-view-over-to-next-method-alist nil)
644
645 (defvar mime-view-show-summary-method nil
646   "Alist of major-mode vs. show-summary-method.")
647
648
649 ;;; @ following method
650 ;;;
651
652 (defvar mime-view-following-method-alist nil
653   "Alist of major-mode vs. following-method of mime-view.")
654
655 (defvar mime-view-following-required-fields-list
656   '("From"))
657
658
659 ;;; @ X-Face
660 ;;;
661
662 ;; hack from Gnus 5.0.4.
663
664 (defvar mime-view-x-face-to-pbm-command
665   "{ echo '/* Width=48, Height=48 */'; uncompface; } | icontopbm")
666
667 (defvar mime-view-x-face-command
668   (concat mime-view-x-face-to-pbm-command
669           " | xv -quit -")
670   "String to be executed to display an X-Face field.
671 The command will be executed in a sub-shell asynchronously.
672 The compressed face will be piped to this command.")
673
674 (defun mime-view-x-face-function ()
675   "Function to display X-Face field. You can redefine to customize."
676   ;; 1995/10/12 (c.f. tm-eng:130)
677   ;;    fixed by Eric Ding <ericding@San-Jose.ate.slb.com>
678   (save-restriction
679     (narrow-to-region (point-min) (re-search-forward "^$" nil t))
680     ;; end
681     (goto-char (point-min))
682     (if (re-search-forward "^X-Face:[ \t]*" nil t)
683         (let ((beg (match-end 0))
684               (end (std11-field-end))
685               )
686           (call-process-region beg end "sh" nil 0 nil
687                                "-c" mime-view-x-face-command)
688           ))))
689
690
691 ;;; @ miscellaneous
692 ;;;
693
694 (defvar mime-view-uuencode-encoding-name-list '("x-uue" "x-uuencode"))
695
696 (defvar mime-raw-buffer-coding-system-alist
697   `((t . ,(mime-charset-to-coding-system default-mime-charset)))
698   "Alist of major-mode vs. corresponding coding-system of `mime-raw-buffer'.")
699
700
701 ;;; @ buffer setup
702 ;;;
703
704 (defvar mime-view-redisplay nil)
705
706 (defun mime-view-setup-buffers (&optional ctl encoding ibuf obuf)
707   (if ibuf
708       (progn
709         (get-buffer ibuf)
710         (set-buffer ibuf)
711         ))
712   (or mime-view-redisplay
713       (setq mime-raw-message-info (mime-parse-message ctl encoding))
714       )
715   (let ((message-info mime-raw-message-info)
716         (the-buf (current-buffer))
717         (mode major-mode))
718     (or obuf
719         (setq obuf (concat "*Preview-" (buffer-name the-buf) "*")))
720     (set-buffer (get-buffer-create obuf))
721     (let ((inhibit-read-only t))
722       ;;(setq buffer-read-only nil)
723       (widen)
724       (erase-buffer)
725       (setq mime-raw-buffer the-buf)
726       (setq mime-preview-original-major-mode mode)
727       (setq major-mode 'mime-view-mode)
728       (setq mode-name "MIME-View")
729       (mime-view-display-entity message-info message-info
730                                 the-buf obuf
731                                 '((entity-button . invisible)
732                                   (header . visible)
733                                   ))
734       (set-buffer-modified-p nil)
735       )
736     (setq buffer-read-only t)
737     (set-buffer the-buf)
738     )
739   (setq mime-preview-buffer obuf)
740   )
741
742 (defun mime-view-display-entity (entity message-info ibuf obuf
743                                         default-situation)
744   (let* ((start (mime-entity-point-min entity))
745          (end (mime-entity-point-max entity))
746          (content-type (mime-entity-content-type entity))
747          (encoding (mime-entity-encoding entity))
748          end-of-header e nb ne subj)
749     (set-buffer ibuf)
750     (goto-char start)
751     (setq end-of-header (if (re-search-forward "^$" nil t)
752                             (1+ (match-end 0))
753                           end))
754     (if (> end-of-header end)
755         (setq end-of-header end)
756       )
757     (save-restriction
758       (narrow-to-region start end)
759       (setq subj (eword-decode-string (mime-raw-get-subject entity)))
760       )
761     (let* ((situation
762             (or
763              (ctree-match-calist mime-preview-condition
764                                  (append
765                                   (or content-type
766                                       (make-mime-content-type 'text 'plain))
767                                   (list* (cons 'encoding   encoding)
768                                          (cons 'major-mode major-mode)
769                                          default-situation)))
770              default-situation))
771            (button-is-invisible
772             (eq (cdr (assq 'entity-button situation)) 'invisible))
773            (header-is-visible
774             (eq (cdr (assq 'header situation)) 'visible))
775            (body-presentation-method
776             (cdr (assq 'body-presentation-method situation))))
777       (set-buffer obuf)
778       (setq nb (point))
779       (narrow-to-region nb nb)
780       (or button-is-invisible
781           (if (mime-view-entity-button-visible-p entity message-info)
782               (mime-view-insert-entity-button entity message-info subj)
783             ))
784       (if header-is-visible
785           (save-restriction
786             (narrow-to-region (point)(point))
787             (insert-buffer-substring mime-raw-buffer start end-of-header)
788             (let ((f (cdr (assq mime-preview-original-major-mode
789                                 mime-view-content-header-filter-alist))))
790               (if (functionp f)
791                   (funcall f)
792                 (mime-view-default-content-header-filter)
793                 ))
794             (run-hooks 'mime-view-content-header-filter-hook)
795             ))
796       (cond ((eq body-presentation-method 'with-filter)
797              (let ((body-filter (cdr (assq 'body-filter situation))))
798                (save-restriction
799                  (narrow-to-region (point-max)(point-max))
800                  (insert-buffer-substring mime-raw-buffer end-of-header end)
801                  (funcall body-filter situation)
802                  )))
803             ((functionp body-presentation-method)
804              (funcall body-presentation-method situation)
805              ))
806       (or header-is-visible
807           body-presentation-method
808           (progn
809             (goto-char (point-max))
810             (insert "\n")
811             ))
812       (setq ne (point-max))
813       (widen)
814       (put-text-property nb ne 'mime-view-raw-buffer ibuf)
815       (put-text-property nb ne 'mime-view-entity entity)
816       (goto-char ne)
817       (let ((children (mime-entity-children entity))
818             (default-situation
819               (cdr (assq 'childrens-situation situation))))
820         (while children
821           (mime-view-display-entity (car children) message-info ibuf obuf
822                                     default-situation)
823           (setq children (cdr children))
824           )))))
825
826 (defun mime-raw-get-uu-filename ()
827   (save-excursion
828     (if (re-search-forward "^begin [0-9]+ " nil t)
829         (if (looking-at ".+$")
830             (buffer-substring (match-beginning 0)(match-end 0))
831           ))))
832
833 (defun mime-raw-get-subject (entity)
834   (or (std11-find-field-body '("Content-Description" "Subject"))
835       (let ((ret (mime-entity-content-disposition entity)))
836         (and ret
837              (setq ret (mime-content-disposition-filename ret))
838              (std11-strip-quoted-string ret)
839              ))
840       (let ((ret (mime-entity-content-type entity)))
841         (and ret
842              (setq ret
843                    (cdr
844                     (let ((param (mime-content-type-parameters ret)))
845                       (or (assoc "name" param)
846                           (assoc "x-name" param))
847                       )))
848              (std11-strip-quoted-string ret)
849              ))
850       (if (member (mime-entity-encoding entity)
851                   mime-view-uuencode-encoding-name-list)
852           (mime-raw-get-uu-filename))
853       ""))
854
855
856 ;;; @ MIME viewer mode
857 ;;;
858
859 (defconst mime-view-menu-title "MIME-View")
860 (defconst mime-view-menu-list
861   '((up          "Move to upper entity"    mime-preview-move-to-upper)
862     (previous    "Move to previous entity" mime-preview-move-to-previous)
863     (next        "Move to next entity"     mime-preview-move-to-next)
864     (scroll-down "Scroll-down"             mime-preview-scroll-down-entity)
865     (scroll-up   "Scroll-up"               mime-preview-scroll-up-entity)
866     (play        "Play current entity"     mime-preview-play-current-entity)
867     (extract     "Extract current entity"  mime-preview-extract-current-entity)
868     (print       "Print current entity"    mime-preview-print-current-entity)
869     (x-face      "Show X Face"             mime-preview-display-x-face)
870     )
871   "Menu for MIME Viewer")
872
873 (cond (running-xemacs
874        (defvar mime-view-xemacs-popup-menu
875          (cons mime-view-menu-title
876                (mapcar (function
877                         (lambda (item)
878                           (vector (nth 1 item)(nth 2 item) t)
879                           ))
880                        mime-view-menu-list)))
881        (defun mime-view-xemacs-popup-menu (event)
882          "Popup the menu in the MIME Viewer buffer"
883          (interactive "e")
884          (select-window (event-window event))
885          (set-buffer (event-buffer event))
886          (popup-menu 'mime-view-xemacs-popup-menu))
887        (defvar mouse-button-2 'button2)
888        )
889       (t
890        (defvar mouse-button-2 [mouse-2])
891        ))
892
893 (defun mime-view-define-keymap (&optional default)
894   (let ((mime-view-mode-map (if (keymapp default)
895                                 (copy-keymap default)
896                               (make-sparse-keymap)
897                               )))
898     (define-key mime-view-mode-map
899       "u"        (function mime-preview-move-to-upper))
900     (define-key mime-view-mode-map
901       "p"        (function mime-preview-move-to-previous))
902     (define-key mime-view-mode-map
903       "n"        (function mime-preview-move-to-next))
904     (define-key mime-view-mode-map
905       "\e\t"     (function mime-preview-move-to-previous))
906     (define-key mime-view-mode-map
907       "\t"       (function mime-preview-move-to-next))
908     (define-key mime-view-mode-map
909       " "        (function mime-preview-scroll-up-entity))
910     (define-key mime-view-mode-map
911       "\M- "     (function mime-preview-scroll-down-entity))
912     (define-key mime-view-mode-map
913       "\177"     (function mime-preview-scroll-down-entity))
914     (define-key mime-view-mode-map
915       "\C-m"     (function mime-preview-next-line-entity))
916     (define-key mime-view-mode-map
917       "\C-\M-m"  (function mime-preview-previous-line-entity))
918     (define-key mime-view-mode-map
919       "v"        (function mime-preview-play-current-entity))
920     (define-key mime-view-mode-map
921       "e"        (function mime-preview-extract-current-entity))
922     (define-key mime-view-mode-map
923       "\C-c\C-p" (function mime-preview-print-current-entity))
924     (define-key mime-view-mode-map
925       "a"        (function mime-preview-follow-current-entity))
926     (define-key mime-view-mode-map
927       "q"        (function mime-preview-quit))
928     (define-key mime-view-mode-map
929       "h"        (function mime-preview-show-summary))
930     (define-key mime-view-mode-map
931       "\C-c\C-x" (function mime-preview-kill-buffer))
932     ;; (define-key mime-view-mode-map
933     ;;   "<"        (function beginning-of-buffer))
934     ;; (define-key mime-view-mode-map
935     ;;   ">"        (function end-of-buffer))
936     (define-key mime-view-mode-map
937       "?"        (function describe-mode))
938     (define-key mime-view-mode-map
939       [tab] (function mime-preview-move-to-next))
940     (define-key mime-view-mode-map
941       [delete] (function mime-preview-scroll-down-entity))
942     (define-key mime-view-mode-map
943       [backspace] (function mime-preview-scroll-down-entity))
944     (if (functionp default)
945         (cond (running-xemacs
946                (set-keymap-default-binding mime-view-mode-map default)
947                )
948               (t
949                (setq mime-view-mode-map
950                      (append mime-view-mode-map (list (cons t default))))
951                )))
952     (if mouse-button-2
953         (define-key mime-view-mode-map
954           mouse-button-2 (function mime-button-dispatcher))
955       )
956     (cond (running-xemacs
957            (define-key mime-view-mode-map
958              mouse-button-3 (function mime-view-xemacs-popup-menu))
959            )
960           ((>= emacs-major-version 19)
961            (define-key mime-view-mode-map [menu-bar mime-view]
962              (cons mime-view-menu-title
963                    (make-sparse-keymap mime-view-menu-title)))
964            (mapcar (function
965                     (lambda (item)
966                       (define-key mime-view-mode-map
967                         (vector 'menu-bar 'mime-view (car item))
968                         (cons (nth 1 item)(nth 2 item))
969                         )
970                       ))
971                    (reverse mime-view-menu-list)
972                    )
973            ))
974     (use-local-map mime-view-mode-map)
975     (run-hooks 'mime-view-define-keymap-hook)
976     ))
977
978 (defsubst mime-maybe-hide-echo-buffer ()
979   "Clear mime-echo buffer and delete window for it."
980   (let ((buf (get-buffer mime-echo-buffer-name)))
981     (if buf
982         (save-excursion
983           (set-buffer buf)
984           (erase-buffer)
985           (let ((win (get-buffer-window buf)))
986             (if win
987                 (delete-window win)
988               ))
989           (bury-buffer buf)
990           ))))
991
992 (defun mime-view-mode (&optional mother ctl encoding ibuf obuf
993                                  default-keymap-or-function)
994   "Major mode for viewing MIME message.
995
996 Here is a list of the standard keys for mime-view-mode.
997
998 key             feature
999 ---             -------
1000
1001 u               Move to upper content
1002 p or M-TAB      Move to previous content
1003 n or TAB        Move to next content
1004 SPC             Scroll up or move to next content
1005 M-SPC or DEL    Scroll down or move to previous content
1006 RET             Move to next line
1007 M-RET           Move to previous line
1008 v               Decode current content as `play mode'
1009 e               Decode current content as `extract mode'
1010 C-c C-p         Decode current content as `print mode'
1011 a               Followup to current content.
1012 x               Display X-Face
1013 q               Quit
1014 button-2        Move to point under the mouse cursor
1015                 and decode current content as `play mode'
1016 "
1017   (interactive)
1018   (mime-maybe-hide-echo-buffer)
1019   (let ((ret (mime-view-setup-buffers ctl encoding ibuf obuf))
1020         (win-conf (current-window-configuration))
1021         )
1022     (prog1
1023         (switch-to-buffer ret)
1024       (setq mime-preview-original-window-configuration win-conf)
1025       (if mother
1026           (progn
1027             (setq mime-mother-buffer mother)
1028             ))
1029       (mime-view-define-keymap default-keymap-or-function)
1030       (let ((point
1031              (next-single-property-change (point-min) 'mime-view-entity)))
1032         (if point
1033             (goto-char point)
1034           (goto-char (point-min))
1035           (search-forward "\n\n" nil t)
1036           ))
1037       (run-hooks 'mime-view-mode-hook)
1038       )))
1039
1040
1041 ;;; @@ playing
1042 ;;;
1043
1044 (autoload 'mime-preview-play-current-entity "mime-play"
1045   "Play current entity." t)
1046
1047 (defun mime-preview-extract-current-entity ()
1048   "Extract current entity into file (maybe).
1049 It decodes current entity to call internal or external method as
1050 \"extract\" mode.  The method is selected from variable
1051 `mime-acting-condition'."
1052   (interactive)
1053   (mime-preview-play-current-entity "extract")
1054   )
1055
1056 (defun mime-preview-print-current-entity ()
1057   "Print current entity (maybe).
1058 It decodes current entity to call internal or external method as
1059 \"print\" mode.  The method is selected from variable
1060 `mime-acting-condition'."
1061   (interactive)
1062   (mime-preview-play-current-entity "print")
1063   )
1064
1065
1066 ;;; @@ following
1067 ;;;
1068
1069 (defun mime-preview-original-major-mode ()
1070   "Return major-mode of original buffer.
1071 If a current buffer has mime-mother-buffer, return original major-mode
1072 of the mother-buffer."
1073   (if mime-mother-buffer
1074       (save-excursion
1075         (set-buffer mime-mother-buffer)
1076         (mime-preview-original-major-mode)
1077         )
1078     mime-preview-original-major-mode))
1079
1080 (defun mime-preview-follow-current-entity ()
1081   "Write follow message to current entity.
1082 It calls following-method selected from variable
1083 `mime-view-following-method-alist'."
1084   (interactive)
1085   (let (entity)
1086     (while (null (setq entity
1087                        (get-text-property (point) 'mime-view-entity)))
1088       (backward-char)
1089       )
1090     (let* ((p-beg
1091             (previous-single-property-change (point) 'mime-view-entity))
1092            p-end
1093            (entity-node-id (mime-entity-node-id entity))
1094            (len (length entity-node-id))
1095            )
1096       (cond ((null p-beg)
1097              (setq p-beg
1098                    (if (eq (next-single-property-change (point-min)
1099                                                         'mime-view-entity)
1100                            (point))
1101                        (point)
1102                      (point-min)))
1103              )
1104             ((eq (next-single-property-change p-beg 'mime-view-entity)
1105                  (point))
1106              (setq p-beg (point))
1107              ))
1108       (setq p-end (next-single-property-change p-beg 'mime-view-entity))
1109       (cond ((null p-end)
1110              (setq p-end (point-max))
1111              )
1112             ((null entity-node-id)
1113              (setq p-end (point-max))
1114              )
1115             (t
1116              (save-excursion
1117                (goto-char p-end)
1118                (catch 'tag
1119                  (let (e)
1120                    (while (setq e
1121                                 (next-single-property-change
1122                                  (point) 'mime-view-entity))
1123                      (goto-char e)
1124                      (let ((rc (mime-entity-node-id
1125                                 (get-text-property (point)
1126                                                    'mime-view-entity))))
1127                        (or (equal entity-node-id
1128                                   (nthcdr (- (length rc) len) rc))
1129                            (throw 'tag nil)
1130                            ))
1131                      (setq p-end e)
1132                      ))
1133                  (setq p-end (point-max))
1134                  ))
1135              ))
1136       (let* ((mode (mime-preview-original-major-mode))
1137              (new-name
1138               (format "%s-%s" (buffer-name) (reverse entity-node-id)))
1139              new-buf
1140              (the-buf (current-buffer))
1141              (a-buf mime-raw-buffer)
1142              fields)
1143         (save-excursion
1144           (set-buffer (setq new-buf (get-buffer-create new-name)))
1145           (erase-buffer)
1146           (insert-buffer-substring the-buf p-beg p-end)
1147           (goto-char (point-min))
1148           (let ((entity-node-id (mime-entity-node-id entity)) ci str)
1149             (while (progn
1150                      (setq
1151                       str
1152                       (save-excursion
1153                         (set-buffer a-buf)
1154                         (setq
1155                          ci
1156                          (mime-raw-find-entity-from-node-id entity-node-id))
1157                         (save-restriction
1158                           (narrow-to-region
1159                            (mime-entity-point-min ci)
1160                            (mime-entity-point-max ci)
1161                            )
1162                           (std11-header-string-except
1163                            (concat "^"
1164                                    (apply (function regexp-or) fields)
1165                                    ":") ""))))
1166                      (if (and
1167                           (eq (mime-entity-media-type ci) 'message)
1168                           (eq (mime-entity-media-subtype ci) 'rfc822))
1169                          nil
1170                        (if str
1171                            (insert str)
1172                          )
1173                        entity-node-id))
1174               (setq fields (std11-collect-field-names)
1175                     entity-node-id (cdr entity-node-id))
1176               )
1177             )
1178           (let ((rest mime-view-following-required-fields-list))
1179             (while rest
1180               (let ((field-name (car rest)))
1181                 (or (std11-field-body field-name)
1182                     (insert
1183                      (format
1184                       (concat field-name
1185                               ": "
1186                               (save-excursion
1187                                 (set-buffer the-buf)
1188                                 (set-buffer mime-mother-buffer)
1189                                 (set-buffer mime-raw-buffer)
1190                                 (std11-field-body field-name)
1191                                 )
1192                               "\n")))
1193                     ))
1194               (setq rest (cdr rest))
1195               ))
1196           (eword-decode-header)
1197           )
1198         (let ((f (cdr (assq mode mime-view-following-method-alist))))
1199           (if (functionp f)
1200               (funcall f new-buf)
1201             (message
1202              (format
1203               "Sorry, following method for %s is not implemented yet."
1204               mode))
1205             ))
1206         ))))
1207
1208
1209 ;;; @@ X-Face
1210 ;;;
1211
1212 (defun mime-preview-display-x-face ()
1213   (interactive)
1214   (save-window-excursion
1215     (set-buffer mime-raw-buffer)
1216     (mime-view-x-face-function)
1217     ))
1218
1219
1220 ;;; @@ moving
1221 ;;;
1222
1223 (defun mime-preview-move-to-upper ()
1224   "Move to upper entity.
1225 If there is no upper entity, call function `mime-preview-quit'."
1226   (interactive)
1227   (let (cinfo)
1228     (while (null (setq cinfo
1229                        (get-text-property (point) 'mime-view-entity)))
1230       (backward-char)
1231       )
1232     (let ((r (mime-raw-find-entity-from-node-id
1233               (cdr (mime-entity-node-id cinfo))
1234               (get-text-property 1 'mime-view-entity)))
1235           point)
1236       (catch 'tag
1237         (while (setq point (previous-single-property-change
1238                             (point) 'mime-view-entity))
1239           (goto-char point)
1240           (if (eq r (get-text-property (point) 'mime-view-entity))
1241               (throw 'tag t)
1242             )
1243           )
1244         (mime-preview-quit)
1245         ))))
1246
1247 (defun mime-preview-move-to-previous ()
1248   "Move to previous entity.
1249 If there is no previous entity, it calls function registered in
1250 variable `mime-view-over-to-previous-method-alist'."
1251   (interactive)
1252   (while (null (get-text-property (point) 'mime-view-entity))
1253     (backward-char)
1254     )
1255   (let ((point (previous-single-property-change (point) 'mime-view-entity)))
1256     (if point
1257         (if (get-text-property (1- point) 'mime-view-entity)
1258             (goto-char point)
1259           (goto-char (1- point))
1260           (mime-preview-move-to-previous)
1261           )
1262       (let ((f (assq mime-preview-original-major-mode
1263                      mime-view-over-to-previous-method-alist)))
1264         (if f
1265             (funcall (cdr f))
1266           ))
1267       )))
1268
1269 (defun mime-preview-move-to-next ()
1270   "Move to next entity.
1271 If there is no previous entity, it calls function registered in
1272 variable `mime-view-over-to-next-method-alist'."
1273   (interactive)
1274   (while (null (get-text-property (point) 'mime-view-entity))
1275     (forward-char)
1276     )
1277   (let ((point (next-single-property-change (point) 'mime-view-entity)))
1278     (if point
1279         (progn
1280           (goto-char point)
1281           (if (null (get-text-property point 'mime-view-entity))
1282               (mime-preview-move-to-next)
1283             ))
1284       (let ((f (assq mime-preview-original-major-mode
1285                      mime-view-over-to-next-method-alist)))
1286         (if f
1287             (funcall (cdr f))
1288           ))
1289       )))
1290
1291 (defun mime-preview-scroll-up-entity (&optional h)
1292   "Scroll up current entity.
1293 If reached to (point-max), it calls function registered in variable
1294 `mime-view-over-to-next-method-alist'."
1295   (interactive)
1296   (or h
1297       (setq h (1- (window-height)))
1298       )
1299   (if (= (point) (point-max))
1300       (let ((f (assq mime-preview-original-major-mode
1301                      mime-view-over-to-next-method-alist)))
1302         (if f
1303             (funcall (cdr f))
1304           ))
1305     (let ((point
1306            (or (next-single-property-change (point) 'mime-view-entity)
1307                (point-max))))
1308       (forward-line h)
1309       (if (> (point) point)
1310           (goto-char point)
1311         )
1312       )))
1313
1314 (defun mime-preview-scroll-down-entity (&optional h)
1315   "Scroll down current entity.
1316 If reached to (point-min), it calls function registered in variable
1317 `mime-view-over-to-previous-method-alist'."
1318   (interactive)
1319   (or h
1320       (setq h (1- (window-height)))
1321       )
1322   (if (= (point) (point-min))
1323       (let ((f (assq mime-preview-original-major-mode
1324                      mime-view-over-to-previous-method-alist)))
1325         (if f
1326             (funcall (cdr f))
1327           ))
1328     (let (point)
1329       (save-excursion
1330         (catch 'tag
1331           (while (> (point) 1)
1332             (if (setq point
1333                       (previous-single-property-change (point)
1334                                                        'mime-view-entity))
1335                 (throw 'tag t)
1336               )
1337             (backward-char)
1338             )
1339           (setq point (point-min))
1340           ))
1341       (forward-line (- h))
1342       (if (< (point) point)
1343           (goto-char point)
1344         ))))
1345
1346 (defun mime-preview-next-line-entity ()
1347   (interactive)
1348   (mime-preview-scroll-up-entity 1)
1349   )
1350
1351 (defun mime-preview-previous-line-entity ()
1352   (interactive)
1353   (mime-preview-scroll-down-entity 1)
1354   )
1355
1356
1357 ;;; @@ quitting
1358 ;;;
1359
1360 (defun mime-preview-quit ()
1361   "Quit from MIME-preview buffer.
1362 It calls function registered in variable
1363 `mime-preview-quitting-method-alist'."
1364   (interactive)
1365   (let ((r (assq mime-preview-original-major-mode
1366                  mime-preview-quitting-method-alist)))
1367     (if r
1368         (funcall (cdr r))
1369       )))
1370
1371 (defun mime-preview-show-summary ()
1372   "Show summary.
1373 It calls function registered in variable
1374 `mime-view-show-summary-method'."
1375   (interactive)
1376   (let ((r (assq mime-preview-original-major-mode
1377                  mime-view-show-summary-method)))
1378     (if r
1379         (funcall (cdr r))
1380       )))
1381
1382 (defun mime-preview-kill-buffer ()
1383   (interactive)
1384   (kill-buffer (current-buffer))
1385   )
1386
1387
1388 ;;; @ end
1389 ;;;
1390
1391 (provide 'mime-view)
1392
1393 (run-hooks 'mime-view-load-hook)
1394
1395 ;;; mime-view.el ends here