*** empty log message ***
[gnus] / lisp / gnus-mh.el
1 ;;; gnus-mh.el --- mh-e interface for Gnus
2 ;; Copyright (C) 1994,95,96 Free Software Foundation, Inc.
3
4 ;; Author: Masanobu UMEDA <umerin@flab.flab.fujitsu.junet>
5 ;;      Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
6 ;; Keywords: news
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Commentary:
26
27 ;;; Send mail using mh-e.
28
29 ;; The following mh-e interface is all cooperative works of
30 ;; tanaka@flab.fujitsu.CO.JP (TANAKA Hiroshi), kawabe@sra.CO.JP
31 ;; (Yoshikatsu Kawabe), and shingu@casund.cpr.canon.co.jp (Toshiaki
32 ;; SHINGU).
33
34 ;;; Code:
35
36 (require 'mh-e)
37 (require 'mh-comp)
38 (require 'gnus)
39 (require 'gnus-msg)
40 (eval-when-compile (require 'cl))
41
42 (defun gnus-summary-save-article-folder (&optional arg)
43   "Append the current article to an mh folder.
44 If N is a positive number, save the N next articles.
45 If N is a negative number, save the N previous articles.
46 If N is nil and any articles have been marked with the process mark,
47 save those articles instead."
48   (interactive "P")
49   (let ((gnus-default-article-saver 'gnus-summary-save-in-folder))
50     (gnus-summary-save-article arg)))
51
52 (defun gnus-summary-save-in-folder (&optional folder)
53   "Save this article to MH folder (using `rcvstore' in MH library).
54 Optional argument FOLDER specifies folder name."
55   ;; Thanks to yuki@flab.Fujitsu.JUNET and ohm@kaba.junet.
56   (mh-find-path)
57   (let ((folder
58          (cond ((and (eq folder 'default)
59                      gnus-newsgroup-last-folder)
60                 gnus-newsgroup-last-folder)
61                (folder folder)
62                (t (mh-prompt-for-folder 
63                    "Save article in"
64                    (funcall gnus-folder-save-name gnus-newsgroup-name
65                             gnus-current-headers gnus-newsgroup-last-folder)
66                    t))))
67         (errbuf (get-buffer-create " *Gnus rcvstore*"))
68         ;; Find the rcvstore program.
69         (exec-path (if mh-lib (cons mh-lib exec-path) exec-path)))
70     (gnus-eval-in-buffer-window 
71      gnus-original-article-buffer
72      (save-restriction
73        (widen)
74        (unwind-protect
75            (call-process-region 
76             (point-min) (point-max) "rcvstore" nil errbuf nil folder)
77          (set-buffer errbuf)
78          (if (zerop (buffer-size))
79              (message "Article saved in folder: %s" folder)
80            (message "%s" (buffer-string)))
81          (kill-buffer errbuf))))
82     (setq gnus-newsgroup-last-folder folder)))
83
84 (defun gnus-mh-mail-setup (to subject in-reply-to cc replybuffer actions)
85   (let ((config (current-window-configuration))) 
86     (mh-find-path)
87     (mh-send-sub (or to "") (or cc "") (or subject "") config)
88     (when in-reply-to 
89       (save-excursion
90         (goto-char (point-min))
91         (insert "In-Reply-To: " in-reply-to "\n")))
92     (setq mh-sent-from-folder gnus-original-article-buffer)
93     (setq mh-sent-from-msg 1)
94     (setq gnus-mail-buffer (buffer-name (current-buffer)))
95     (setq mail-reply-buffer replybuffer)
96     (save-excursion
97       (set-buffer mh-sent-from-folder)
98       (setq mh-show-buffer replybuffer))
99     (use-local-map (copy-keymap (current-local-map)))
100     (local-set-key "\C-c\C-c" 'gnus-mh-mail-send-and-exit)
101     (setq mh-show-buffer gnus-article-copy)
102     (setq mh-previous-window-config config)))
103
104 (defun gnus-mh-mail-send-and-exit (&optional dont-send)
105   "Send the current mail and return to Gnus."
106   (interactive)
107   (let* ((reply gnus-article-reply)
108          (winconf gnus-prev-winconf)
109          (address-group gnus-add-to-address)
110          (to-address (and address-group
111                           (mail-fetch-field "to"))))
112     (setq gnus-add-to-address nil)
113     (or dont-send (mh-send-letter))
114     (bury-buffer)
115     ;; This mail group doesn't have a `to-address', so we add one
116     ;; here.  Magic!  
117     (and to-address
118          (gnus-group-add-parameter 
119           address-group (cons 'to-address to-address)))
120     (if (get-buffer gnus-group-buffer)
121         (progn
122           (if (gnus-buffer-exists-p (car-safe reply))
123               (progn
124                 (set-buffer (car reply))
125                 (and (cdr reply)
126                      (gnus-summary-mark-article-as-replied 
127                       (cdr reply)))))
128           (and winconf (set-window-configuration winconf))))))
129
130 (defun gnus-Folder-save-name (newsgroup headers &optional last-folder)
131   "Generate folder name from NEWSGROUP, HEADERS, and optional LAST-FOLDER.
132 If variable `gnus-use-long-file-name' is nil, it is +News.group.
133 Otherwise, it is like +news/group."
134   (or last-folder
135       (concat "+"
136               (if gnus-use-long-file-name
137                   (gnus-capitalize-newsgroup newsgroup)
138                 (gnus-newsgroup-directory-form newsgroup)))))
139
140 (defun gnus-folder-save-name (newsgroup headers &optional last-folder)
141   "Generate folder name from NEWSGROUP, HEADERS, and optional LAST-FOLDER.
142 If variable `gnus-use-long-file-name' is nil, it is +news.group.
143 Otherwise, it is like +news/group."
144   (or last-folder
145       (concat "+"
146               (if gnus-use-long-file-name
147                   newsgroup
148                 (gnus-newsgroup-directory-form newsgroup)))))
149
150 ;;; gnus-mh.el ends here