*** empty log message ***
[bpt/emacs.git] / lisp / mail / rmailmsc.el
CommitLineData
c88ab9ce
ER
1;;; rmailmsc.el --- miscellaneous support functions for the RMAIL mail reader
2
e5167999
ER
3;; Maintainer: FSF
4;; Last-Modified: 31 Oct 1989
d7b4d18f 5;; Keywords: mail
e5167999 6
0d20f9a0
JB
7;; Copyright (C) 1985 Free Software Foundation, Inc.
8
9;; This file is part of GNU Emacs.
10
11;; GNU Emacs is free software; you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
e5167999 13;; the Free Software Foundation; either version 2, or (at your option)
0d20f9a0
JB
14;; any later version.
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
22;; along with GNU Emacs; see the file COPYING. If not, write to
23;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24
25
26(defun set-rmail-inbox-list (file-name)
27 "Set the inbox list of the current RMAIL file to FILE-NAME.
28This may be a list of file names separated by commas.
29If FILE-NAME is empty, remove any inbox list."
30 (interactive "sSet mailbox list to (comma-separated list of filenames): ")
31 (save-excursion
32 (let ((names (rmail-parse-file-inboxes))
33 (standard-output nil))
34 (if (or (not names)
35 (y-or-n-p (concat "Replace "
36 (mapconcat 'identity names ", ")
37 "? ")))
38 (let ((buffer-read-only nil))
39 (widen)
40 (goto-char (point-min))
41 (search-forward "\n\^_")
42 (re-search-backward "^Mail" nil t)
43 (forward-line 0)
44 (if (looking-at "Mail:")
45 (delete-region (point)
46 (progn (forward-line 1)
47 (point))))
48 (if (not (string= file-name ""))
49 (insert "Mail: " file-name "\n"))))))
50 (setq rmail-inbox-list (rmail-parse-file-inboxes))
51 (rmail-show-message rmail-current-message))
c88ab9ce
ER
52
53;;; rmailmsc.el ends here