Don't require tl-str and tl-misc.
[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.2 $
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.2 1997-02-28 02:38:35 tmorioka 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   )
239
240 (set-alist 'mime-view-content-header-filter-alist
241            'mh-show-mode
242            (function emh-content-header-filter))
243
244 (defun emh-quitting-method ()
245   (let ((win (get-buffer-window
246               mime/output-buffer-name))
247         (buf (current-buffer))
248         )
249     (if win
250         (delete-window win)
251       )
252     (pop-to-buffer
253      (let ((name (buffer-name buf)))
254        (substring name 5)
255        ))
256     (if (not emh-automatic-mime-preview)
257         (mh-invalidate-show-buffer)
258       )
259     (mh-show (mh-get-msg-num t))
260     ))
261
262 (set-alist 'mime-view-quitting-method-alist
263            'mh-show-mode
264            (function emh-quitting-method))
265 (set-alist 'mime-view-show-summary-method
266            'mh-show-mode
267            (function emh-quitting-method))
268
269 (defun emh-following-method (buf)
270   (save-excursion
271     (set-buffer buf)
272     (goto-char (point-max))
273     (setq mh-show-buffer buf)
274     (apply (function mh-send)
275            (std11-field-bodies '("From" "cc" "Subject") ""))
276     (setq mh-sent-from-folder buf)
277     (setq mh-sent-from-msg 1)
278     (let ((last (point)))
279       (mh-yank-cur-msg)
280       (goto-char last)
281       )))
282
283 (set-alist 'mime-view-following-method-alist
284            'mh-show-mode
285            (function emh-following-method))
286
287
288 ;;; @@ for mime-partial
289 ;;;
290
291 (call-after-loaded
292  'mime-partial
293  (function
294   (lambda ()
295     (set-atype 'mime/content-decoding-condition
296                '((type . "message/partial")
297                  (method . mime-article/grab-message/partials)
298                  (major-mode . mh-show-mode)
299                  (summary-buffer-exp
300                   . (and (or (string-match "^article-\\(.+\\)$" article-buffer)
301                              (string-match "^show-\\(.+\\)$" article-buffer))
302                          (substring article-buffer
303                                     (match-beginning 1) (match-end 1))
304                          ))
305                  ))
306     (set-alist 'mime-partial/preview-article-method-alist
307                'mh-show-mode
308                (function
309                 (lambda ()
310                   (let ((emh-automatic-mime-preview t))
311                     (emh-show)
312                     ))))
313     )))
314
315
316 ;;; @ set up
317 ;;;
318
319 (define-key mh-folder-mode-map "v" (function emh-view-message))
320 (define-key mh-folder-mode-map "\et" (function emh-toggle-decoding-mode))
321 (define-key mh-folder-mode-map "." (function emh-show))
322 (define-key mh-folder-mode-map "," (function emh-header-display))
323 (define-key mh-folder-mode-map "\e," (function emh-raw-display))
324 (define-key mh-folder-mode-map "\C-c\C-b"
325   (function emh-burst-multipart/digest))
326
327 (defun emh-summary-before-quit ()
328   (let ((buf (get-buffer mh-show-buffer)))
329     (if buf
330         (let ((the-buf (current-buffer)))
331           (switch-to-buffer buf)
332           (if (and mime::article/preview-buffer
333                    (setq buf (get-buffer mime::article/preview-buffer))
334                    )
335               (progn
336                 (switch-to-buffer the-buf)
337                 (kill-buffer buf)
338                 )
339             (switch-to-buffer the-buf)
340             )
341           ))))
342
343 (add-hook 'mh-before-quit-hook (function emh-summary-before-quit))
344              
345
346 ;;; @@ for emh-comp.el
347 ;;;
348
349 (autoload 'emh-edit-again "emh-comp"
350   "Clean-up a draft or a message previously sent and make it resendable." t)
351 (autoload 'emh-extract-rejected-mail "emh-comp"
352   "Extract a letter returned by the mail system and make it re-editable." t)
353 (autoload 'emh-forward "emh-comp"
354   "Forward a message or message sequence by MIME style." t)
355
356 (call-after-loaded
357  'mime-setup
358  (function
359   (lambda ()
360     (substitute-key-definition
361      'mh-edit-again 'emh-edit-again mh-folder-mode-map)
362     (substitute-key-definition
363      'mh-extract-rejected-mail 'emh-extract-rejected-mail
364      mh-folder-mode-map)
365     (substitute-key-definition
366      'mh-forward 'emh-forward mh-folder-mode-map)
367
368     (call-after-loaded
369      'mh-comp
370      (function
371       (lambda ()
372         (require 'emh-comp)
373         ))
374      'mh-letter-mode-hook)
375     )))
376
377
378 ;;; @ for BBDB
379 ;;;
380
381 (call-after-loaded
382  'bbdb
383  (function
384   (lambda ()
385     (require 'tm-bbdb)
386     )))
387
388
389 ;;; @ end
390 ;;;
391
392 (provide 'emh)
393
394 (run-hooks 'emh-load-hook)
395
396 ;;; emh.el ends here