*** 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 'gnus-load)
37 (require 'mh-e)
38 (require 'mh-comp)
39 (require 'gnus)
40 (require 'gnus-msg)
41 (require 'gnus-sum)
42
43 (defun gnus-summary-save-article-folder (&optional arg)
44   "Append the current article to an mh folder.
45 If N is a positive number, save the N next articles.
46 If N is a negative number, save the N previous articles.
47 If N is nil and any articles have been marked with the process mark,
48 save those articles instead."
49   (interactive "P")
50   (let ((gnus-default-article-saver 'gnus-summary-save-in-folder))
51     (gnus-summary-save-article arg)))
52
53 (defun gnus-summary-save-in-folder (&optional folder)
54   "Save this article to MH folder (using `rcvstore' in MH library).
55 Optional argument FOLDER specifies folder name."
56   ;; Thanks to yuki@flab.Fujitsu.JUNET and ohm@kaba.junet.
57   (mh-find-path)
58   (let ((folder
59          (cond ((and (eq folder 'default)
60                      gnus-newsgroup-last-folder)
61                 gnus-newsgroup-last-folder)
62                (folder folder)
63                (t (mh-prompt-for-folder 
64                    "Save article in"
65                    (funcall gnus-folder-save-name gnus-newsgroup-name
66                             gnus-current-headers gnus-newsgroup-last-folder)
67                    t))))
68         (errbuf (get-buffer-create " *Gnus rcvstore*"))
69         ;; Find the rcvstore program.
70         (exec-path (if mh-lib (cons mh-lib exec-path) exec-path)))
71     (gnus-eval-in-buffer-window 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-Folder-save-name (newsgroup headers &optional last-folder)
85   "Generate folder name from NEWSGROUP, HEADERS, and optional LAST-FOLDER.
86 If variable `gnus-use-long-file-name' is nil, it is +News.group.
87 Otherwise, it is like +news/group."
88   (or last-folder
89       (concat "+"
90               (if gnus-use-long-file-name
91                   (gnus-capitalize-newsgroup newsgroup)
92                 (gnus-newsgroup-directory-form newsgroup)))))
93
94 (defun gnus-folder-save-name (newsgroup headers &optional last-folder)
95   "Generate folder name from NEWSGROUP, HEADERS, and optional LAST-FOLDER.
96 If variable `gnus-use-long-file-name' is nil, it is +news.group.
97 Otherwise, it is like +news/group."
98   (or last-folder
99       (concat "+"
100               (if gnus-use-long-file-name
101                   newsgroup
102                 (gnus-newsgroup-directory-form newsgroup)))))
103
104 (provide 'gnus-mh)
105
106 ;;; gnus-mh.el ends here