Switch to recommended form of GPLv3 permissions notice.
[bpt/emacs.git] / lisp / mail / rmailmsc.el
CommitLineData
c88ab9ce
ER
1;;; rmailmsc.el --- miscellaneous support functions for the RMAIL mail reader
2
f2e3589a 3;; Copyright (C) 1985, 2001, 2002, 2003, 2004, 2005,
2f043267 4;; 2006, 2007, 2008 Free Software Foundation, Inc.
9750e079 5
e5167999 6;; Maintainer: FSF
d7b4d18f 7;; Keywords: mail
e5167999 8
0d20f9a0
JB
9;; This file is part of GNU Emacs.
10
b1fc2b50 11;; GNU Emacs is free software: you can redistribute it and/or modify
0d20f9a0 12;; it under the terms of the GNU General Public License as published by
b1fc2b50
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
0d20f9a0
JB
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
b1fc2b50 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
0d20f9a0 23
55535639
PJ
24;;; Commentary:
25
76550a57 26;;; Code:
0d20f9a0 27
1b74c434
JB
28(defvar rmail-current-message)
29(defvar rmail-inbox-list)
30
2b54af74
DN
31(declare-function rmail-parse-file-inboxes "rmail" ())
32(declare-function rmail-show-message "rmail" (&optional n no-summary))
33
19ee6bfc 34;;;###autoload
0d20f9a0
JB
35(defun set-rmail-inbox-list (file-name)
36 "Set the inbox list of the current RMAIL file to FILE-NAME.
7e3333dd
RS
37You can specify one file name, or several names separated by commas.
38If FILE-NAME is empty, remove any existing inbox list."
0d20f9a0 39 (interactive "sSet mailbox list to (comma-separated list of filenames): ")
349b1f31
RS
40
41 (unless (eq major-mode 'rmail-mode)
42 (error "set-rmail-inbox-list works only for an Rmail file"))
43
0d20f9a0
JB
44 (save-excursion
45 (let ((names (rmail-parse-file-inboxes))
46 (standard-output nil))
47 (if (or (not names)
48 (y-or-n-p (concat "Replace "
49 (mapconcat 'identity names ", ")
50 "? ")))
51 (let ((buffer-read-only nil))
52 (widen)
53 (goto-char (point-min))
54 (search-forward "\n\^_")
55 (re-search-backward "^Mail" nil t)
56 (forward-line 0)
57 (if (looking-at "Mail:")
58 (delete-region (point)
59 (progn (forward-line 1)
60 (point))))
61 (if (not (string= file-name ""))
eedf8416 62 (insert-before-markers "Mail: " file-name "\n"))))))
0d20f9a0
JB
63 (setq rmail-inbox-list (rmail-parse-file-inboxes))
64 (rmail-show-message rmail-current-message))
c88ab9ce 65
cbee283d 66;; arch-tag: 74ed1d50-2c25-4cbd-b5ae-d29ed8aba6e4
c88ab9ce 67;;; rmailmsc.el ends here