Rename `mime-combine-message/partials-automatically' ->
[elisp/emh.git] / emh-comp.el
1 ;;; emh-comp.el --- emh functions for composing messages
2
3 ;; Copyright (C) 1993,1994,1995,1996,1997 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: 1996/2/29 (separated from tm-mh-e.el)
9 ;;      Renamed: 1997/2/21 from tmh-comp.el
10 ;; Version: $Id: emh-comp.el,v 0.5 1997-11-11 11:48:57 morioka Exp $
11 ;; Keywords: mail composing, MH, MIME, mail
12
13 ;; This file is part of emh.
14
15 ;; This program is free software; you can redistribute it and/or
16 ;; modify it under the terms of the GNU General Public License as
17 ;; published by the Free Software Foundation; either version 2, or (at
18 ;; your option) any later version.
19
20 ;; This program is distributed in the hope that it will be useful, but
21 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
22 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
23 ;; General Public License for more details.
24
25 ;; You should have received a copy of the GNU General Public License
26 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
27 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
28 ;; Boston, MA 02111-1307, USA.
29
30 ;;; Code:
31
32 (require 'mh-comp)
33 (require 'mime-edit)
34
35
36 ;;; @ variable
37 ;;;
38
39 (defvar emh-forwcomps "forwcomps"
40   "Name of file to be used as a skeleton for forwarding messages.
41 Default is \"forwcomps\".  If not a complete path name, the file
42 is searched for first in the user's MH directory, then in the
43 system MH lib directory.")
44
45 (defvar emh-message-yank-function 'mh-yank-cur-msg)
46
47
48 ;;; @ for tm-edit
49 ;;;
50
51 (defun emh::make-message (folder number)
52   (vector folder number)
53   )
54
55 (defun emh::message/folder (message)
56   (elt message 0)
57   )
58
59 (defun emh::message/number (message)
60   (elt message 1)
61   )
62
63 (defun emh::message/file-name (message)
64   (expand-file-name
65    (emh::message/number message)
66    (mh-expand-file-name (emh::message/folder message))
67    ))
68
69 ;;; modified by OKABE Yasuo <okabe@kudpc.kyoto-u.ac.jp>
70 ;;;     1995/11/14 (cf. [tm-ja:1096])
71 (defun emh-prompt-for-message (prompt folder &optional default)
72   (let* ((files
73           (directory-files (mh-expand-file-name folder) nil "^[0-9]+$")
74           )
75          (folder-buf (get-buffer folder))
76          (default
77            (if folder-buf
78                (save-excursion
79                  (set-buffer folder-buf)
80                  (let* ((show-buffer (get-buffer mh-show-buffer))
81                         (show-buffer-file-name
82                          (buffer-file-name show-buffer)))
83                    (if show-buffer-file-name
84                        (file-name-nondirectory show-buffer-file-name)))))))
85     (if (or (null default)
86             (not (string-match "^[0-9]+$" default)))
87         (setq default
88               (if (and (string= folder mh-sent-from-folder)
89                        mh-sent-from-msg)
90                   (int-to-string mh-sent-from-msg)
91                 (save-excursion
92                   (let (cur-msg)
93                     (if (and
94                          (= 0 (mh-exec-cmd-quiet nil "pick" folder "cur"))
95                          (set-buffer mh-temp-buffer)
96                          (setq cur-msg (buffer-string))
97                          (string-match "^[0-9]+$" cur-msg))
98                         (substring cur-msg 0 (match-end 0))
99                       (car files)))))))
100     (completing-read prompt
101                      (let ((i 0))
102                        (mapcar (function
103                                 (lambda (file)
104                                   (setq i (+ i 1))
105                                   (list file i)
106                                   ))
107                                files)
108                        ) nil nil default)
109     ))
110
111 ;;; modified by OKABE Yasuo <okabe@kudpc.kyoto-u.ac.jp>
112 ;;;     1995/11/14 (cf. [tm-ja:1096])
113 (defun emh-query-message (&optional message)
114   (let (folder number)
115     (if message
116         (progn
117           (setq folder (emh::message/folder message))
118           (setq number (emh::message/number message))
119           ))
120     (or (stringp folder)
121         (setq folder (mh-prompt-for-folder
122                       "Message from"
123                       (if (and (stringp mh-sent-from-folder)
124                                (string-match "^\\+" mh-sent-from-folder))
125                           mh-sent-from-folder "+inbox")
126                       nil)))
127     (setq number
128           (if (numberp number)
129               (number-to-string number)
130             (emh-prompt-for-message "Message number: " folder)
131             ))
132     (emh::make-message folder number)
133     ))
134
135 (defun emh-insert-message (&optional message)
136   ;; always ignores message
137   (let ((article-buffer
138          (if (not (and (stringp mh-sent-from-folder)
139                        (numberp mh-sent-from-msg)
140                        ))
141              (cond ((and (boundp 'gnus-original-article-buffer)
142                          (bufferp mh-sent-from-folder)
143                          (get-buffer gnus-original-article-buffer)
144                          )
145                     gnus-original-article-buffer)
146                    ((and (boundp 'gnus-article-buffer)
147                          (get-buffer gnus-article-buffer)
148                          (bufferp mh-sent-from-folder)
149                          )
150                     (save-excursion
151                       (set-buffer gnus-article-buffer)
152                       (if (eq major-mode 'mime-view-mode)
153                           mime-raw-buffer
154                         (current-buffer)
155                         )))
156                    ))))
157     (if (null article-buffer)
158         (emh-insert-mail
159          (emh::make-message mh-sent-from-folder mh-sent-from-msg)
160          )
161       (insert-buffer article-buffer)
162       (mime-edit-inserted-message-filter)
163       )
164     ))
165
166 (defun emh-insert-mail (&optional message)
167   (save-excursion
168     (save-restriction
169       (let ((message-file
170              (emh::message/file-name (emh-query-message message))))
171         (narrow-to-region (point) (point))
172         (insert-file-contents message-file)
173         (push-mark (point-max))
174         (mime-edit-inserted-message-filter)
175     ))))
176
177 (set-alist 'mime-edit-message-inserter-alist
178            'mh-letter-mode (function emh-insert-message))
179 (set-alist 'mime-edit-mail-inserter-alist
180            'mh-letter-mode (function emh-insert-mail))
181 (set-alist 'mime-edit-mail-inserter-alist
182            'news-reply-mode (function emh-insert-mail))
183 (set-alist
184  'mime-edit-split-message-sender-alist
185  'mh-letter-mode
186  (function
187   (lambda (&optional arg)
188     (interactive "P")
189     (write-region (point-min) (point-max)
190                   mime-edit-draft-file-name nil 'no-message)
191     (cond (arg
192            (pop-to-buffer "MH mail delivery")
193            (erase-buffer)
194            (mh-exec-cmd-output mh-send-prog t "-watch" "-nopush"
195                                "-nodraftfolder"
196                                mh-send-args
197                                mime-edit-draft-file-name)
198            (goto-char (point-max))      ; show the interesting part
199            (recenter -1)
200            (sit-for 1))
201           (t
202            (apply 'mh-exec-cmd-quiet t mh-send-prog 
203                   (mh-list-to-string
204                    (list "-nopush" "-nodraftfolder"
205                          "-noverbose" "-nowatch"
206                          mh-send-args mime-edit-draft-file-name)))))
207     )))
208
209
210 ;;; @ commands using tm-edit features
211 ;;;
212
213 (defun emh-edit-again (msg)
214   "Clean-up a draft or a message previously sent and make it resendable.
215 Default is the current message.
216 The variable mh-new-draft-cleaned-headers specifies the headers to remove.
217 See also documentation for `\\[mh-send]' function."
218   (interactive (list (mh-get-msg-num t)))
219   (catch 'tag
220     (let* ((from-folder mh-current-folder)
221            (config (current-window-configuration))
222            (draft
223             (cond ((and mh-draft-folder (equal from-folder mh-draft-folder))
224                    (let ((name (format "draft-%d" msg)))
225                      (if (get-buffer name)
226                          (throw 'tag (pop-to-buffer name))
227                        )
228                      (let ((filename
229                             (mh-msg-filename msg mh-draft-folder)
230                             ))
231                        (set-buffer (get-buffer-create name))
232                        (as-binary-input-file (insert-file-contents filename))
233                        (setq buffer-file-name filename)
234                        )
235                      (pop-to-buffer name)
236                      (if (re-search-forward "^-+$" nil t)
237                          (replace-match "")
238                          )
239                      name))
240                   (t
241                    (let ((flag enable-multibyte-characters))
242                      (prog1
243                          (as-binary-input-file
244                           (mh-read-draft "clean-up"
245                                          (mh-msg-filename msg) nil))
246                        (setq enable-multibyte-characters flag)
247                        ))
248                    ))))
249       (goto-char (point-min))
250       (mh-clean-msg-header (point-min) mh-new-draft-cleaned-headers nil)
251       (let ((cs (detect-coding-region (point-min)(point-max))))
252         (set-buffer-file-coding-system
253          (if (listp cs)
254              (car cs)
255            cs)))
256       (save-buffer)
257       (mime-edit-again nil 'no-separator 'not-turn-on)
258       (goto-char (point-min))
259       (mh-compose-and-send-mail draft "" from-folder nil nil nil nil nil nil
260                                 config)
261       )))
262
263 ;;; by OKABE Yasuo <okabe@kudpc.kyoto-u.ac.jp>
264 ;;;     1996/2/29 (cf. [tm-ja:1643])
265 (defun emh-extract-rejected-mail (msg)
266   "Extract a letter returned by the mail system and make it re-editable.
267 Default is the current message.  The variable mh-new-draft-cleaned-headers
268 gives the headers to clean out of the original message."
269   (interactive (list (mh-get-msg-num t)))
270   (let ((from-folder mh-current-folder)
271         (config (current-window-configuration))
272         (draft (mh-read-draft "extraction" (mh-msg-filename msg) nil)))
273     (setq buffer-read-only nil)
274     (goto-char (point-min))
275     (cond 
276      ((and
277        (re-search-forward
278         (concat "^\\($\\|[Cc]ontent-[Tt]ype:[ \t]+multipart/\\)") nil t)
279        (not (bolp))
280        (re-search-forward "boundary=\"\\([^\"]+\\)\"" nil t))
281       (let ((case-fold-search t)
282             (boundary (buffer-substring (match-beginning 1) (match-end 1))))
283         (cond
284          ((re-search-forward
285            (concat "^--" boundary "\n"
286                    "content-type:[ \t]+"
287                    "\\(message/rfc822\\|text/rfc822-headers\\)\n"
288                    "\\(.+\n\\)*\n") nil t)
289           (delete-region (point-min) (point))
290           (mh-clean-msg-header (point-min) mh-new-draft-cleaned-headers nil)
291           (search-forward
292            (concat "\n--" boundary "--\n") nil t)
293           (delete-region (match-beginning 0) (point-max)))
294          (t
295           (message "Seems no message/rfc822 part.")))))
296      ((re-search-forward mh-rejected-letter-start nil t)
297       (skip-chars-forward " \t\n")
298       (delete-region (point-min) (point))
299       (mh-clean-msg-header (point-min) mh-new-draft-cleaned-headers nil))
300      (t
301       (message "Does not appear to be a rejected letter.")))
302     (goto-char (point-min))
303     (if (re-search-forward "^-+$" nil t)
304         (replace-match "")
305       )
306     (mime-edit-again nil t t)
307     (goto-char (point-min))
308     (set-buffer-modified-p nil)
309     (mh-compose-and-send-mail draft "" from-folder msg
310                               (mh-get-header-field "To:")
311                               (mh-get-header-field "From:")
312                               (mh-get-header-field "Cc:")
313                               nil nil config)))
314
315 ;;; by OKABE Yasuo <okabe@kudpc.kyoto-u.ac.jp>
316 ;;;     1995/11/14 (cf. [tm-ja:1099])
317 (defun emh-forward (to cc &optional msg-or-seq)
318   "Forward a message or message sequence as MIME message/rfc822.
319 Defaults to displayed message. If optional prefix argument provided,
320 then prompt for the message sequence. See also documentation for
321 `\\[mh-send]' function."
322   (interactive (list (mh-read-address "To: ")
323                      (mh-read-address "Cc: ")
324                      (if current-prefix-arg
325                          (mh-read-seq-default "Forward" t)
326                        (mh-get-msg-num t)
327                        )))
328   (or msg-or-seq
329       (setq msg-or-seq (mh-get-msg-num t)))
330   (let* ((folder mh-current-folder)
331          (config (current-window-configuration))
332          ;; uses "draft" for compatibility with forw.
333          ;; forw always leaves file in "draft" since it doesn't have -draft
334          (draft-name (expand-file-name "draft" mh-user-path))
335          (draft (cond ((or (not (file-exists-p draft-name))
336                            (y-or-n-p "The file `draft' exists.  Discard it? "))
337                        (mh-exec-cmd "comp"
338                                     "-noedit" "-nowhatnowproc"
339                                     "-form" emh-forwcomps
340                                     "-nodraftfolder")
341                        (prog1
342                            (mh-read-draft "" draft-name t)
343                          (mh-insert-fields "To:" to "Cc:" cc)
344                          (set-buffer-modified-p nil)))
345                       (t
346                        (mh-read-draft "" draft-name nil)))))
347     (let ((msubtype "digest")
348           orig-from orig-subject multipart-flag
349           (tag-regexp
350            (concat "^"
351                    (regexp-quote (mime-make-tag "message" "rfc822"))))
352           )
353       (goto-char (point-min))
354       (save-excursion
355         (save-restriction
356           (goto-char (point-max))
357           (if (not (bolp)) (insert "\n"))
358           (let ((beg (point)))
359             (narrow-to-region beg beg)
360             (mh-exec-cmd-output "pick" nil folder msg-or-seq)
361             (if (> (count-lines (point) (point-max)) 1)
362                 (setq multipart-flag t)
363               )
364             (while (re-search-forward "^\\([0-9]+\\)\n" nil t)
365               (let ((forw-msg
366                      (buffer-substring (match-beginning 1) (match-end 1)))
367                     (beg (match-beginning 0))
368                     (end (match-end 0))
369                     )
370                 (save-restriction
371                   (narrow-to-region beg end)
372                   ;; modified for Emacs 18
373                   (delete-region beg end)
374                   (insert-file-contents
375                    (mh-expand-file-name forw-msg
376                                         (mh-expand-file-name folder))
377                    )
378                   (save-excursion
379                     (push-mark (point-max))
380                     (mime-edit-inserted-message-filter))
381                   (goto-char (point-max))
382                   )
383                 (save-excursion
384                   (goto-char beg)
385                   (mime-edit-insert-tag "message" "rfc822")
386                   )))
387             (delete-region (point) (point-max))
388             (if multipart-flag
389                 (mime-edit-enclose-digest-region beg (point))
390               ))))
391       (re-search-forward tag-regexp)
392       (forward-line 1)
393       (save-restriction
394         (narrow-to-region (point) (point-max))
395         (setq orig-from (eword-decode-string
396                          (mh-get-header-field "From:")))
397         (setq orig-subject (eword-decode-string
398                             (mh-get-header-field "Subject:")))
399         )
400       (let ((forw-subject
401              (mh-forwarded-letter-subject orig-from orig-subject)))
402         (mh-insert-fields "Subject:" forw-subject)
403         (goto-char (point-min))
404         (re-search-forward tag-regexp)
405         (forward-line -1)
406         (delete-other-windows)
407         (if (numberp msg-or-seq)
408             (mh-add-msgs-to-seq msg-or-seq 'forwarded t)
409           (mh-add-msgs-to-seq (mh-seq-to-msgs msg-or-seq) 'forwarded t))
410         (mh-compose-and-send-mail draft "" folder msg-or-seq
411                                   to forw-subject cc
412                                   mh-note-forw "Forwarded:"
413                                   config)))))
414
415 (cond ((not (featurep 'mh-utils))
416        (defun emh::insert-letter (folder number verbatim)
417          (mh-insert-letter verbatim folder number)
418          )
419        )
420       ((and (boundp 'mh-e-version)
421             (string-lessp mh-e-version "5"))
422        (defun emh::insert-letter (folder number verbatim)
423          (mh-insert-letter number folder verbatim)
424          )
425        )
426       (t
427        (defalias 'emh::insert-letter 'mh-insert-letter)
428        ))
429
430 (defun emh-insert-letter (verbatim)
431   "Interface to mh-insert-letter."
432   (interactive "P")
433   (let*
434       ((folder (mh-prompt-for-folder
435                 "Message from"
436                 (if (and (stringp mh-sent-from-folder)
437                          (string-match "^\\+" mh-sent-from-folder))
438                     mh-sent-from-folder "+inbox")
439                 nil))
440        (number (emh-prompt-for-message "Message number: " folder)))
441     (emh::insert-letter folder number verbatim)))
442
443 (defun emh-yank-cur-msg-with-no-filter ()
444   "Insert the current message into the draft buffer.
445 This function makes new show-buffer from article-buffer to disable
446 variable `mime-view-plain-text-preview-hook'. If you don't want to
447 use text filters for replying message, please set it to
448 `emh-message-yank-function'.
449 Prefix each non-blank line in the message with the string in
450 `mh-ins-buf-prefix'. The entire message will be inserted if
451 `mh-yank-from-start-of-msg' is non-nil. If this variable is nil, the
452 portion of the message following the point will be yanked.  If
453 `mh-delete-yanked-msg-window' is non-nil, any window displaying the
454 yanked message will be deleted."
455   (interactive)
456   (if (and mh-sent-from-folder mh-sent-from-msg)
457       (let ((to-point (point))
458             (to-buffer (current-buffer)))
459         (set-buffer mh-sent-from-folder)
460         (if mh-delete-yanked-msg-window
461             (delete-windows-on mh-show-buffer))
462         (set-buffer mh-show-buffer)     ; Find displayed message
463         (let ((mh-ins-str
464                (if mime-raw-buffer
465                    (let (mime-view-plain-text-preview-hook buf)
466                      (prog1
467                          (save-window-excursion
468                            (set-buffer mime-raw-buffer)
469                            (setq buf (mime-view-mode))
470                            (buffer-string)
471                            )
472                        (kill-buffer buf)
473                        ))
474                  (buffer-string)
475                  )))
476           (set-buffer to-buffer)
477           (save-restriction
478             (narrow-to-region to-point to-point)
479             (push-mark)
480             (insert mh-ins-str)
481             (mh-insert-prefix-string mh-ins-buf-prefix)
482             (insert "\n"))))
483     (error "There is no current message")))
484
485 (defun emh-yank-current-message ()
486   "Insert the current message into the draft buffer.
487 It uses variable `emh-message-yank-function'
488 to select message yanking function."
489   (interactive)
490   (let ((mh-sent-from-folder mh-sent-from-folder)
491         (mh-sent-from-msg mh-sent-from-msg))
492     (if (and (not (stringp mh-sent-from-folder))
493              (boundp 'gnus-article-buffer)
494              (get-buffer gnus-article-buffer)
495              (bufferp mh-sent-from-folder)
496              ) ; might be called from GNUS
497         (if (boundp 'gnus-article-copy) ; might be sgnus
498             (save-excursion
499               (gnus-copy-article-buffer)
500               (setq mh-sent-from-folder gnus-article-copy)
501               (set-buffer mh-sent-from-folder)
502               (setq mh-show-buffer gnus-article-copy)
503               )
504           (save-excursion
505             (setq mh-sent-from-folder gnus-article-buffer)
506             (set-buffer gnus-article-buffer)
507             (setq mh-show-buffer (current-buffer))
508             )))
509     (funcall emh-message-yank-function)
510     ))
511
512 (substitute-key-definition
513  'mh-yank-cur-msg 'emh-yank-current-message mh-letter-mode-map)
514 (substitute-key-definition
515  'mh-insert-letter 'emh-insert-letter mh-letter-mode-map)
516
517
518 ;;; @ end
519 ;;;
520
521 (provide 'emh-comp)
522 (require 'emh)
523
524 ;;; emh-comp.el ends here