(emh-content-header-filter): Run `emh-content-header-filter-hook'.
[elisp/emh.git] / emh.el
1 ;;; emh.el --- MIME extender for mh-e
2
3 ;; Copyright (C) 1995,1996 Free Software Foundation, Inc.
4
5 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
6 ;;         OKABE Yasuo <okabe@kudpc.kyoto-u.ac.jp>
7 ;; Maintainer: MORIOKA Tomohiko <morioka@jaist.ac.jp>
8 ;; Created: 1993/11/21
9 ;;      Renamed: 1993/11/27 from mh-e-mime.el
10 ;;      Renamed: 1997/02/21 from tm-mh-e.el
11 ;; Version: $Revision: 0.6 $
12 ;; Keywords: MH, MIME, multimedia, encoded-word, multilingual, mail
13
14 ;; This file is part of emh.
15
16 ;; This program is free software; you can redistribute it and/or
17 ;; modify it under the terms of the GNU General Public License as
18 ;; published by the Free Software Foundation; either version 2, or (at
19 ;; your option) any later version.
20
21 ;; This program is distributed in the hope that it will be useful, but
22 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
23 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
24 ;; General Public License for more details.
25
26 ;; You should have received a copy of the GNU General Public License
27 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
28 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
29 ;; Boston, MA 02111-1307, USA.
30
31 ;;; Code:
32
33 (require 'mh-e)
34 (require 'mime-view)
35 (require 'alist)
36
37
38 ;;; @ version
39 ;;;
40
41 (defconst emh-RCS-ID
42   "$Id: emh.el,v 0.6 1997-03-03 20:56:19 morioka Exp $")
43
44 (defconst emh-version (get-version-string emh-RCS-ID))
45
46
47 ;;; @ variable
48 ;;;
49
50 (defvar emh-automatic-mime-preview t
51   "*If non-nil, show MIME processed message.")
52
53 (defvar emh-decode-encoded-word t
54   "*If non-nil, decode encoded-word when it is not MIME preview mode.")
55
56
57 ;;; @ functions
58 ;;;
59
60 (defun mh-display-msg (msg-num folder &optional show-buffer mode)
61   (or mode
62       (setq mode emh-automatic-mime-preview)
63       )
64   ;; Display message NUMBER of FOLDER.
65   ;; Sets the current buffer to the show buffer.
66   (set-buffer folder)
67   (or show-buffer
68       (setq show-buffer mh-show-buffer))
69   ;; Bind variables in folder buffer in case they are local
70   (let ((msg-filename (mh-msg-filename msg-num)))
71     (if (not (file-exists-p msg-filename))
72         (error "Message %d does not exist" msg-num))
73     (set-buffer show-buffer)
74     (cond ((not (equal msg-filename buffer-file-name))
75            ;; Buffer does not yet contain message.
76            (clear-visited-file-modtime)
77            (unlock-buffer)
78            (setq buffer-file-name nil)  ; no locking during setup
79            (setq buffer-read-only nil)
80            (erase-buffer)
81            (if mode
82                (let* ((aname (concat "article-" folder))
83                       (abuf (get-buffer aname))
84                       )
85                  (if abuf
86                      (progn
87                        (set-buffer abuf)
88                        (setq buffer-read-only nil)
89                        (erase-buffer)
90                        )
91                    (setq abuf (get-buffer-create aname))
92                    (set-buffer abuf)
93                    )
94                  (as-binary-input-file
95                   (insert-file-contents msg-filename)
96                   ;; (goto-char (point-min))
97                   (while (re-search-forward "\r$" nil t)
98                     (replace-match "")
99                     )
100                   )
101                  (set-buffer-modified-p nil)
102                  (setq buffer-read-only t)
103                  (setq buffer-file-name msg-filename)
104                  (mh-show-mode)
105                  (mime-view-mode nil nil nil
106                                  aname (concat "show-" folder))
107                  (goto-char (point-min))
108                  )
109              (let ((clean-message-header mh-clean-message-header)
110                    (invisible-headers mh-invisible-headers)
111                    (visible-headers mh-visible-headers)
112                    )
113                ;; 1995/9/21
114                ;;   modified by ARIURA <ariura@cc.tuat.ac.jp>
115                ;;   to support mhl.
116                (if mhl-formfile
117                    (mh-exec-lib-cmd-output "mhl" "-nobell" "-noclear"
118                                            (if (stringp mhl-formfile)
119                                                (list "-form" mhl-formfile))
120                                            msg-filename)
121                  (insert-file-contents msg-filename))
122                ;; end
123                (goto-char (point-min))
124                (cond (clean-message-header
125                       (mh-clean-msg-header (point-min)
126                                            invisible-headers
127                                            visible-headers)
128                       (goto-char (point-min)))
129                      (t
130                       (mh-start-of-uncleaned-message)))
131                (if emh-decode-encoded-word
132                    (eword-decode-header)
133                  )
134                (set-buffer-modified-p nil)
135                (setq buffer-read-only t)
136                (setq buffer-file-name msg-filename)
137                (mh-show-mode)
138                ))
139            (or (eq buffer-undo-list t)  ;don't save undo info for prev msgs
140                (setq buffer-undo-list nil))
141 ;;; Added by itokon (02/19/96)
142            (setq buffer-file-name msg-filename)
143 ;;;
144            (set-mark nil)
145            (setq mode-line-buffer-identification
146                  (list (format mh-show-buffer-mode-line-buffer-id
147                                folder msg-num)))
148            (set-buffer folder)
149            (setq mh-showing-with-headers nil)))))
150
151 (defun emh-view-message (&optional msg)
152   "MIME decode and play this message."
153   (interactive)
154   (if (or (null emh-automatic-mime-preview)
155           (null (get-buffer mh-show-buffer))
156           (save-excursion
157             (set-buffer mh-show-buffer)
158             (not (eq major-mode 'mime-view-mode))
159             ))
160       (let ((emh-automatic-mime-preview t))
161         (mh-invalidate-show-buffer)
162         (mh-show-msg msg)
163         ))
164   (pop-to-buffer mh-show-buffer)
165   )
166
167 (defun emh-toggle-decoding-mode (arg)
168   "Toggle MIME processing mode.
169 With arg, turn MIME processing on if arg is positive."
170   (interactive "P")
171   (setq emh-automatic-mime-preview
172         (if (null arg)
173             (not emh-automatic-mime-preview)
174           arg))
175   (save-excursion
176     (set-buffer mh-show-buffer)
177     (if (null emh-automatic-mime-preview)
178         (if (and mime::preview/article-buffer
179                  (get-buffer mime::preview/article-buffer))
180             (kill-buffer mime::preview/article-buffer)
181           )))
182   (mh-invalidate-show-buffer)
183   (mh-show (mh-get-msg-num t))
184   )
185
186 (defun emh-show (&optional message)
187   (interactive)
188   (mh-invalidate-show-buffer)
189   (mh-show message)
190   )
191
192 (defun emh-header-display ()
193   (interactive)
194   (mh-invalidate-show-buffer)
195   (let ((mime-view-ignored-field-regexp "^:$")
196         emh-decode-encoded-word)
197     (mh-header-display)
198     ))
199
200 (defun emh-raw-display ()
201   (interactive)
202   (mh-invalidate-show-buffer)
203   (let (emh-automatic-mime-preview
204         emh-decode-encoded-word)
205     (mh-header-display)
206     ))
207
208 (defun emh-burst-multipart/digest ()
209   "Burst apart the current message, which should be a multipart/digest.
210 The message is replaced by its table of contents and the letters from the
211 digest are inserted into the folder after that message."
212   (interactive)
213   (let ((digest (mh-get-msg-num t)))
214     (mh-process-or-undo-commands mh-current-folder)
215     (mh-set-folder-modified-p t)                ; lock folder while bursting
216     (message "Bursting digest...")
217     (mh-exec-cmd "mhn" "-store" mh-current-folder digest)
218     (mh-scan-folder mh-current-folder (format "%d-last" mh-first-msg-num))
219     (message "Bursting digest...done")
220     ))
221
222
223 ;;; @ for mime-view
224 ;;;
225
226 (fset 'emh-decode-charset-buffer
227       (symbol-function 'mime-charset/decode-buffer))
228
229 (set-alist 'mime-text-decoder-alist
230            'mh-show-mode
231            (function emh-decode-charset-buffer))
232
233 (defun emh-content-header-filter ()
234   (goto-char (point-min))
235   (mime-preview/cut-header)
236   (emh-decode-charset-buffer default-mime-charset)
237   (eword-decode-header)
238   (run-hooks 'emh-content-header-filter-hook)
239   )
240
241 (set-alist 'mime-view-content-header-filter-alist
242            'mh-show-mode
243            (function emh-content-header-filter))
244
245 (defun emh-quitting-method ()
246   (let ((win (get-buffer-window
247               mime/output-buffer-name))
248         (buf (current-buffer))
249         )
250     (if win
251         (delete-window win)
252       )
253     (pop-to-buffer
254      (let ((name (buffer-name buf)))
255        (substring name 5)
256        ))
257     (if (not emh-automatic-mime-preview)
258         (mh-invalidate-show-buffer)
259       )
260     (mh-show (mh-get-msg-num t))
261     ))
262
263 (set-alist 'mime-view-quitting-method-alist
264            'mh-show-mode
265            (function emh-quitting-method))
266 (set-alist 'mime-view-show-summary-method
267            'mh-show-mode
268            (function emh-quitting-method))
269
270 (defun emh-following-method (buf)
271   (save-excursion
272     (set-buffer buf)
273     (goto-char (point-max))
274     (setq mh-show-buffer buf)
275     (apply (function mh-send)
276            (std11-field-bodies '("From" "cc" "Subject") ""))
277     (setq mh-sent-from-folder buf)
278     (setq mh-sent-from-msg 1)
279     (let ((last (point)))
280       (mh-yank-cur-msg)
281       (goto-char last)
282       )))
283
284 (set-alist 'mime-view-following-method-alist
285            'mh-show-mode
286            (function emh-following-method))
287
288
289 ;;; @@ for mime-partial
290 ;;;
291
292 (call-after-loaded
293  'mime-partial
294  (function
295   (lambda ()
296     (set-atype 'mime/content-decoding-condition
297                '((type . "message/partial")
298                  (method . mime-article/grab-message/partials)
299                  (major-mode . mh-show-mode)
300                  (summary-buffer-exp
301                   . (and (or (string-match "^article-\\(.+\\)$" article-buffer)
302                              (string-match "^show-\\(.+\\)$" article-buffer))
303                          (substring article-buffer
304                                     (match-beginning 1) (match-end 1))
305                          ))
306                  ))
307     (set-alist 'mime-partial/preview-article-method-alist
308                'mh-show-mode
309                (function
310                 (lambda ()
311                   (let ((emh-automatic-mime-preview t))
312                     (emh-show)
313                     ))))
314     )))
315
316
317 ;;; @ set up
318 ;;;
319
320 (define-key mh-folder-mode-map "v" (function emh-view-message))
321 (define-key mh-folder-mode-map "\et" (function emh-toggle-decoding-mode))
322 (define-key mh-folder-mode-map "." (function emh-show))
323 (define-key mh-folder-mode-map "," (function emh-header-display))
324 (define-key mh-folder-mode-map "\e," (function emh-raw-display))
325 (define-key mh-folder-mode-map "\C-c\C-b"
326   (function emh-burst-multipart/digest))
327
328 (defun emh-summary-before-quit ()
329   (let ((buf (get-buffer mh-show-buffer)))
330     (if buf
331         (let ((the-buf (current-buffer)))
332           (switch-to-buffer buf)
333           (if (and mime::article/preview-buffer
334                    (setq buf (get-buffer mime::article/preview-buffer))
335                    )
336               (progn
337                 (switch-to-buffer the-buf)
338                 (kill-buffer buf)
339                 )
340             (switch-to-buffer the-buf)
341             )
342           ))))
343
344 (add-hook 'mh-before-quit-hook (function emh-summary-before-quit))
345              
346
347 ;;; @@ for emh-comp.el
348 ;;;
349
350 (autoload 'emh-edit-again "emh-comp"
351   "Clean-up a draft or a message previously sent and make it resendable." t)
352 (autoload 'emh-extract-rejected-mail "emh-comp"
353   "Extract a letter returned by the mail system and make it re-editable." t)
354 (autoload 'emh-forward "emh-comp"
355   "Forward a message or message sequence by MIME style." t)
356
357 (call-after-loaded
358  'mime-setup
359  (function
360   (lambda ()
361     (substitute-key-definition
362      'mh-edit-again 'emh-edit-again mh-folder-mode-map)
363     (substitute-key-definition
364      'mh-extract-rejected-mail 'emh-extract-rejected-mail
365      mh-folder-mode-map)
366     (substitute-key-definition
367      'mh-forward 'emh-forward mh-folder-mode-map)
368
369     (call-after-loaded
370      'mh-comp
371      (function
372       (lambda ()
373         (require 'emh-comp)
374         ))
375      'mh-letter-mode-hook)
376     )))
377
378
379 ;;; @ for BBDB
380 ;;;
381
382 (call-after-loaded
383  'bbdb
384  (function
385   (lambda ()
386     (require 'mime-bbdb)
387     )))
388
389
390 ;;; @ end
391 ;;;
392
393 (provide 'emh)
394
395 (run-hooks 'emh-load-hook)
396
397 ;;; emh.el ends here