Regenerate ldefs-boot.el
[bpt/emacs.git] / lisp / gnus / gnus-mh.el
CommitLineData
eec82323 1;;; gnus-mh.el --- mh-e interface for Gnus
e84b4b86 2
ba318903 3;; Copyright (C) 1994-2014 Free Software Foundation, Inc.
eec82323
LMI
4
5;; Author: Masanobu UMEDA <umerin@flab.flab.fujitsu.junet>
6748645f 6;; Lars Magne Ingebrigtsen <larsi@gnus.org>
eec82323
LMI
7;; Keywords: news
8
9;; This file is part of GNU Emacs.
10
5e809f55 11;; GNU Emacs is free software: you can redistribute it and/or modify
eec82323 12;; it under the terms of the GNU General Public License as published by
5e809f55
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
eec82323
LMI
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
5e809f55 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
eec82323
LMI
23
24;;; Commentary:
25
26;;; Send mail using mh-e.
27
28;; The following mh-e interface is all cooperative works of
29;; tanaka@flab.fujitsu.CO.JP (TANAKA Hiroshi), kawabe@sra.CO.JP
30;; (Yoshikatsu Kawabe), and shingu@casund.cpr.canon.co.jp (Toshiaki
31;; SHINGU).
32
33;;; Code:
34
35(require 'gnus)
36(require 'mh-e)
37(require 'mh-comp)
38(require 'gnus-msg)
39(require 'gnus-sum)
40
9efa445f 41(defvar mh-lib-progs)
23f87bed 42
eec82323
LMI
43(defun gnus-summary-save-article-folder (&optional arg)
44 "Append the current article to an mh folder.
45If N is a positive number, save the N next articles.
46If N is a negative number, save the N previous articles.
47If N is nil and any articles have been marked with the process mark,
48save those articles instead."
49 (interactive "P")
84169620 50 (require 'gnus-art)
eec82323
LMI
51 (let ((gnus-default-article-saver 'gnus-summary-save-in-folder))
52 (gnus-summary-save-article arg)))
53
54(defun gnus-summary-save-in-folder (&optional folder)
55 "Save this article to MH folder (using `rcvstore' in MH library).
56Optional argument FOLDER specifies folder name."
57 ;; Thanks to yuki@flab.Fujitsu.JUNET and ohm@kaba.junet.
58 (mh-find-path)
59 (let ((folder
60 (cond ((and (eq folder 'default)
61 gnus-newsgroup-last-folder)
62 gnus-newsgroup-last-folder)
63 (folder folder)
64 (t (mh-prompt-for-folder
65 "Save article in"
66 (funcall gnus-folder-save-name gnus-newsgroup-name
67 gnus-current-headers gnus-newsgroup-last-folder)
68 t))))
6748645f 69 (errbuf (gnus-get-buffer-create " *Gnus rcvstore*"))
eec82323 70 ;; Find the rcvstore program.
0a30c4c8
SM
71 (exec-path (cond
72 ((and (boundp 'mh-lib-progs) mh-lib-progs)
73 (cons mh-lib-progs exec-path))
74 (mh-lib (cons mh-lib exec-path))
75 (t exec-path))))
16409b0b 76 (with-current-buffer gnus-original-article-buffer
eec82323
LMI
77 (save-restriction
78 (widen)
79 (unwind-protect
80 (call-process-region
81 (point-min) (point-max) "rcvstore" nil errbuf nil folder)
82 (set-buffer errbuf)
83 (if (zerop (buffer-size))
84 (message "Article saved in folder: %s" folder)
85 (message "%s" (buffer-string)))
86 (kill-buffer errbuf))))
87 (setq gnus-newsgroup-last-folder folder)))
88
89(defun gnus-Folder-save-name (newsgroup headers &optional last-folder)
90 "Generate folder name from NEWSGROUP, HEADERS, and optional LAST-FOLDER.
91If variable `gnus-use-long-file-name' is nil, it is +News.group.
92Otherwise, it is like +news/group."
93 (or last-folder
94 (concat "+"
95 (if gnus-use-long-file-name
96 (gnus-capitalize-newsgroup newsgroup)
97 (gnus-newsgroup-directory-form newsgroup)))))
98
99(defun gnus-folder-save-name (newsgroup headers &optional last-folder)
100 "Generate folder name from NEWSGROUP, HEADERS, and optional LAST-FOLDER.
101If variable `gnus-use-long-file-name' is nil, it is +news.group.
102Otherwise, it is like +news/group."
103 (or last-folder
104 (concat "+"
105 (if gnus-use-long-file-name
106 newsgroup
107 (gnus-newsgroup-directory-form newsgroup)))))
108
109(provide 'gnus-mh)
110
111;;; gnus-mh.el ends here