Mercurial > emacs
annotate lisp/mail/rmail.el @ 4673:047e8f8469d9
(rmail-convert-file): Exclude the Babyl header
when calling rmail-convert-to-babyl-format.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 07 Sep 1993 10:41:05 +0000 |
parents | 131a3edbd49f |
children | 196fac1c1086 |
rev | line source |
---|---|
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
621
diff
changeset
|
1 ;;; rmail.el --- main code of "RMAIL" mail reader for Emacs. |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
621
diff
changeset
|
2 |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
3 ;; Copyright (C) 1985, 1986, 1987, 1988, 1993 Free Software Foundation, Inc. |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
830
diff
changeset
|
4 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
5 ;; Maintainer: FSF |
814
38b2499cb3e9
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
813
diff
changeset
|
6 ;; Keywords: mail |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
7 |
270 | 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 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
270 | 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 | |
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
23 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
24 ;;; Code: |
270 | 25 |
26 ;; Souped up by shane@mit-ajax based on ideas of rlk@athena.mit.edu | |
27 ;; New features include attribute and keyword support, message | |
28 ;; selection by dispatch table, summary by attributes and keywords, | |
29 ;; expunging by dispatch table, sticky options for file commands. | |
30 | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
31 ;; Extended by Bob Weiner of Motorola |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
32 ;; New features include: rmail and rmail-summary buffers remain |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
33 ;; synchronized and key bindings basically operate the same way in both |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
34 ;; buffers, summary by topic or by regular expression, rmail-reply-prefix |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
35 ;; variable, and a bury rmail buffer (wipe) command. |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
36 ;; |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
37 |
270 | 38 (require 'mail-utils) |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
39 |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
40 ;; For Emacs V18 compatibility |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
41 (and (not (fboundp 'user-original-login-name)) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
42 (fboundp 'user-real-login-name) |
2571
b65cf676a09b
All fsets changed to defaliases.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2423
diff
changeset
|
43 (defalias 'user-original-login-name 'user-real-login-name)) |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
44 (and (not (fboundp 'buffer-disable-undo)) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
45 (fboundp 'buffer-flush-undo) |
2571
b65cf676a09b
All fsets changed to defaliases.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2423
diff
changeset
|
46 (defalias 'buffer-disable-undo 'buffer-flush-undo)) |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
47 |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
48 ; These variables now declared in paths.el. |
270 | 49 ;(defvar rmail-spool-directory "/usr/spool/mail/" |
50 ; "This is the name of the directory used by the system mailer for\n\ | |
51 ;delivering new mail. It's name should end with a slash.") | |
52 ;(defvar rmail-file-name | |
53 ; (expand-file-name "~/RMAIL") | |
54 ; "") | |
55 | |
56 ;;;###autoload | |
57 (defvar rmail-dont-reply-to-names nil "\ | |
58 *A regexp specifying names to prune of reply to messages. | |
3931 | 59 A value of nil means exclude your own name only.") |
270 | 60 |
61 ;;;###autoload | |
62 (defvar rmail-default-dont-reply-to-names "info-" "\ | |
63 A regular expression specifying part of the value of the default value of | |
64 the variable `rmail-dont-reply-to-names', for when the user does not set | |
65 `rmail-dont-reply-to-names' explicitly. (The other part of the default | |
66 value is the user's name.) | |
3931 | 67 It is useful to set this variable in the site customization file.") |
270 | 68 |
69 ;;;###autoload | |
70 (defvar rmail-ignored-headers "^via:\\|^mail-from:\\|^origin:\\|^status:\\|^received:\\|^message-id:\\|^summary-line:" "\ | |
71 *Gubbish headers one would rather not see.") | |
72 | |
73 ;;;###autoload | |
74 (defvar rmail-delete-after-output nil "\ | |
75 *Non-nil means automatically delete a message that is copied to a file.") | |
76 | |
77 ;;;###autoload | |
3631
0c063224b5d2
(rmail-primary-inbox-list): Use defvar, not defconst.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
78 (defvar rmail-primary-inbox-list nil "\ |
2423
5dd3b7338f71
(rmail): Don't use mbox as inbox by default.
Richard M. Stallman <rms@gnu.org>
parents:
2076
diff
changeset
|
79 *List of files which are inboxes for user's primary mail file `~/RMAIL'. |
5dd3b7338f71
(rmail): Don't use mbox as inbox by default.
Richard M. Stallman <rms@gnu.org>
parents:
2076
diff
changeset
|
80 `nil' means the default, which is (\"/usr/spool/mail/$USER\") |
5dd3b7338f71
(rmail): Don't use mbox as inbox by default.
Richard M. Stallman <rms@gnu.org>
parents:
2076
diff
changeset
|
81 \(the name varies depending on the operating system, |
270 | 82 and the value of the environment variable MAIL overrides it).") |
83 | |
4108
e4fbcd480455
(rmail-mail-new-frame): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4071
diff
changeset
|
84 ;;;###autoload |
e4fbcd480455
(rmail-mail-new-frame): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4071
diff
changeset
|
85 (defvar rmail-mail-new-frame nil |
e4fbcd480455
(rmail-mail-new-frame): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4071
diff
changeset
|
86 "*Non-nil means Rmail makes a new frame for composing outgoing mail.") |
e4fbcd480455
(rmail-mail-new-frame): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4071
diff
changeset
|
87 |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
88 ;; These may be altered by site-init.el to match the format of mmdf files |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
89 ;; delimiting used on a given host (delim1 and delim2 from the config |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
90 ;; files). |
270 | 91 |
92 (defvar mmdf-delim1 "^\001\001\001\001\n" | |
93 "Regexp marking the start of an mmdf message") | |
94 (defvar mmdf-delim2 "^\001\001\001\001\n" | |
95 "Regexp marking the end of an mmdf message") | |
96 | |
97 (defvar rmail-message-filter nil | |
98 "If non nil, is a filter function for new headers in RMAIL. | |
99 Called with region narrowed to unformatted header.") | |
100 | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
101 (defvar rmail-reply-prefix "Re: " |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
102 "String to prepend to Subject line when replying to a message.") |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
103 |
270 | 104 (defvar rmail-mode-map nil) |
105 | |
106 (defvar rmail-inbox-list nil) | |
107 (defvar rmail-keywords nil) | |
108 | |
109 ;; Message counters and markers. Deleted flags. | |
110 | |
111 (defvar rmail-current-message nil) | |
112 (defvar rmail-total-messages nil) | |
113 (defvar rmail-message-vector nil) | |
114 (defvar rmail-deleted-vector nil) | |
115 | |
116 ;; These are used by autoloaded rmail-summary. | |
117 | |
118 (defvar rmail-summary-buffer nil) | |
119 (defvar rmail-summary-vector nil) | |
120 | |
121 ;; `Sticky' default variables. | |
122 | |
123 ;; Last individual label specified to a or k. | |
124 (defvar rmail-last-label nil) | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
125 ;; Last set of values specified to C-M-n, C-M-p, C-M-s or C-M-l. |
270 | 126 (defvar rmail-last-multi-labels nil) |
127 (defvar rmail-last-file nil) | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
128 (defvar rmail-last-regexp nil) |
4263
7c7fa71cfd6e
(rmail-last-rmail-file): Initialize to a file name.
Richard M. Stallman <rms@gnu.org>
parents:
4108
diff
changeset
|
129 (defvar rmail-last-rmail-file (expand-file-name "~/XMAIL")) |
617 | 130 |
621 | 131 ;;; Regexp matching the delimiter of messages in UNIX mail format |
132 ;;; (UNIX From lines), minus the initial ^. Note that if you change | |
133 ;;; this expression, you must change the code in rmail-nuke-pinhead-header | |
134 ;;; that knows the exact ordering of the \\( \\) subexpressions. | |
617 | 135 (defvar rmail-unix-mail-delimiter |
1112 | 136 (let ((time-zone-regexp |
1704
7e1897c2951b
* rmail.el (rmail-unix-mail-delimiter): Not all time zone names
Jim Blandy <jimb@redhat.com>
parents:
1464
diff
changeset
|
137 (concat "\\([A-Z]?[A-Z][A-Z][A-Z]\\( DST\\)?" |
1112 | 138 "\\|[-+]?[0-9][0-9][0-9][0-9]" |
139 "\\|" | |
140 "\\) *"))) | |
141 (concat | |
142 "From " | |
143 | |
144 ;; Username, perhaps with a quoted section that can contain spaces. | |
145 "\\(" | |
146 "[^ \n]*" | |
147 "\\(\\|\".*\"[^ \n]*\\)" | |
148 "\\) ?" | |
149 | |
150 ;; The time the message was sent. | |
151 "\\([^ \n]*\\) *" ; day of the week | |
152 "\\([^ ]*\\) *" ; month | |
153 "\\([0-9]*\\) *" ; day of month | |
154 "\\([0-9:]*\\) *" ; time of day | |
155 | |
156 ;; Perhaps a time zone, specified by an abbreviation, or by a | |
157 ;; numeric offset. | |
158 time-zone-regexp | |
159 | |
160 ;; The year. | |
161 " [0-9][0-9]\\([0-9]*\\) *" | |
162 | |
163 ;; On some systems the time zone can appear after the year, too. | |
164 time-zone-regexp | |
165 | |
166 ;; I'm not sure what this is. | |
167 "\\(remote from [^\n]*\\)?" | |
168 | |
169 "\n")) | |
170 nil) | |
171 | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
172 ;; Perform BODY in the summary buffer |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
173 ;; in such a way that its cursor is properly updated in its own window. |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
174 (defmacro rmail-select-summary (&rest body) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
175 (` (progn (if (rmail-summary-displayed) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
176 (let ((window (selected-window))) |
3462
2624c18df764
(rmail-select-summary): Add a save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
3083
diff
changeset
|
177 (save-excursion |
2624c18df764
(rmail-select-summary): Add a save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
3083
diff
changeset
|
178 (unwind-protect |
2624c18df764
(rmail-select-summary): Add a save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
3083
diff
changeset
|
179 (progn |
2624c18df764
(rmail-select-summary): Add a save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
3083
diff
changeset
|
180 (pop-to-buffer rmail-summary-buffer) |
2624c18df764
(rmail-select-summary): Add a save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
3083
diff
changeset
|
181 (,@ body)) |
2624c18df764
(rmail-select-summary): Add a save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
3083
diff
changeset
|
182 (select-window window)))) |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
183 (save-excursion |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
184 (set-buffer rmail-summary-buffer) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
185 (progn (,@ body)))) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
186 (rmail-maybe-display-summary)))) |
270 | 187 |
188 ;;;; *** Rmail Mode *** | |
189 | |
190 ;;;###autoload | |
191 (defun rmail (&optional file-name-arg) | |
192 "Read and edit incoming mail. | |
193 Moves messages into file named by rmail-file-name (a babyl format file) | |
194 and edits that file in RMAIL Mode. | |
195 Type \\[describe-mode] once editing that file, for a list of RMAIL commands. | |
196 | |
197 May be called with filename as argument; then performs rmail editing on | |
198 that file, but does not copy any new mail into the file." | |
199 (interactive (if current-prefix-arg | |
200 (list (read-file-name "Run rmail on RMAIL file: " | |
201 nil nil t)))) | |
202 (or rmail-last-file | |
203 (setq rmail-last-file (expand-file-name "~/xmail"))) | |
204 (let* ((file-name (expand-file-name (or file-name-arg rmail-file-name))) | |
205 (existed (get-file-buffer file-name))) | |
206 ;; Like find-file, but in the case where a buffer existed | |
207 ;; and the file was reverted, recompute the message-data. | |
208 (if (and existed (not (verify-visited-file-modtime existed))) | |
209 (progn | |
210 ;; Don't be confused by apparent local-variables spec | |
211 ;; in the last message in the RMAIL file. | |
1024
ceb4469d3cd7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
997
diff
changeset
|
212 (let ((enable-local-variables nil)) |
270 | 213 (find-file file-name)) |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
214 (if (and (verify-visited-file-modtime existed) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
215 (eq major-mode 'rmail-mode)) |
270 | 216 (progn (rmail-forget-messages) |
217 (rmail-set-message-counters)))) | |
1024
ceb4469d3cd7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
997
diff
changeset
|
218 (let ((enable-local-variables nil)) |
270 | 219 (find-file file-name))) |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
220 (if (eq major-mode 'rmail-edit-mode) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
221 (error "Exit Rmail Edit mode before getting new mail.")) |
270 | 222 (if (and existed (> (buffer-size) 0)) |
223 ;; Buffer not new and not empty; ensure in proper mode, but that's all. | |
224 (or (eq major-mode 'rmail-mode) | |
225 (rmail-mode-2)) | |
226 (rmail-mode-2) | |
227 ;; Convert all or part to Babyl file if possible. | |
228 (rmail-convert-file) | |
229 (goto-char (point-max)) | |
230 (if (null rmail-inbox-list) | |
231 (progn | |
232 (rmail-set-message-counters) | |
233 (rmail-show-message)))) | |
1342
776d4c59f256
* rmail.el (rmail-first-unseen-message): Don't show the message,
Joseph Arceneaux <jla@gnu.org>
parents:
1267
diff
changeset
|
234 (let ((existing-unseen (rmail-first-unseen-message))) |
776d4c59f256
* rmail.el (rmail-first-unseen-message): Don't show the message,
Joseph Arceneaux <jla@gnu.org>
parents:
1267
diff
changeset
|
235 (rmail-get-new-mail) |
776d4c59f256
* rmail.el (rmail-first-unseen-message): Don't show the message,
Joseph Arceneaux <jla@gnu.org>
parents:
1267
diff
changeset
|
236 ;; Show the first unseen message, which might be from a previous session |
776d4c59f256
* rmail.el (rmail-first-unseen-message): Don't show the message,
Joseph Arceneaux <jla@gnu.org>
parents:
1267
diff
changeset
|
237 ;; or might have been just read in by rmail-get-new-mail. Must |
776d4c59f256
* rmail.el (rmail-first-unseen-message): Don't show the message,
Joseph Arceneaux <jla@gnu.org>
parents:
1267
diff
changeset
|
238 ;; determine already unseen messages first, as rmail-get-new-mail |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3540
diff
changeset
|
239 ;; positions on the first new message, thus marking it as seen. |
1342
776d4c59f256
* rmail.el (rmail-first-unseen-message): Don't show the message,
Joseph Arceneaux <jla@gnu.org>
parents:
1267
diff
changeset
|
240 (rmail-show-message existing-unseen)))) |
270 | 241 |
242 ;; Given the value of MAILPATH, return a list of inbox file names. | |
243 ;; This is turned off because it is not clear that the user wants | |
244 ;; all these inboxes to feed into the primary rmail file. | |
245 ; (defun rmail-convert-mailpath (string) | |
246 ; (let (idx list) | |
247 ; (while (setq idx (string-match "[%:]" string)) | |
248 ; (let ((this (substring string 0 idx))) | |
249 ; (setq string (substring string (1+ idx))) | |
250 ; (setq list (cons (if (string-match "%" this) | |
251 ; (substring this 0 (string-match "%" this)) | |
252 ; this) | |
253 ; list)))) | |
254 ; list)) | |
255 | |
256 ; I have checked that adding "-*- rmail -*-" to the BABYL OPTIONS line | |
257 ; will not cause emacs 18.55 problems. | |
258 | |
259 (defun rmail-convert-file () | |
260 (let (convert) | |
261 (widen) | |
262 (goto-char (point-min)) | |
263 ;; If file doesn't start like a Babyl file, | |
264 ;; convert it to one, by adding a header and converting each message. | |
265 (cond ((looking-at "BABYL OPTIONS:")) | |
266 ((looking-at "Version: 5\n") | |
267 ;; Losing babyl file made by old version of Rmail. | |
268 ;; Just fix the babyl file header; don't make a new one, | |
269 ;; so we don't lose the Labels: file attribute, etc. | |
270 (let ((buffer-read-only nil)) | |
271 (insert "BABYL OPTIONS: -*- rmail -*-\n"))) | |
272 (t | |
273 (setq convert t) | |
274 (rmail-insert-rmail-file-header))) | |
275 ;; If file was not a Babyl file or if there are | |
276 ;; Unix format messages added at the end, | |
277 ;; convert file as necessary. | |
278 (if (or convert | |
4673
047e8f8469d9
(rmail-convert-file): Exclude the Babyl header
Richard M. Stallman <rms@gnu.org>
parents:
4579
diff
changeset
|
279 (save-excursion |
047e8f8469d9
(rmail-convert-file): Exclude the Babyl header
Richard M. Stallman <rms@gnu.org>
parents:
4579
diff
changeset
|
280 (goto-char (point-max)) |
047e8f8469d9
(rmail-convert-file): Exclude the Babyl header
Richard M. Stallman <rms@gnu.org>
parents:
4579
diff
changeset
|
281 (search-backward "\^_") |
047e8f8469d9
(rmail-convert-file): Exclude the Babyl header
Richard M. Stallman <rms@gnu.org>
parents:
4579
diff
changeset
|
282 (forward-char 1) |
047e8f8469d9
(rmail-convert-file): Exclude the Babyl header
Richard M. Stallman <rms@gnu.org>
parents:
4579
diff
changeset
|
283 (looking-at "\n*From "))) |
270 | 284 (let ((buffer-read-only nil)) |
285 (message "Converting to Babyl format...") | |
4673
047e8f8469d9
(rmail-convert-file): Exclude the Babyl header
Richard M. Stallman <rms@gnu.org>
parents:
4579
diff
changeset
|
286 ;; If file needs conversion, convert it all, |
047e8f8469d9
(rmail-convert-file): Exclude the Babyl header
Richard M. Stallman <rms@gnu.org>
parents:
4579
diff
changeset
|
287 ;; except for the BABYL header. |
047e8f8469d9
(rmail-convert-file): Exclude the Babyl header
Richard M. Stallman <rms@gnu.org>
parents:
4579
diff
changeset
|
288 ;; (rmail-convert-to-babyl-format would delete the header.) |
4332
9715c82333ab
(rmail-convert-file): If file needs conversion, convert it all.
Richard M. Stallman <rms@gnu.org>
parents:
4263
diff
changeset
|
289 ;;; (narrow-to-region (point) (point-max)) |
4673
047e8f8469d9
(rmail-convert-file): Exclude the Babyl header
Richard M. Stallman <rms@gnu.org>
parents:
4579
diff
changeset
|
290 (goto-char (point-min)) |
047e8f8469d9
(rmail-convert-file): Exclude the Babyl header
Richard M. Stallman <rms@gnu.org>
parents:
4579
diff
changeset
|
291 (search-forward "\n\^_" nil t) |
270 | 292 (rmail-convert-to-babyl-format) |
293 (message "Converting to Babyl format...done"))))) | |
294 | |
295 ; I have checked that adding "-*- rmail -*-" to the BABYL OPTIONS line | |
296 ; will not cause emacs 18.55 problems. | |
297 | |
298 (defun rmail-insert-rmail-file-header () | |
299 (let ((buffer-read-only nil)) | |
300 (insert "BABYL OPTIONS: -*- rmail -*- | |
301 Version: 5 | |
302 Labels: | |
303 Note: This is the header of an rmail file. | |
304 Note: If you are seeing it in rmail, | |
305 Note: it means the file has no messages in it.\n\^_"))) | |
306 | |
307 (if rmail-mode-map | |
308 nil | |
309 (setq rmail-mode-map (make-keymap)) | |
310 (suppress-keymap rmail-mode-map) | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
311 (define-key rmail-mode-map "a" 'rmail-add-label) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
312 (define-key rmail-mode-map "b" 'rmail-bury) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
313 (define-key rmail-mode-map "c" 'rmail-continue) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
314 (define-key rmail-mode-map "d" 'rmail-delete-forward) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
315 (define-key rmail-mode-map "\C-d" 'rmail-delete-backward) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
316 (define-key rmail-mode-map "e" 'rmail-edit-current-message) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
317 (define-key rmail-mode-map "f" 'rmail-forward) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
318 (define-key rmail-mode-map "g" 'rmail-get-new-mail) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
319 (define-key rmail-mode-map "h" 'rmail-summary) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
320 (define-key rmail-mode-map "i" 'rmail-input) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
321 (define-key rmail-mode-map "j" 'rmail-show-message) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
322 (define-key rmail-mode-map "k" 'rmail-kill-label) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
323 (define-key rmail-mode-map "l" 'rmail-summary-by-labels) |
270 | 324 (define-key rmail-mode-map "\e\C-h" 'rmail-summary) |
325 (define-key rmail-mode-map "\e\C-l" 'rmail-summary-by-labels) | |
326 (define-key rmail-mode-map "\e\C-r" 'rmail-summary-by-recipients) | |
327 (define-key rmail-mode-map "\e\C-s" 'rmail-summary-by-regexp) | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
328 (define-key rmail-mode-map "\e\C-t" 'rmail-summary-by-topic) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
329 (define-key rmail-mode-map "m" 'rmail-mail) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
330 (define-key rmail-mode-map "\em" 'rmail-retry-failure) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
331 (define-key rmail-mode-map "n" 'rmail-next-undeleted-message) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
332 (define-key rmail-mode-map "\en" 'rmail-next-message) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
333 (define-key rmail-mode-map "\e\C-n" 'rmail-next-labeled-message) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
334 (define-key rmail-mode-map "o" 'rmail-output-to-rmail-file) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
335 (define-key rmail-mode-map "\C-o" 'rmail-output) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
336 (define-key rmail-mode-map "p" 'rmail-previous-undeleted-message) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
337 (define-key rmail-mode-map "\ep" 'rmail-previous-message) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
338 (define-key rmail-mode-map "\e\C-p" 'rmail-previous-labeled-message) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
339 (define-key rmail-mode-map "q" 'rmail-quit) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
340 (define-key rmail-mode-map "r" 'rmail-reply) |
1464
7f25b15a6809
(rmail-mode-map): Delete binding of M-r (use global one).
Richard M. Stallman <rms@gnu.org>
parents:
1382
diff
changeset
|
341 ;; I find I can't live without the default M-r command -- rms. |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
342 ;; (define-key rmail-mode-map "\er" 'rmail-search-backwards) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
343 (define-key rmail-mode-map "s" 'rmail-expunge-and-save) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
344 (define-key rmail-mode-map "\es" 'rmail-search) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
345 (define-key rmail-mode-map "t" 'rmail-toggle-header) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
346 (define-key rmail-mode-map "u" 'rmail-undelete-previous-message) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
347 (define-key rmail-mode-map "w" 'rmail-edit-current-message) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
348 (define-key rmail-mode-map "x" 'rmail-expunge) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
349 (define-key rmail-mode-map "." 'rmail-beginning-of-message) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
350 (define-key rmail-mode-map "<" 'rmail-first-message) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
351 (define-key rmail-mode-map ">" 'rmail-last-message) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
352 (define-key rmail-mode-map " " 'scroll-up) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
353 (define-key rmail-mode-map "\177" 'scroll-down) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
354 (define-key rmail-mode-map "?" 'describe-mode) |
3877
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
355 (define-key rmail-mode-map "\C-c\C-s\C-d" 'rmail-sort-by-date) |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
356 (define-key rmail-mode-map "\C-c\C-s\C-s" 'rmail-sort-by-subject) |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
357 (define-key rmail-mode-map "\C-c\C-s\C-a" 'rmail-sort-by-author) |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
358 (define-key rmail-mode-map "\C-c\C-s\C-r" 'rmail-sort-by-recipient) |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
359 (define-key rmail-mode-map "\C-c\C-s\C-c" 'rmail-sort-by-correspondent) |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
360 (define-key rmail-mode-map "\C-c\C-s\C-l" 'rmail-sort-by-lines) |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
361 ) |
3863
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
362 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
363 (define-key rmail-mode-map [menu-bar] (make-sparse-keymap)) |
270 | 364 |
3863
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
365 (define-key rmail-mode-map [menu-bar classify] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
366 (cons "Classify" (make-sparse-keymap "Classify"))) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
367 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
368 (define-key rmail-mode-map [menu-bar classify output-inbox] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
369 '("Output (inbox)" . rmail-output)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
370 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
371 (define-key rmail-mode-map [menu-bar classify output] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
372 '("Output (Rmail)" . rmail-output-to-rmail-file)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
373 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
374 (define-key rmail-mode-map [menu-bar classify kill-label] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
375 '("Kill Label" . rmail-kill-label)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
376 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
377 (define-key rmail-mode-map [menu-bar classify add-label] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
378 '("Add Label" . rmail-add-label)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
379 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
380 (define-key rmail-mode-map [menu-bar summary] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
381 (cons "Summary" (make-sparse-keymap "Summary"))) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
382 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
383 (define-key rmail-mode-map [menu-bar summary labels] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
384 '("By Labels" . rmail-summary-by-labels)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
385 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
386 (define-key rmail-mode-map [menu-bar summary recipients] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
387 '("By Recipients" . rmail-summary-by-recipients)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
388 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
389 (define-key rmail-mode-map [menu-bar summary topic] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
390 '("By Topic" . rmail-summary-by-topic)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
391 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
392 (define-key rmail-mode-map [menu-bar summary regexp] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
393 '("By Regexp" . rmail-summary-by-regexp)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
394 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
395 (define-key rmail-mode-map [menu-bar summary all] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
396 '("All" . rmail-summary)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
397 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
398 (define-key rmail-mode-map [menu-bar mail] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
399 (cons "Mail" (make-sparse-keymap "Mail"))) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
400 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
401 (define-key rmail-mode-map [menu-bar mail continue] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
402 '("Continue" . rmail-continue)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
403 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
404 (define-key rmail-mode-map [menu-bar mail forward] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
405 '("Forward" . rmail-forward)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
406 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
407 (define-key rmail-mode-map [menu-bar mail retry] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
408 '("Retry" . rmail-retry-failure)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
409 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
410 (define-key rmail-mode-map [menu-bar mail reply] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
411 '("Reply" . rmail-reply)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
412 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
413 (define-key rmail-mode-map [menu-bar mail mail] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
414 '("Mail" . rmail-mail)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
415 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
416 (define-key rmail-mode-map [menu-bar delete] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
417 (cons "Delete" (make-sparse-keymap "Delete"))) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
418 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
419 (define-key rmail-mode-map [menu-bar delete expunge/save] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
420 '("Expunge/Save" . rmail-expunge-and-save)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
421 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
422 (define-key rmail-mode-map [menu-bar delete expunge] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
423 '("Expunge" . rmail-expunge)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
424 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
425 (define-key rmail-mode-map [menu-bar delete undelete] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
426 '("Undelete" . rmail-undelete-previous-message)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
427 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
428 (define-key rmail-mode-map [menu-bar delete delete] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
429 '("Delete" . rmail-delete-forward)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
430 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
431 (define-key rmail-mode-map [menu-bar move] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
432 (cons "Move" (make-sparse-keymap "Move"))) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
433 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
434 (define-key rmail-mode-map [menu-bar move search-back] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
435 '("Search Back" . rmail-search-backward)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
436 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
437 (define-key rmail-mode-map [menu-bar move search] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
438 '("Search" . rmail-search)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
439 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
440 (define-key rmail-mode-map [menu-bar move previous] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
441 '("Previous Nondeleted" . rmail-previous-undeleted-message)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
442 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
443 (define-key rmail-mode-map [menu-bar move next] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
444 '("Next Nondeleted" . rmail-next-undeleted-message)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
445 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
446 (define-key rmail-mode-map [menu-bar move last] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
447 '("Last" . rmail-last-message)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
448 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
449 (define-key rmail-mode-map [menu-bar move first] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
450 '("First" . rmail-first-message)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
451 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
452 (define-key rmail-mode-map [menu-bar move previous] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
453 '("Previous" . rmail-previous-message)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
454 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
455 (define-key rmail-mode-map [menu-bar move next] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
456 '("Next" . rmail-next-message)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
457 |
270 | 458 ;; Rmail mode is suitable only for specially formatted data. |
459 (put 'rmail-mode 'mode-class 'special) | |
460 | |
1382
9b210c7d6c23
* rmail.el (rmail-mode): Make this autoload; we might find a file
Jim Blandy <jimb@redhat.com>
parents:
1372
diff
changeset
|
461 ;;;###autoload |
270 | 462 (defun rmail-mode () |
463 "Rmail Mode is used by \\<rmail-mode-map>\\[rmail] for editing Rmail files. | |
464 All normal editing commands are turned off. | |
465 Instead, these commands are available: | |
466 | |
467 \\[rmail-beginning-of-message] Move point to front of this message (same as \\[beginning-of-buffer]). | |
468 \\[scroll-up] Scroll to next screen of this message. | |
469 \\[scroll-down] Scroll to previous screen of this message. | |
470 \\[rmail-next-undeleted-message] Move to Next non-deleted message. | |
471 \\[rmail-previous-undeleted-message] Move to Previous non-deleted message. | |
472 \\[rmail-next-message] Move to Next message whether deleted or not. | |
473 \\[rmail-previous-message] Move to Previous message whether deleted or not. | |
474 \\[rmail-first-message] Move to the first message in Rmail file. | |
475 \\[rmail-last-message] Move to the last message in Rmail file. | |
476 \\[rmail-show-message] Jump to message specified by numeric position in file. | |
477 \\[rmail-search] Search for string and show message it is found in. | |
478 \\[rmail-delete-forward] Delete this message, move to next nondeleted. | |
479 \\[rmail-delete-backward] Delete this message, move to previous nondeleted. | |
480 \\[rmail-undelete-previous-message] Undelete message. Tries current message, then earlier messages | |
481 till a deleted message is found. | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
482 \\[rmail-edit-current-message] Edit the current message. \\[rmail-cease-edit] to return to Rmail. |
270 | 483 \\[rmail-expunge] Expunge deleted messages. |
484 \\[rmail-expunge-and-save] Expunge and save the file. | |
485 \\[rmail-quit] Quit Rmail: expunge, save, then switch to another buffer. | |
486 \\[save-buffer] Save without expunging. | |
2423
5dd3b7338f71
(rmail): Don't use mbox as inbox by default.
Richard M. Stallman <rms@gnu.org>
parents:
2076
diff
changeset
|
487 \\[rmail-get-new-mail] Move new mail from system spool directory into this file. |
270 | 488 \\[rmail-mail] Mail a message (same as \\[mail-other-window]). |
489 \\[rmail-continue] Continue composing outgoing message started before. | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
490 \\[rmail-reply] Reply to this message. Like \\[rmail-mail] but initializes some fields. |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
491 \\[rmail-retry-failure] Send this message again. Used on a mailer failure message. |
270 | 492 \\[rmail-forward] Forward this message to another user. |
493 \\[rmail-output-to-rmail-file] Output this message to an Rmail file (append it). | |
494 \\[rmail-output] Output this message to a Unix-format mail file (append it). | |
495 \\[rmail-input] Input Rmail file. Run Rmail on that file. | |
496 \\[rmail-add-label] Add label to message. It will be displayed in the mode line. | |
497 \\[rmail-kill-label] Kill label. Remove a label from current message. | |
498 \\[rmail-next-labeled-message] Move to Next message with specified label | |
499 (label defaults to last one specified). | |
500 Standard labels: filed, unseen, answered, forwarded, deleted. | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
501 Any other label is present only if you add it with \\[rmail-add-label]. |
270 | 502 \\[rmail-previous-labeled-message] Move to Previous message with specified label |
503 \\[rmail-summary] Show headers buffer, with a one line summary of each message. | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
504 \\[rmail-summary-by-labels] Summarize only messages with particular label(s). |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
505 \\[rmail-summary-by-recipients] Summarize only messages with particular recipient(s). |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
506 \\[rmail-summary-by-regexp] Summarize only messages with particular regexp(s). |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
507 \\[rmail-summary-by-topic] Summarize only messages with subject line regexp(s). |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
508 \\[rmail-toggle-header] Toggle display of complete header." |
270 | 509 (interactive) |
510 (rmail-mode-2) | |
511 (rmail-set-message-counters) | |
3864
ee987f852b10
(rmail-mode): Move to the last message.
Richard M. Stallman <rms@gnu.org>
parents:
3863
diff
changeset
|
512 (rmail-show-message rmail-total-messages)) |
270 | 513 |
514 (defun rmail-mode-2 () | |
515 (kill-all-local-variables) | |
516 (rmail-mode-1) | |
517 (rmail-variables) | |
518 (run-hooks 'rmail-mode-hook)) | |
519 | |
520 (defun rmail-mode-1 () | |
521 (setq major-mode 'rmail-mode) | |
522 (setq mode-name "RMAIL") | |
523 (setq buffer-read-only t) | |
524 ;; No need to auto save RMAIL files. | |
525 (setq buffer-auto-save-file-name nil) | |
526 (if (boundp 'mode-line-modified) | |
527 (setq mode-line-modified "--- ") | |
528 (setq mode-line-format | |
529 (cons "--- " (cdr (default-value 'mode-line-format))))) | |
530 (use-local-map rmail-mode-map) | |
531 (set-syntax-table text-mode-syntax-table) | |
532 (setq local-abbrev-table text-mode-abbrev-table)) | |
533 | |
534 (defun rmail-variables () | |
535 (make-local-variable 'revert-buffer-function) | |
536 (setq revert-buffer-function 'rmail-revert) | |
537 (make-local-variable 'rmail-last-label) | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
538 (make-local-variable 'rmail-last-regexp) |
270 | 539 (make-local-variable 'rmail-deleted-vector) |
540 (make-local-variable 'rmail-summary-buffer) | |
541 (make-local-variable 'rmail-summary-vector) | |
542 (make-local-variable 'rmail-current-message) | |
543 (make-local-variable 'rmail-total-messages) | |
544 (make-local-variable 'require-final-newline) | |
545 (setq require-final-newline nil) | |
546 (make-local-variable 'version-control) | |
547 (setq version-control 'never) | |
548 (make-local-variable 'file-precious-flag) | |
549 (setq file-precious-flag t) | |
550 (make-local-variable 'rmail-message-vector) | |
551 (make-local-variable 'rmail-last-file) | |
552 (make-local-variable 'rmail-inbox-list) | |
553 (setq rmail-inbox-list (rmail-parse-file-inboxes)) | |
3540
c14c0f2954fd
(rmail-variables): Default rmail-inbox-list here.
Richard M. Stallman <rms@gnu.org>
parents:
3484
diff
changeset
|
554 ;; Provide default set of inboxes for primary mail file ~/RMAIL. |
c14c0f2954fd
(rmail-variables): Default rmail-inbox-list here.
Richard M. Stallman <rms@gnu.org>
parents:
3484
diff
changeset
|
555 (and (null rmail-inbox-list) |
4010
735b8dc6cdd2
(rmail-variables): Compare truename as well as given name
Richard M. Stallman <rms@gnu.org>
parents:
3931
diff
changeset
|
556 (or (equal buffer-file-name (expand-file-name rmail-file-name)) |
735b8dc6cdd2
(rmail-variables): Compare truename as well as given name
Richard M. Stallman <rms@gnu.org>
parents:
3931
diff
changeset
|
557 (equal buffer-file-truename (file-truename rmail-file-name))) |
3540
c14c0f2954fd
(rmail-variables): Default rmail-inbox-list here.
Richard M. Stallman <rms@gnu.org>
parents:
3484
diff
changeset
|
558 (setq rmail-inbox-list |
c14c0f2954fd
(rmail-variables): Default rmail-inbox-list here.
Richard M. Stallman <rms@gnu.org>
parents:
3484
diff
changeset
|
559 (or rmail-primary-inbox-list |
c14c0f2954fd
(rmail-variables): Default rmail-inbox-list here.
Richard M. Stallman <rms@gnu.org>
parents:
3484
diff
changeset
|
560 (list (or (getenv "MAIL") |
c14c0f2954fd
(rmail-variables): Default rmail-inbox-list here.
Richard M. Stallman <rms@gnu.org>
parents:
3484
diff
changeset
|
561 (concat rmail-spool-directory |
c14c0f2954fd
(rmail-variables): Default rmail-inbox-list here.
Richard M. Stallman <rms@gnu.org>
parents:
3484
diff
changeset
|
562 (user-original-login-name))))))) |
270 | 563 (make-local-variable 'rmail-keywords) |
564 ;; this gets generated as needed | |
280
e6f9ccb230ad
*** empty log message ***
Michael I. Bushnell <mib@gnu.org>
parents:
270
diff
changeset
|
565 (setq rmail-keywords nil)) |
270 | 566 |
567 ;; Handle M-x revert-buffer done in an rmail-mode buffer. | |
568 (defun rmail-revert (arg noconfirm) | |
569 (let (revert-buffer-function) | |
570 ;; Call our caller again, but this time it does the default thing. | |
571 (if (revert-buffer arg noconfirm) | |
572 ;; If the user said "yes", and we changed something, | |
573 ;; reparse the messages. | |
574 (progn | |
575 (rmail-convert-file) | |
576 (goto-char (point-max)) | |
577 (rmail-set-message-counters) | |
578 (rmail-show-message))))) | |
579 | |
580 ;; Return a list of files from this buffer's Mail: option. | |
581 ;; Does not assume that messages have been parsed. | |
582 ;; Just returns nil if buffer does not look like Babyl format. | |
583 (defun rmail-parse-file-inboxes () | |
584 (save-excursion | |
585 (save-restriction | |
586 (widen) | |
587 (goto-char 1) | |
588 (cond ((looking-at "BABYL OPTIONS:") | |
589 (search-forward "\n\^_" nil 'move) | |
590 (narrow-to-region 1 (point)) | |
591 (goto-char 1) | |
592 (if (search-forward "\nMail:" nil t) | |
593 (progn | |
594 (narrow-to-region (point) (progn (end-of-line) (point))) | |
595 (goto-char (point-min)) | |
596 (mail-parse-comma-list)))))))) | |
597 | |
598 (defun rmail-expunge-and-save () | |
599 "Expunge and save RMAIL file." | |
600 (interactive) | |
601 (rmail-expunge) | |
602 (save-buffer)) | |
603 | |
604 (defun rmail-quit () | |
605 "Quit out of RMAIL." | |
606 (interactive) | |
607 (rmail-expunge-and-save) | |
608 ;; Don't switch to the summary buffer even if it was recently visible. | |
609 (if rmail-summary-buffer | |
610 (bury-buffer rmail-summary-buffer)) | |
611 (let ((obuf (current-buffer))) | |
612 (switch-to-buffer (other-buffer)) | |
613 (bury-buffer obuf))) | |
614 | |
615 ;;;###autoload | |
616 (defun rmail-input (filename) | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
617 "Run Rmail on file FILENAME." |
270 | 618 (interactive "FRun rmail on RMAIL file: ") |
619 (rmail filename)) | |
620 | |
621 | |
622 ;;;; *** Rmail input *** | |
623 | |
624 ;; RLK feature not added in this version: | |
625 ;; argument specifies inbox file or files in various ways. | |
626 | |
627 (defun rmail-get-new-mail (&optional file-name) | |
628 "Move any new mail from this RMAIL file's inbox files. | |
629 The inbox files can be specified with the file's Mail: option. The | |
630 variable `rmail-primary-inbox-list' specifies the inboxes for your | |
2423
5dd3b7338f71
(rmail): Don't use mbox as inbox by default.
Richard M. Stallman <rms@gnu.org>
parents:
2076
diff
changeset
|
631 primary RMAIL file if it has no Mail: option. By default, this is |
5dd3b7338f71
(rmail): Don't use mbox as inbox by default.
Richard M. Stallman <rms@gnu.org>
parents:
2076
diff
changeset
|
632 your /usr/spool/mail/$USER. |
270 | 633 |
634 You can also specify the file to get new mail from. In this case, the | |
635 file of new mail is not changed or deleted. Noninteractively, you can | |
636 pass the inbox file name as an argument. Interactively, a prefix | |
637 argument causes us to read a file name and use that file as the inbox." | |
638 (interactive | |
639 (list (if current-prefix-arg | |
640 (read-file-name "Get new mail from file: ")))) | |
641 (or (verify-visited-file-modtime (current-buffer)) | |
642 (progn | |
643 (find-file (buffer-file-name)) | |
2006
3f64e7ba7fdd
(rmail-get-new-mail): Reset read-only after find-file.
Richard M. Stallman <rms@gnu.org>
parents:
1757
diff
changeset
|
644 (setq buffer-read-only t) |
270 | 645 (if (verify-visited-file-modtime (current-buffer)) |
646 (rmail-forget-messages)))) | |
647 (rmail-maybe-set-message-counters) | |
648 (widen) | |
649 ;; Get rid of all undo records for this buffer. | |
650 (or (eq buffer-undo-list t) | |
651 (setq buffer-undo-list nil)) | |
652 (unwind-protect | |
653 (let ((opoint (point)) | |
654 (new-messages 0) | |
655 (delete-files ()) | |
656 ;; If buffer has not changed yet, and has not been saved yet, | |
657 ;; don't replace the old backup file now. | |
658 (make-backup-files (and make-backup-files (buffer-modified-p))) | |
659 (buffer-read-only nil) | |
660 ;; Don't make undo records for what we do in getting mail. | |
661 (buffer-undo-list t)) | |
662 (goto-char (point-max)) | |
663 (skip-chars-backward " \t\n") ; just in case of brain damage | |
664 (delete-region (point) (point-max)) ; caused by require-final-newline | |
665 (save-excursion | |
666 (save-restriction | |
667 (narrow-to-region (point) (point)) | |
668 ;; Read in the contents of the inbox files, | |
669 ;; renaming them as necessary, | |
670 ;; and adding to the list of files to delete eventually. | |
671 (if file-name | |
672 (rmail-insert-inbox-text (list file-name) nil) | |
673 (setq delete-files (rmail-insert-inbox-text rmail-inbox-list t))) | |
674 ;; Scan the new text and convert each message to babyl format. | |
675 (goto-char (point-min)) | |
676 (save-excursion | |
677 (setq new-messages (rmail-convert-to-babyl-format))) | |
678 (or (zerop new-messages) | |
679 (let (success) | |
680 (widen) | |
681 (search-backward "\n\^_") | |
682 (narrow-to-region (point) (point-max)) | |
683 (goto-char (1+ (point-min))) | |
684 (rmail-count-new-messages) | |
685 (save-buffer))) | |
686 ;; Delete the old files, now that babyl file is saved. | |
687 (while delete-files | |
688 (condition-case () | |
1165 | 689 ;; First, try deleting. |
690 (condition-case () | |
691 (delete-file (car delete-files)) | |
692 (file-error | |
693 ;; If we can't delete it, truncate it. | |
694 (write-region (point) (point) (car delete-files)))) | |
270 | 695 (file-error nil)) |
696 (setq delete-files (cdr delete-files))))) | |
697 (if (= new-messages 0) | |
698 (progn (goto-char opoint) | |
699 (if (or file-name rmail-inbox-list) | |
700 (message "(No new mail has arrived)"))) | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
701 (if (rmail-summary-exists) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
702 (rmail-select-summary |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
703 (rmail-update-summary))) |
270 | 704 (message "%d new message%s read" |
705 new-messages (if (= 1 new-messages) "" "s")) | |
706 (and (boundp 'display-time-string) | |
707 (string-match " Mail" display-time-string) | |
708 (setq display-time-string | |
709 (concat | |
710 (substring display-time-string 0 (match-beginning 0)) | |
711 (substring display-time-string (match-end 0)))) | |
712 (force-mode-line-update 'all)))) | |
713 ;; Don't leave the buffer screwed up if we get a disk-full error. | |
714 (rmail-show-message))) | |
715 | |
716 (defun rmail-insert-inbox-text (files renamep) | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
717 (let (file tofile delete-files movemail popmail) |
270 | 718 (while files |
719 (setq file (expand-file-name (substitute-in-file-name (car files))) | |
720 ;;>> un*x specific << | |
813 | 721 ;; The "+" used to be "~", which is an extremely poor choice; |
722 ;; it might accidentally be deleted when space is low | |
723 ;; (as happened to me!). | |
724 tofile (concat file "+")) | |
270 | 725 ;; If getting from mail spool directory, |
726 ;; use movemail to move rather than just renaming, | |
727 ;; so as to interlock with the mailer. | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
728 (setq movemail (equal (file-name-directory file) rmail-spool-directory) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
729 popmail (string-match "^po:" (file-name-nondirectory file))) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
730 (if popmail (setq file (file-name-nondirectory file) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
731 renamep t)) |
270 | 732 (if movemail |
733 (progn | |
734 (setq tofile (expand-file-name | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
735 ;; Generate name to move to from inbox name, |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
736 ;; in case of multiple inboxes that need moving. |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
737 (concat ".newmail-" (file-name-nondirectory file)) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
738 ;; Use the directory of this rmail file |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
739 ;; because it's a nuisance to use the homedir |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
740 ;; if that is on a full disk and this rmail |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
741 ;; file isn't. |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
742 (file-name-directory |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
743 (expand-file-name buffer-file-name)))) |
270 | 744 ;; On some systems, /usr/spool/mail/foo is a directory |
745 ;; and the actual inbox is /usr/spool/mail/foo/foo. | |
746 (if (file-directory-p file) | |
747 (setq file (expand-file-name (user-original-login-name) | |
748 file))))) | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
749 (if popmail |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
750 (message "Getting mail from post office ...") |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
751 (if (or (and (file-exists-p tofile) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
752 (/= 0 (nth 7 (file-attributes tofile)))) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
753 (and (file-exists-p file) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
754 (/= 0 (nth 7 (file-attributes file))))) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
755 (message "Getting mail from %s..." file))) |
270 | 756 ;; Set TOFILE if have not already done so, and |
757 ;; rename or copy the file FILE to TOFILE if and as appropriate. | |
758 (cond ((not renamep) | |
759 (setq tofile file)) | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
760 ((or (file-exists-p tofile) (and (not popmail) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
761 (not (file-exists-p file)))) |
270 | 762 nil) |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
763 ((and (not movemail) (not popmail)) |
4071
4f387cc0a49f
(rmail-insert-inbox-text): If inbox is not in the
Richard M. Stallman <rms@gnu.org>
parents:
4020
diff
changeset
|
764 ;; Try copying. If that fails (perhaps no space), |
4f387cc0a49f
(rmail-insert-inbox-text): If inbox is not in the
Richard M. Stallman <rms@gnu.org>
parents:
4020
diff
changeset
|
765 ;; rename instead. |
4f387cc0a49f
(rmail-insert-inbox-text): If inbox is not in the
Richard M. Stallman <rms@gnu.org>
parents:
4020
diff
changeset
|
766 (condition-case nil |
4f387cc0a49f
(rmail-insert-inbox-text): If inbox is not in the
Richard M. Stallman <rms@gnu.org>
parents:
4020
diff
changeset
|
767 (copy-file file tofile nil) |
4f387cc0a49f
(rmail-insert-inbox-text): If inbox is not in the
Richard M. Stallman <rms@gnu.org>
parents:
4020
diff
changeset
|
768 (error |
4f387cc0a49f
(rmail-insert-inbox-text): If inbox is not in the
Richard M. Stallman <rms@gnu.org>
parents:
4020
diff
changeset
|
769 (rename-file file tofile nil))) |
1165 | 770 ;; Make the real inbox file empty. |
771 ;; Leaving it deleted could cause lossage | |
772 ;; because mailers often won't create the file. | |
773 (condition-case () | |
774 (write-region (point) (point) file) | |
775 (file-error nil))) | |
270 | 776 (t |
777 (let ((errors nil)) | |
778 (unwind-protect | |
779 (save-excursion | |
780 (setq errors (generate-new-buffer " *rmail loss*")) | |
781 (buffer-disable-undo errors) | |
782 (call-process | |
783 (expand-file-name "movemail" exec-directory) | |
784 nil errors nil file tofile) | |
785 (if (not (buffer-modified-p errors)) | |
786 ;; No output => movemail won | |
787 nil | |
788 (set-buffer errors) | |
789 (subst-char-in-region (point-min) (point-max) | |
790 ?\n ?\ ) | |
791 (goto-char (point-max)) | |
792 (skip-chars-backward " \t") | |
793 (delete-region (point) (point-max)) | |
794 (goto-char (point-min)) | |
795 (if (looking-at "movemail: ") | |
796 (delete-region (point-min) (match-end 0))) | |
797 (beep t) | |
798 (message (concat "movemail: " | |
799 (buffer-substring (point-min) | |
800 (point-max)))) | |
801 (sit-for 3) | |
802 nil)) | |
803 (if errors (kill-buffer errors)))))) | |
804 ;; At this point, TOFILE contains the name to read: | |
805 ;; Either the alternate name (if we renamed) | |
806 ;; or the actual inbox (if not renaming). | |
807 (if (file-exists-p tofile) | |
808 (let (size) | |
809 (goto-char (point-max)) | |
810 (setq size (nth 1 (insert-file-contents tofile))) | |
811 (goto-char (point-max)) | |
812 (or (= (preceding-char) ?\n) | |
813 (zerop size) | |
814 (insert ?\n)) | |
815 (setq delete-files (cons tofile delete-files)))) | |
816 (message "") | |
817 (setq files (cdr files))) | |
818 delete-files)) | |
819 | |
820 ;; the rmail-break-forwarded-messages feature is not implemented | |
821 (defun rmail-convert-to-babyl-format () | |
822 (let ((count 0) start | |
402
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
823 (case-fold-search nil) |
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
824 (invalid-input-resync |
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
825 (function (lambda () |
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
826 (message "Invalid Babyl format in inbox!") |
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
827 (sit-for 1) |
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
828 ;; Try to get back in sync with a real message. |
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
829 (if (re-search-forward |
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
830 (concat mmdf-delim1 "\\|^From") nil t) |
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
831 (beginning-of-line) |
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
832 (goto-char (point-max))))))) |
270 | 833 (goto-char (point-min)) |
834 (save-restriction | |
835 (while (not (eobp)) | |
836 (cond ((looking-at "BABYL OPTIONS:");Babyl header | |
402
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
837 (if (search-forward "\n\^_" nil t) |
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
838 ;; If we find the proper terminator, delete through there. |
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
839 (delete-region (point-min) (point)) |
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
840 (funcall invalid-input-resync) |
405
698d5d6e8f8b
*** empty log message ***
Michael I. Bushnell <mib@gnu.org>
parents:
403
diff
changeset
|
841 (delete-region (point-min) (point)))) |
270 | 842 ;; Babyl format message |
843 ((looking-at "\^L") | |
844 (or (search-forward "\n\^_" nil t) | |
402
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
845 (funcall invalid-input-resync)) |
270 | 846 (setq count (1+ count)) |
847 ;; Make sure there is no extra white space after the ^_ | |
848 ;; at the end of the message. | |
849 ;; Narrowing will make sure that whatever follows the junk | |
850 ;; will be treated properly. | |
851 (delete-region (point) | |
852 (save-excursion | |
853 (skip-chars-forward " \t\n") | |
854 (point))) | |
855 (narrow-to-region (point) (point-max))) | |
856 ;;*** MMDF format | |
857 ((let ((case-fold-search t)) | |
858 (looking-at mmdf-delim1)) | |
859 (let ((case-fold-search t)) | |
860 (replace-match "\^L\n0, unseen,,\n*** EOOH ***\n") | |
861 (setq start (point)) | |
862 (re-search-forward mmdf-delim2 nil t) | |
863 (replace-match "\^_")) | |
864 (save-excursion | |
865 (save-restriction | |
866 (narrow-to-region start (1- (point))) | |
867 (goto-char (point-min)) | |
868 (while (search-forward "\n\^_" nil t); single char "\^_" | |
869 (replace-match "\n^_")))); 2 chars: "^" and "_" | |
870 (narrow-to-region (point) (point-max)) | |
871 (setq count (1+ count))) | |
872 ;;*** Mail format | |
873 ((looking-at "^From ") | |
874 (setq start (point)) | |
875 (insert "\^L\n0, unseen,,\n*** EOOH ***\n") | |
876 (rmail-nuke-pinhead-header) | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
877 ;; If this message has a Content-Length field, |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
878 ;; skip to the end of the contents. |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
879 (let* ((header-end (save-excursion |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
880 (and (re-search-forward "\n\n" nil t) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
881 (point)))) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
882 (case-fold-search t) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
883 (size |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
884 ;; Get the numeric value from the Content-Length field. |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
885 (save-excursion |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
886 ;; Back up to end of prev line, |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
887 ;; in case the Content-Length field comes first. |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
888 (forward-char -1) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
889 (and (search-forward "\ncontent-length: " |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
890 header-end t) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
891 (let ((beg (point)) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
892 (eol (progn (end-of-line) (point)))) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
893 (read (buffer-substring beg eol))))))) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
894 (if size |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
895 (goto-char (+ header-end size)))) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
896 |
270 | 897 (if (re-search-forward |
898 (concat "^[\^_]?\\(" | |
617 | 899 rmail-unix-mail-delimiter |
900 "\\|" | |
270 | 901 mmdf-delim1 "\\|" |
902 "^BABYL OPTIONS:\\|" | |
903 "\^L\n[01],\\)") nil t) | |
904 (goto-char (match-beginning 1)) | |
905 (goto-char (point-max))) | |
906 (setq count (1+ count)) | |
907 (save-excursion | |
908 (save-restriction | |
909 (narrow-to-region start (point)) | |
910 (goto-char (point-min)) | |
911 (while (search-forward "\n\^_" nil t); single char | |
912 (replace-match "\n^_")))); 2 chars: "^" and "_" | |
913 (insert ?\^_) | |
914 (narrow-to-region (point) (point-max))) | |
915 ;; | |
2700
9de57e00caf7
(rmail-convert-to-babyl-format): Delete 1 char
Richard M. Stallman <rms@gnu.org>
parents:
2687
diff
changeset
|
916 ;; This kludge is because some versions of sendmail.el |
9de57e00caf7
(rmail-convert-to-babyl-format): Delete 1 char
Richard M. Stallman <rms@gnu.org>
parents:
2687
diff
changeset
|
917 ;; insert an extra newline at the beginning that shouldn't |
9de57e00caf7
(rmail-convert-to-babyl-format): Delete 1 char
Richard M. Stallman <rms@gnu.org>
parents:
2687
diff
changeset
|
918 ;; be there. sendmail.el has been fixed, but old versions |
9de57e00caf7
(rmail-convert-to-babyl-format): Delete 1 char
Richard M. Stallman <rms@gnu.org>
parents:
2687
diff
changeset
|
919 ;; may still be in use. -- rms, 7 May 1993. |
9de57e00caf7
(rmail-convert-to-babyl-format): Delete 1 char
Richard M. Stallman <rms@gnu.org>
parents:
2687
diff
changeset
|
920 ((eolp) (delete-char 1)) |
405
698d5d6e8f8b
*** empty log message ***
Michael I. Bushnell <mib@gnu.org>
parents:
403
diff
changeset
|
921 (t (error "Cannot convert to babyl format"))))) |
270 | 922 count)) |
923 | |
924 ;; Delete the "From ..." line, creating various other headers with | |
925 ;; information from it if they don't already exist. Now puts the | |
926 ;; original line into a mail-from: header line for debugging. | |
927 (defun rmail-nuke-pinhead-header () | |
928 (save-excursion | |
929 (save-restriction | |
930 (let ((start (point)) | |
931 (end (progn | |
932 (condition-case () | |
933 (search-forward "\n\n") | |
934 (error | |
935 (goto-char (point-max)) | |
936 (insert "\n\n"))) | |
937 (point))) | |
938 has-from has-date) | |
939 (narrow-to-region start end) | |
940 (let ((case-fold-search t)) | |
941 (goto-char start) | |
942 (setq has-from (search-forward "\nFrom:" nil t)) | |
943 (goto-char start) | |
944 (setq has-date (and (search-forward "\nDate:" nil t) (point))) | |
945 (goto-char start)) | |
946 (let ((case-fold-search nil)) | |
617 | 947 (if (re-search-forward (concat "^" rmail-unix-mail-delimiter) nil t) |
270 | 948 (replace-match |
949 (concat | |
950 "Mail-from: \\&" | |
951 ;; Keep and reformat the date if we don't | |
952 ;; have a Date: field. | |
953 (if has-date | |
954 "" | |
1112 | 955 (concat |
956 "Date: \\3, \\5 \\4 \\9 \\6 " | |
957 | |
958 ;; The timezone could be matched by group 7 or group 10. | |
959 ;; If neither of them matched, assume EST, since only | |
960 ;; Easterners would be so sloppy. | |
961 ;; It's a shame the substitution can't use "\\10". | |
962 (cond | |
963 ((/= (match-beginning 7) (match-end 7)) "\\7") | |
964 ((/= (match-beginning 10) (match-end 10)) | |
965 (buffer-substring (match-beginning 10) | |
966 (match-end 10))) | |
967 (t "EST")) | |
968 "\n")) | |
270 | 969 ;; Keep and reformat the sender if we don't |
970 ;; have a From: field. | |
971 (if has-from | |
972 "" | |
4340
505fb5222dea
(rmail-nuke-pinhead-header): Tell replace-match not to alter the case.
Richard M. Stallman <rms@gnu.org>
parents:
4332
diff
changeset
|
973 "From: \\1\n")) |
505fb5222dea
(rmail-nuke-pinhead-header): Tell replace-match not to alter the case.
Richard M. Stallman <rms@gnu.org>
parents:
4332
diff
changeset
|
974 t))))))) |
270 | 975 |
976 ;;;; *** Rmail Message Formatting and Header Manipulation *** | |
977 | |
978 (defun rmail-reformat-message (beg end) | |
979 (goto-char beg) | |
980 (forward-line 1) | |
981 (if (/= (following-char) ?0) | |
982 (error "Bad format in RMAIL file.")) | |
983 (let ((buffer-read-only nil) | |
984 (delta (- (buffer-size) end))) | |
985 (delete-char 1) | |
986 (insert ?1) | |
987 (forward-line 1) | |
4340
505fb5222dea
(rmail-nuke-pinhead-header): Tell replace-match not to alter the case.
Richard M. Stallman <rms@gnu.org>
parents:
4332
diff
changeset
|
988 (let ((case-fold-search t)) |
505fb5222dea
(rmail-nuke-pinhead-header): Tell replace-match not to alter the case.
Richard M. Stallman <rms@gnu.org>
parents:
4332
diff
changeset
|
989 (if (looking-at "Summary-line: ") |
505fb5222dea
(rmail-nuke-pinhead-header): Tell replace-match not to alter the case.
Richard M. Stallman <rms@gnu.org>
parents:
4332
diff
changeset
|
990 (forward-line 1))) |
270 | 991 (if (looking-at "\\*\\*\\* EOOH \\*\\*\\*\n") |
992 (delete-region (point) | |
993 (progn (forward-line 1) (point)))) | |
994 (let ((str (buffer-substring (point) | |
995 (save-excursion (search-forward "\n\n" end 'move) | |
996 (point))))) | |
997 (insert str "*** EOOH ***\n") | |
998 (narrow-to-region (point) (- (buffer-size) delta))) | |
999 (goto-char (point-min)) | |
1000 (if rmail-ignored-headers (rmail-clear-headers)) | |
1001 (if rmail-message-filter (funcall rmail-message-filter)))) | |
1002 | |
1003 (defun rmail-clear-headers () | |
1004 (if (search-forward "\n\n" nil t) | |
1005 (save-restriction | |
1006 (narrow-to-region (point-min) (point)) | |
1007 (let ((buffer-read-only nil)) | |
1008 (while (let ((case-fold-search t)) | |
1009 (goto-char (point-min)) | |
1010 (re-search-forward rmail-ignored-headers nil t)) | |
1011 (beginning-of-line) | |
1012 (delete-region (point) | |
1013 (progn (re-search-forward "\n[^ \t]") | |
1014 (forward-char -1) | |
1015 (point)))))))) | |
1016 | |
1017 (defun rmail-toggle-header () | |
1018 "Show original message header if pruned header currently shown, or vice versa." | |
1019 (interactive) | |
1020 (rmail-maybe-set-message-counters) | |
1021 (narrow-to-region (rmail-msgbeg rmail-current-message) (point-max)) | |
1022 (let ((buffer-read-only nil)) | |
1023 (goto-char (point-min)) | |
1024 (forward-line 1) | |
1025 (if (= (following-char) ?1) | |
1026 (progn (delete-char 1) | |
1027 (insert ?0) | |
1028 (forward-line 1) | |
4340
505fb5222dea
(rmail-nuke-pinhead-header): Tell replace-match not to alter the case.
Richard M. Stallman <rms@gnu.org>
parents:
4332
diff
changeset
|
1029 (let ((case-fold-search t)) |
505fb5222dea
(rmail-nuke-pinhead-header): Tell replace-match not to alter the case.
Richard M. Stallman <rms@gnu.org>
parents:
4332
diff
changeset
|
1030 (if (looking-at "Summary-Line:") |
505fb5222dea
(rmail-nuke-pinhead-header): Tell replace-match not to alter the case.
Richard M. Stallman <rms@gnu.org>
parents:
4332
diff
changeset
|
1031 (forward-line 1))) |
270 | 1032 (insert "*** EOOH ***\n") |
1033 (forward-char -1) | |
1034 (search-forward "\n*** EOOH ***\n") | |
1035 (forward-line -1) | |
1036 (let ((temp (point))) | |
1037 (and (search-forward "\n\n" nil t) | |
1038 (delete-region temp (point)))) | |
1039 (goto-char (point-min)) | |
1040 (search-forward "\n*** EOOH ***\n") | |
1041 (narrow-to-region (point) (point-max))) | |
1042 (rmail-reformat-message (point-min) (point-max))))) | |
1043 | |
1044 ;;;; *** Rmail Attributes and Keywords *** | |
1045 | |
1046 ;; Make a string describing current message's attributes and keywords | |
1047 ;; and set it up as the name of a minor mode | |
1048 ;; so it will appear in the mode line. | |
1049 (defun rmail-display-labels () | |
1050 (let ((blurb "") (beg (point-min-marker)) (end (point-max-marker))) | |
1051 (save-excursion | |
1052 (unwind-protect | |
1053 (progn | |
1054 (widen) | |
1055 (goto-char (rmail-msgbeg rmail-current-message)) | |
1056 (forward-line 1) | |
1057 (if (looking-at "[01],") | |
1058 (progn | |
1059 (narrow-to-region (point) (progn (end-of-line) (point))) | |
1060 ;; Truly valid BABYL format requires a space before each | |
1061 ;; attribute or keyword name. Put them in if missing. | |
1062 (let (buffer-read-only) | |
1063 (goto-char (point-min)) | |
1064 (while (search-forward "," nil t) | |
1065 (or (looking-at "[ ,]") (eobp) | |
1066 (insert " ")))) | |
1067 (goto-char (point-max)) | |
1068 (if (search-backward ",," nil 'move) | |
1069 (progn | |
1070 (if (> (point) (1+ (point-min))) | |
1071 (setq blurb (buffer-substring (+ 1 (point-min)) (point)))) | |
1072 (if (> (- (point-max) (point)) 2) | |
1073 (setq blurb | |
1074 (concat blurb | |
1075 ";" | |
1076 (buffer-substring (+ (point) 3) | |
1077 (1- (point-max))))))))))) | |
1078 ;; Note: we don't use save-restriction because that does not work right | |
1079 ;; if changes are made outside the saved restriction | |
1080 ;; before that restriction is restored. | |
1081 (narrow-to-region beg end) | |
1082 (set-marker beg nil) | |
1083 (set-marker end nil))) | |
1084 (while (string-match " +," blurb) | |
1085 (setq blurb (concat (substring blurb 0 (match-beginning 0)) "," | |
1086 (substring blurb (match-end 0))))) | |
1087 (while (string-match ", +" blurb) | |
1088 (setq blurb (concat (substring blurb 0 (match-beginning 0)) "," | |
1089 (substring blurb (match-end 0))))) | |
1090 (setq mode-line-process | |
1091 (concat " " rmail-current-message "/" rmail-total-messages | |
1092 blurb)))) | |
1093 | |
1094 ;; Turn an attribute of a message on or off according to STATE. | |
1095 ;; ATTR is the name of the attribute, as a string. | |
1096 ;; MSGNUM is message number to change; nil means current message. | |
1097 (defun rmail-set-attribute (attr state &optional msgnum) | |
1098 (let ((omax (point-max-marker)) | |
1099 (omin (point-min-marker)) | |
1100 (buffer-read-only nil)) | |
1101 (or msgnum (setq msgnum rmail-current-message)) | |
1102 (unwind-protect | |
1103 (save-excursion | |
1104 (widen) | |
1105 (goto-char (+ 3 (rmail-msgbeg msgnum))) | |
1106 (let ((curstate | |
1107 (not | |
1108 (null (search-backward (concat ", " attr ",") | |
1109 (prog1 (point) (end-of-line)) t))))) | |
1110 (or (eq curstate (not (not state))) | |
1111 (if curstate | |
1112 (delete-region (point) (1- (match-end 0))) | |
1113 (beginning-of-line) | |
1114 (forward-char 2) | |
1115 (insert " " attr ",")))) | |
1116 (if (string= attr "deleted") | |
1117 (rmail-set-message-deleted-p msgnum state))) | |
1118 ;; Note: we don't use save-restriction because that does not work right | |
1119 ;; if changes are made outside the saved restriction | |
1120 ;; before that restriction is restored. | |
1121 (narrow-to-region omin omax) | |
1122 (set-marker omin nil) | |
1123 (set-marker omax nil) | |
1124 (if (= msgnum rmail-current-message) | |
1125 (rmail-display-labels))))) | |
1126 | |
1127 ;; Return t if the attributes/keywords line of msg number MSG | |
1128 ;; contains a match for the regexp LABELS. | |
1129 (defun rmail-message-labels-p (msg labels) | |
1130 (save-excursion | |
1131 (save-restriction | |
1132 (widen) | |
1133 (goto-char (rmail-msgbeg msg)) | |
1134 (forward-char 3) | |
1135 (re-search-backward labels (prog1 (point) (end-of-line)) t)))) | |
1136 | |
1137 ;;;; *** Rmail Message Selection And Support *** | |
1138 | |
1139 (defun rmail-msgend (n) | |
1140 (marker-position (aref rmail-message-vector (1+ n)))) | |
1141 | |
1142 (defun rmail-msgbeg (n) | |
1143 (marker-position (aref rmail-message-vector n))) | |
1144 | |
1145 (defun rmail-widen-to-current-msgbeg (function) | |
1146 "Call FUNCTION with point at start of internal data of current message. | |
1147 Assumes that bounds were previously narrowed to display the message in Rmail. | |
1148 The bounds are widened enough to move point where desired, then narrowed | |
1149 again afterward. | |
1150 | |
1151 FUNCTION may not change the visible text of the message, but it may | |
1152 change the invisible header text." | |
1153 (save-excursion | |
344 | 1154 (let ((obeg (- (point-max) (point-min)))) |
270 | 1155 (unwind-protect |
1156 (progn | |
1157 (narrow-to-region (rmail-msgbeg rmail-current-message) | |
1158 (point-max)) | |
1159 (goto-char (point-min)) | |
1160 (funcall function)) | |
1161 ;; Note: we don't use save-restriction because that does not work right | |
1162 ;; if changes are made outside the saved restriction | |
1163 ;; before that restriction is restored. | |
1164 ;; Here we assume that changes made by FUNCTION | |
1165 ;; occur before the visible region of the message. | |
344 | 1166 (narrow-to-region (- (point-max) obeg) (point-max)))))) |
270 | 1167 |
1168 (defun rmail-forget-messages () | |
1169 (unwind-protect | |
1170 (if (vectorp rmail-message-vector) | |
1171 (let* ((i 0) | |
1172 (v rmail-message-vector) | |
1173 (n (length v))) | |
1174 (while (< i n) | |
1175 (move-marker (aref v i) nil) | |
1176 (setq i (1+ i))))) | |
1177 (setq rmail-message-vector nil) | |
1178 (setq rmail-deleted-vector nil))) | |
1179 | |
1180 (defun rmail-maybe-set-message-counters () | |
1181 (if (not (and rmail-deleted-vector | |
1182 rmail-message-vector | |
1183 rmail-current-message | |
1184 rmail-total-messages)) | |
1185 (rmail-set-message-counters))) | |
1186 | |
1187 (defun rmail-count-new-messages (&optional nomsg) | |
1188 (let* ((case-fold-search nil) | |
1189 (total-messages 0) | |
1190 (messages-head nil) | |
1191 (deleted-head nil)) | |
1192 (or nomsg (message "Counting new messages...")) | |
1193 (goto-char (point-max)) | |
1194 ;; Put at the end of messages-head | |
1195 ;; the entry for message N+1, which marks | |
1196 ;; the end of message N. (N = number of messages). | |
1197 (search-backward "\n\^_") | |
1198 (forward-char 1) | |
1199 (setq messages-head (list (point-marker))) | |
1200 (rmail-set-message-counters-counter (point-min)) | |
1201 (setq rmail-current-message (1+ rmail-total-messages)) | |
1202 (setq rmail-total-messages | |
1203 (+ rmail-total-messages total-messages)) | |
1204 (setq rmail-message-vector | |
1205 (vconcat rmail-message-vector (cdr messages-head))) | |
1206 (aset rmail-message-vector | |
1207 rmail-current-message (car messages-head)) | |
1208 (setq rmail-deleted-vector | |
1209 (concat rmail-deleted-vector deleted-head)) | |
1210 (setq rmail-summary-vector | |
1211 (vconcat rmail-summary-vector (make-vector total-messages nil))) | |
1212 (goto-char (point-min)) | |
1213 (or nomsg (message "Counting new messages...done (%d)" total-messages)))) | |
1214 | |
1215 (defun rmail-set-message-counters () | |
1216 (rmail-forget-messages) | |
1217 (save-excursion | |
1218 (save-restriction | |
1219 (widen) | |
1220 (let* ((point-save (point)) | |
1221 (total-messages 0) | |
1222 (messages-after-point) | |
1223 (case-fold-search nil) | |
1224 (messages-head nil) | |
1225 (deleted-head nil)) | |
1226 (message "Counting messages...") | |
1227 (goto-char (point-max)) | |
1228 ;; Put at the end of messages-head | |
1229 ;; the entry for message N+1, which marks | |
1230 ;; the end of message N. (N = number of messages). | |
1231 (search-backward "\n\^_") | |
1232 (forward-char 1) | |
1233 (setq messages-head (list (point-marker))) | |
1234 (rmail-set-message-counters-counter (min (point) point-save)) | |
1235 (setq messages-after-point total-messages) | |
1236 (rmail-set-message-counters-counter) | |
1237 (setq rmail-total-messages total-messages) | |
1238 (setq rmail-current-message | |
1239 (min total-messages | |
1240 (max 1 (- total-messages messages-after-point)))) | |
1241 (setq rmail-message-vector | |
1242 (apply 'vector (cons (point-min-marker) messages-head)) | |
1243 rmail-deleted-vector (concat "D" deleted-head) | |
1244 rmail-summary-vector (make-vector rmail-total-messages nil)) | |
1245 (message "Counting messages...done"))))) | |
1246 | |
1247 (defun rmail-set-message-counters-counter (&optional stop) | |
1248 (while (search-backward "\n\^_\^L\n" stop t) | |
1249 (forward-char 1) | |
1250 (setq messages-head (cons (point-marker) messages-head)) | |
1251 (save-excursion | |
1252 (setq deleted-head | |
1253 (cons (if (search-backward ", deleted," | |
1254 (prog1 (point) | |
1255 (forward-line 2)) | |
1256 t) | |
1257 ?D ?\ ) | |
1258 deleted-head))) | |
1259 (if (zerop (% (setq total-messages (1+ total-messages)) 20)) | |
1260 (message "Counting messages...%d" total-messages)))) | |
1261 | |
1262 (defun rmail-beginning-of-message () | |
1263 "Show current message starting from the beginning." | |
1264 (interactive) | |
1265 (rmail-show-message rmail-current-message)) | |
1266 | |
1267 (defun rmail-show-message (&optional n) | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1268 "Show message number N (prefix argument), counting from start of file. |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1269 If summary buffer is currently displayed, update current message there also." |
270 | 1270 (interactive "p") |
1271 (rmail-maybe-set-message-counters) | |
1272 (widen) | |
1273 (if (zerop rmail-total-messages) | |
1274 (progn (narrow-to-region (point-min) (1- (point-max))) | |
1275 (goto-char (point-min)) | |
1276 (setq mode-line-process nil)) | |
1277 (let (blurb) | |
1278 (if (not n) | |
1279 (setq n rmail-current-message) | |
1280 (cond ((<= n 0) | |
1281 (setq n 1 | |
1282 rmail-current-message 1 | |
1283 blurb "No previous message")) | |
1284 ((> n rmail-total-messages) | |
1285 (setq n rmail-total-messages | |
1286 rmail-current-message rmail-total-messages | |
1287 blurb "No following message")) | |
1288 (t | |
1289 (setq rmail-current-message n)))) | |
1290 (let ((beg (rmail-msgbeg n)) | |
1291 (end (rmail-msgend n))) | |
1292 (goto-char beg) | |
1293 (forward-line 1) | |
1294 (if (= (following-char) ?0) | |
1295 (progn | |
1296 (rmail-reformat-message beg end) | |
1297 (rmail-set-attribute "unseen" nil)) | |
1298 (search-forward "\n*** EOOH ***\n" end t) | |
1299 (narrow-to-region (point) end)) | |
1300 (goto-char (point-min)) | |
1301 (rmail-display-labels) | |
1302 (run-hooks 'rmail-show-message-hook) | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1303 ;; If there is a summary buffer, try to move to this message |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1304 ;; in that buffer. But don't complain if this message |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1305 ;; is not mentioned in the summary. |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1306 (if (rmail-summary-exists) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1307 (let ((curr-msg rmail-current-message)) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1308 (rmail-select-summary |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1309 (rmail-summary-goto-msg curr-msg t t)))) |
270 | 1310 (if blurb |
1311 (message blurb)))))) | |
1312 | |
1313 (defun rmail-next-message (n) | |
1314 "Show following message whether deleted or not. | |
1315 With prefix arg N, moves forward N messages, or backward if N is negative." | |
1316 (interactive "p") | |
1317 (rmail-maybe-set-message-counters) | |
1318 (rmail-show-message (+ rmail-current-message n))) | |
1319 | |
1320 (defun rmail-previous-message (n) | |
1321 "Show previous message whether deleted or not. | |
1322 With prefix arg N, moves backward N messages, or forward if N is negative." | |
1323 (interactive "p") | |
1324 (rmail-next-message (- n))) | |
1325 | |
1326 (defun rmail-next-undeleted-message (n) | |
1327 "Show following non-deleted message. | |
1328 With prefix arg N, moves forward N non-deleted messages, | |
1329 or backward if N is negative." | |
1330 (interactive "p") | |
1331 (rmail-maybe-set-message-counters) | |
1332 (let ((lastwin rmail-current-message) | |
1333 (current rmail-current-message)) | |
1334 (while (and (> n 0) (< current rmail-total-messages)) | |
1335 (setq current (1+ current)) | |
1336 (if (not (rmail-message-deleted-p current)) | |
1337 (setq lastwin current n (1- n)))) | |
1338 (while (and (< n 0) (> current 1)) | |
1339 (setq current (1- current)) | |
1340 (if (not (rmail-message-deleted-p current)) | |
1341 (setq lastwin current n (1+ n)))) | |
1342 (if (/= lastwin rmail-current-message) | |
1343 (rmail-show-message lastwin)) | |
1344 (if (< n 0) | |
997
894201c58bb8
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
937
diff
changeset
|
1345 (message "No previous nondeleted message")) |
270 | 1346 (if (> n 0) |
997
894201c58bb8
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
937
diff
changeset
|
1347 (message "No following nondeleted message")))) |
270 | 1348 |
1349 (defun rmail-previous-undeleted-message (n) | |
1350 "Show previous non-deleted message. | |
1351 With prefix argument N, moves backward N non-deleted messages, | |
1352 or forward if N is negative." | |
1353 (interactive "p") | |
1354 (rmail-next-undeleted-message (- n))) | |
1355 | |
1356 (defun rmail-first-message () | |
1357 "Show first message in file." | |
1358 (interactive) | |
1359 (rmail-maybe-set-message-counters) | |
1360 (rmail-show-message 1)) | |
1361 | |
1362 (defun rmail-last-message () | |
1363 "Show last message in file." | |
1364 (interactive) | |
1365 (rmail-maybe-set-message-counters) | |
1366 (rmail-show-message rmail-total-messages)) | |
1367 | |
1368 (defun rmail-what-message () | |
1369 (let ((where (point)) | |
1370 (low 1) | |
1371 (high rmail-total-messages) | |
1372 (mid (/ rmail-total-messages 2))) | |
1373 (while (> (- high low) 1) | |
1374 (if (>= where (rmail-msgbeg mid)) | |
1375 (setq low mid) | |
1376 (setq high mid)) | |
1377 (setq mid (+ low (/ (- high low) 2)))) | |
1378 (if (>= where (rmail-msgbeg high)) high low))) | |
1379 | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1380 (defun rmail-message-recipients-p (msg recipients &optional primary-only) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1381 (save-restriction |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1382 (goto-char (rmail-msgbeg msg)) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1383 (search-forward "\n*** EOOH ***\n") |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1384 (narrow-to-region (point) (progn (search-forward "\n\n") (point))) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1385 (or (string-match recipients (or (mail-fetch-field "To") "")) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1386 (string-match recipients (or (mail-fetch-field "From") "")) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1387 (if (not primary-only) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1388 (string-match recipients (or (mail-fetch-field "Cc") "")))))) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1389 |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1390 (defun rmail-message-regexp-p (msg regexp) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1391 "Return t, if for message number MSG, regexp REGEXP matches in the header." |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1392 (goto-char (rmail-msgbeg msg)) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1393 (let ((end |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1394 (save-excursion |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1395 (search-forward "*** EOOH ***" (point-max)) (point)))) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1396 (re-search-forward regexp end t))) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1397 |
3863
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1398 (defun rmail-search-backward (regexp &optional n) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1399 "Show message containing next match for REGEXP. |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1400 Prefix argument gives repeat count; negative argument means search |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1401 backwards (through earlier messages). |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1402 Interactively, empty argument means use same regexp used last time." |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1403 (interactive |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1404 (let* ((reversep (>= (prefix-numeric-value current-prefix-arg) 0)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1405 (prompt |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1406 (concat (if reversep "Reverse " "") "Rmail search (regexp): ")) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1407 regexp) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1408 (if rmail-search-last-regexp |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1409 (setq prompt (concat prompt |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1410 "(default " |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1411 rmail-search-last-regexp |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1412 ") "))) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1413 (setq regexp (read-string prompt)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1414 (cond ((not (equal regexp "")) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1415 (setq rmail-search-last-regexp regexp)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1416 ((not rmail-search-last-regexp) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1417 (error "No previous Rmail search string"))) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1418 (list rmail-search-last-regexp |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1419 (prefix-numeric-value current-prefix-arg)))) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1420 (rmail-search regexp (- n))) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1421 |
270 | 1422 (defvar rmail-search-last-regexp nil) |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1423 (defun rmail-search (regexp &optional n) |
270 | 1424 "Show message containing next match for REGEXP. |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1425 Prefix argument gives repeat count; negative argument means search |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1426 backwards (through earlier messages). |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1427 Interactively, empty argument means use same regexp used last time." |
270 | 1428 (interactive |
1429 (let* ((reversep (< (prefix-numeric-value current-prefix-arg) 0)) | |
1430 (prompt | |
1431 (concat (if reversep "Reverse " "") "Rmail search (regexp): ")) | |
1432 regexp) | |
1433 (if rmail-search-last-regexp | |
1434 (setq prompt (concat prompt | |
1435 "(default " | |
1436 rmail-search-last-regexp | |
1437 ") "))) | |
1438 (setq regexp (read-string prompt)) | |
1439 (cond ((not (equal regexp "")) | |
1440 (setq rmail-search-last-regexp regexp)) | |
1441 ((not rmail-search-last-regexp) | |
1442 (error "No previous Rmail search string"))) | |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1443 (list rmail-search-last-regexp |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1444 (prefix-numeric-value current-prefix-arg)))) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1445 (or n (setq n 1)) |
270 | 1446 (message "%sRmail search for %s..." |
937
0f082d63bfd6
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
874
diff
changeset
|
1447 (if (< n 0) "Reverse " "") |
270 | 1448 regexp) |
1449 (rmail-maybe-set-message-counters) | |
1450 (let ((omin (point-min)) | |
1451 (omax (point-max)) | |
1452 (opoint (point)) | |
1453 win | |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1454 (reversep (< n 0)) |
270 | 1455 (msg rmail-current-message)) |
1456 (unwind-protect | |
1457 (progn | |
1458 (widen) | |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1459 (while (/= n 0) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1460 ;; Check messages one by one, advancing message number up or down |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1461 ;; but searching forward through each message. |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1462 (if reversep |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1463 (while (and (null win) (> msg 1)) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1464 (goto-char (rmail-msgbeg (setq msg (1- msg)))) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1465 (setq win (re-search-forward |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1466 regexp (rmail-msgend msg) t))) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1467 (while (and (null win) (< msg rmail-total-messages)) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1468 (goto-char (rmail-msgbeg (setq msg (1+ msg)))) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1469 (setq win (re-search-forward regexp (rmail-msgend msg) t)))) |
937
0f082d63bfd6
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
874
diff
changeset
|
1470 (setq n (+ n (if reversep 1 -1))))) |
270 | 1471 (if win |
1472 (progn | |
1473 ;; If this is a reverse search and we found a message, | |
1474 ;; search backward thru this message to position point. | |
1475 (if reversep | |
1476 (progn | |
1477 (goto-char (rmail-msgend msg)) | |
1478 (re-search-backward | |
1479 regexp (rmail-msgbeg msg) t))) | |
1480 (setq win (point)) | |
1481 (rmail-show-message msg) | |
1482 (message "%sRmail search for %s...done" | |
1483 (if reversep "Reverse " "") | |
1484 regexp) | |
1485 (goto-char win)) | |
1486 (goto-char opoint) | |
1487 (narrow-to-region omin omax) | |
1488 (ding) | |
1489 (message "Search failed: %s" regexp))))) | |
1490 | |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1491 (defun rmail-search-backwards (regexp &optional n) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1492 "Show message containing previous match for REGEXP. |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1493 Prefix argument gives repeat count; negative argument means search |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1494 forward (through later messages). |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1495 Interactively, empty argument means use same regexp used last time." |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1496 (interactive |
937
0f082d63bfd6
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
874
diff
changeset
|
1497 (let* ((reversep (>= (prefix-numeric-value current-prefix-arg) 0)) |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1498 (prompt |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1499 (concat (if reversep "Reverse " "") "Rmail search (regexp): ")) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1500 regexp) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1501 (if rmail-search-last-regexp |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1502 (setq prompt (concat prompt |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1503 "(default " |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1504 rmail-search-last-regexp |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1505 ") "))) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1506 (setq regexp (read-string prompt)) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1507 (cond ((not (equal regexp "")) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1508 (setq rmail-search-last-regexp regexp)) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1509 ((not rmail-search-last-regexp) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1510 (error "No previous Rmail search string"))) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1511 (list rmail-search-last-regexp |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1512 (prefix-numeric-value current-prefix-arg)))) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1513 (rmail-search regexp (- (or n -1)))) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1514 |
270 | 1515 ;; Show the first message which has the `unseen' attribute. |
1516 (defun rmail-first-unseen-message () | |
1360
9cb1a4b90b5c
Cleaned up rmail-first-unseen-message.
Joseph Arceneaux <jla@gnu.org>
parents:
1342
diff
changeset
|
1517 (rmail-maybe-set-message-counters) |
270 | 1518 (let ((current 1) |
1519 found) | |
1520 (save-restriction | |
1521 (widen) | |
1522 (while (and (not found) (< current rmail-total-messages)) | |
1523 (if (rmail-message-labels-p current ", ?\\(unseen\\),") | |
346 | 1524 (setq found current)) |
1525 (setq current (1+ current)))) | |
1342
776d4c59f256
* rmail.el (rmail-first-unseen-message): Don't show the message,
Joseph Arceneaux <jla@gnu.org>
parents:
1267
diff
changeset
|
1526 ;; Let the caller show the message. |
776d4c59f256
* rmail.el (rmail-first-unseen-message): Don't show the message,
Joseph Arceneaux <jla@gnu.org>
parents:
1267
diff
changeset
|
1527 ;; (if found |
776d4c59f256
* rmail.el (rmail-first-unseen-message): Don't show the message,
Joseph Arceneaux <jla@gnu.org>
parents:
1267
diff
changeset
|
1528 ;; (rmail-show-message found)) |
776d4c59f256
* rmail.el (rmail-first-unseen-message): Don't show the message,
Joseph Arceneaux <jla@gnu.org>
parents:
1267
diff
changeset
|
1529 found)) |
270 | 1530 |
1531 ;;;; *** Rmail Message Deletion Commands *** | |
1532 | |
1533 (defun rmail-message-deleted-p (n) | |
1534 (= (aref rmail-deleted-vector n) ?D)) | |
1535 | |
1536 (defun rmail-set-message-deleted-p (n state) | |
1537 (aset rmail-deleted-vector n (if state ?D ?\ ))) | |
1538 | |
1539 (defun rmail-delete-message () | |
1540 "Delete this message and stay on it." | |
1541 (interactive) | |
1542 (rmail-set-attribute "deleted" t)) | |
1543 | |
1544 (defun rmail-undelete-previous-message () | |
1545 "Back up to deleted message, select it, and undelete it." | |
1546 (interactive) | |
1547 (let ((msg rmail-current-message)) | |
1548 (while (and (> msg 0) | |
1549 (not (rmail-message-deleted-p msg))) | |
1550 (setq msg (1- msg))) | |
1551 (if (= msg 0) | |
1552 (error "No previous deleted message") | |
1553 (if (/= msg rmail-current-message) | |
1554 (rmail-show-message msg)) | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1555 (rmail-set-attribute "deleted" nil) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1556 (if (rmail-summary-exists) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1557 (save-excursion |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1558 (set-buffer rmail-summary-buffer) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1559 (rmail-summary-mark-undeleted msg))) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1560 (rmail-maybe-display-summary)))) |
270 | 1561 |
1562 (defun rmail-delete-forward (&optional backward) | |
1563 "Delete this message and move to next nondeleted one. | |
1564 Deleted messages stay in the file until the \\[rmail-expunge] command is given. | |
819
5bbabfcef929
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
814
diff
changeset
|
1565 With prefix argument, delete and move backward." |
270 | 1566 (interactive "P") |
1567 (rmail-set-attribute "deleted" t) | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1568 (let ((del-msg rmail-current-message)) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1569 (if (rmail-summary-exists) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1570 (save-excursion |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1571 (set-buffer rmail-summary-buffer) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1572 (rmail-summary-mark-deleted del-msg))) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1573 (rmail-next-undeleted-message (if backward -1 1)) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1574 (rmail-maybe-display-summary))) |
270 | 1575 |
1576 (defun rmail-delete-backward () | |
1577 "Delete this message and move to previous nondeleted one. | |
1578 Deleted messages stay in the file until the \\[rmail-expunge] command is given." | |
1579 (interactive) | |
1580 (rmail-delete-forward t)) | |
1581 | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1582 (defun rmail-only-expunge () |
270 | 1583 "Actually erase all deleted messages in the file." |
1584 (interactive) | |
1585 (message "Expunging deleted messages...") | |
1586 ;; Discard all undo records for this buffer. | |
1587 (or (eq buffer-undo-list t) | |
1588 (setq buffer-undo-list nil)) | |
1589 (rmail-maybe-set-message-counters) | |
1590 (let* ((omax (- (buffer-size) (point-max))) | |
1591 (omin (- (buffer-size) (point-min))) | |
1592 (opoint (if (and (> rmail-current-message 0) | |
1593 (= ?D (aref rmail-deleted-vector rmail-current-message))) | |
1594 0 (- (point) (point-min)))) | |
1595 (messages-head (cons (aref rmail-message-vector 0) nil)) | |
1596 (messages-tail messages-head) | |
1597 ;; Don't make any undo records for the expunging. | |
1598 (buffer-undo-list t) | |
1599 (win)) | |
1600 (unwind-protect | |
1601 (save-excursion | |
1602 (widen) | |
1603 (goto-char (point-min)) | |
1604 (let ((counter 0) | |
1605 (number 1) | |
1606 (total rmail-total-messages) | |
1607 (new-message-number rmail-current-message) | |
1608 (new-summary nil) | |
1609 (buffer-read-only nil) | |
1610 (messages rmail-message-vector) | |
1611 (deleted rmail-deleted-vector) | |
1612 (summary rmail-summary-vector)) | |
1613 (setq rmail-total-messages nil | |
1614 rmail-current-message nil | |
1615 rmail-message-vector nil | |
1616 rmail-deleted-vector nil | |
1617 rmail-summary-vector nil) | |
1618 (while (<= number total) | |
1619 (if (= (aref deleted number) ?D) | |
1620 (progn | |
1621 (delete-region | |
1622 (marker-position (aref messages number)) | |
1623 (marker-position (aref messages (1+ number)))) | |
1624 (move-marker (aref messages number) nil) | |
1625 (if (> new-message-number counter) | |
1626 (setq new-message-number (1- new-message-number)))) | |
1627 (setq counter (1+ counter)) | |
1628 (setq messages-tail | |
1629 (setcdr messages-tail | |
1630 (cons (aref messages number) nil))) | |
1631 (setq new-summary | |
1632 (cons (if (= counter number) (aref summary (1- number))) | |
1633 new-summary))) | |
1634 (if (zerop (% (setq number (1+ number)) 20)) | |
1635 (message "Expunging deleted messages...%d" number))) | |
1636 (setq messages-tail | |
1637 (setcdr messages-tail | |
1638 (cons (aref messages number) nil))) | |
1639 (setq rmail-current-message new-message-number | |
1640 rmail-total-messages counter | |
1641 rmail-message-vector (apply 'vector messages-head) | |
1642 rmail-deleted-vector (make-string (1+ counter) ?\ ) | |
1643 rmail-summary-vector (vconcat (nreverse new-summary)) | |
1644 win t))) | |
1645 (message "Expunging deleted messages...done") | |
1646 (if (not win) | |
1647 (narrow-to-region (- (buffer-size) omin) (- (buffer-size) omax))) | |
1648 (rmail-show-message | |
1649 (if (zerop rmail-current-message) 1 nil)) | |
1650 (forward-char opoint)))) | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1651 |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1652 (defun rmail-expunge () |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1653 "Erase deleted messages from Rmail file and summary buffer." |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1654 (interactive) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1655 (rmail-only-expunge) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1656 (if (rmail-summary-exists) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1657 (rmail-select-summary |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1658 (rmail-update-summary)))) |
270 | 1659 |
1660 ;;;; *** Rmail Mailing Commands *** | |
1661 | |
4108
e4fbcd480455
(rmail-mail-new-frame): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4071
diff
changeset
|
1662 (defun rmail-start-mail (&rest args) |
e4fbcd480455
(rmail-mail-new-frame): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4071
diff
changeset
|
1663 (if rmail-mail-new-frame |
4263
7c7fa71cfd6e
(rmail-last-rmail-file): Initialize to a file name.
Richard M. Stallman <rms@gnu.org>
parents:
4108
diff
changeset
|
1664 (prog1 |
4108
e4fbcd480455
(rmail-mail-new-frame): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4071
diff
changeset
|
1665 (apply 'mail-other-frame args) |
e4fbcd480455
(rmail-mail-new-frame): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4071
diff
changeset
|
1666 (modify-frame-parameters (selected-frame) |
e4fbcd480455
(rmail-mail-new-frame): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4071
diff
changeset
|
1667 '((dedicated . t)))) |
e4fbcd480455
(rmail-mail-new-frame): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4071
diff
changeset
|
1668 (apply 'mail-other-window args))) |
e4fbcd480455
(rmail-mail-new-frame): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4071
diff
changeset
|
1669 |
270 | 1670 (defun rmail-mail () |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1671 "Send mail in another window. |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1672 While composing the message, use \\[mail-yank-original] to yank the |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1673 original message into it." |
270 | 1674 (interactive) |
4108
e4fbcd480455
(rmail-mail-new-frame): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4071
diff
changeset
|
1675 (rmail-start-mail nil nil nil nil nil (current-buffer))) |
270 | 1676 |
1677 (defun rmail-continue () | |
1678 "Continue composing outgoing message previously being composed." | |
1679 (interactive) | |
4108
e4fbcd480455
(rmail-mail-new-frame): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4071
diff
changeset
|
1680 (rmail-start-mail t)) |
270 | 1681 |
1682 (defun rmail-reply (just-sender) | |
1683 "Reply to the current message. | |
1684 Normally include CC: to all other recipients of original message; | |
1685 prefix argument means ignore them. While composing the reply, | |
1686 use \\[mail-yank-original] to yank the original message into it." | |
1687 (interactive "P") | |
1688 (let (from reply-to cc subject date to message-id resent-reply-to) | |
1689 (save-excursion | |
1690 (save-restriction | |
1691 (widen) | |
1692 (goto-char (rmail-msgbeg rmail-current-message)) | |
1693 (forward-line 1) | |
1694 (if (= (following-char) ?0) | |
1695 (narrow-to-region | |
1696 (progn (forward-line 2) | |
1697 (point)) | |
1698 (progn (search-forward "\n\n" (rmail-msgend rmail-current-message) | |
1699 'move) | |
1700 (point))) | |
1701 (narrow-to-region (point) | |
1702 (progn (search-forward "\n*** EOOH ***\n") | |
1703 (beginning-of-line) (point)))) | |
1704 (setq resent-reply-to (mail-fetch-field "resent-reply-to" t) | |
1705 from (mail-fetch-field "from") | |
1706 reply-to (or resent-reply-to | |
1707 (mail-fetch-field "reply-to" nil t) | |
1708 from) | |
1709 cc (cond (just-sender nil) | |
1710 (resent-reply-to (mail-fetch-field "resent-cc" t)) | |
1711 (t (mail-fetch-field "cc" nil t))) | |
1712 subject (or (and resent-reply-to | |
1713 (mail-fetch-field "resent-subject" t)) | |
1714 (mail-fetch-field "subject")) | |
1715 date (cond (resent-reply-to | |
1716 (mail-fetch-field "resent-date" t)) | |
1717 ((mail-fetch-field "date"))) | |
1718 to (cond (resent-reply-to | |
1719 (mail-fetch-field "resent-to" t)) | |
1720 ((mail-fetch-field "to" nil t)) | |
1721 ;((mail-fetch-field "apparently-to")) ack gag barf | |
1722 (t "")) | |
1723 message-id (cond (resent-reply-to | |
1724 (mail-fetch-field "resent-message-id" t)) | |
1725 ((mail-fetch-field "message-id")))))) | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1726 (and (stringp subject) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1727 (or (string-match (concat "\\`" (regexp-quote rmail-reply-prefix)) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1728 subject) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1729 (setq subject (concat rmail-reply-prefix subject)))) |
4108
e4fbcd480455
(rmail-mail-new-frame): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4071
diff
changeset
|
1730 (rmail-start-mail nil |
270 | 1731 (mail-strip-quoted-names reply-to) |
1732 subject | |
1733 (rmail-make-in-reply-to-field from date message-id) | |
1734 (if just-sender | |
1735 nil | |
1736 (let* ((cc-list (rmail-dont-reply-to | |
1737 (mail-strip-quoted-names | |
1738 (if (null cc) to (concat to ", " cc)))))) | |
1739 (if (string= cc-list "") nil cc-list))) | |
1740 (current-buffer) | |
1741 (list (list '(lambda (buf msgnum) | |
1742 (save-excursion | |
1743 (set-buffer buf) | |
1744 (rmail-set-attribute "answered" t msgnum))) | |
1745 (current-buffer) rmail-current-message))))) | |
1746 | |
1747 (defun rmail-make-in-reply-to-field (from date message-id) | |
1748 (cond ((not from) | |
1749 (if message-id | |
1750 message-id | |
1751 nil)) | |
1752 (mail-use-rfc822 | |
1753 (require 'rfc822) | |
1754 (let ((tem (car (rfc822-addresses from)))) | |
1755 (if message-id | |
1756 (if (string-match | |
1757 (regexp-quote (if (string-match "@[^@]*\\'" tem) | |
1758 (substring tem 0 (match-beginning 0)) | |
1759 tem)) | |
1760 message-id) | |
1761 ;; Message-ID is sufficiently informative | |
1762 message-id | |
1763 (concat message-id " (" tem ")")) | |
1764 ;; Use prin1 to fake RFC822 quoting | |
1765 (let ((field (prin1-to-string tem))) | |
1766 (if date | |
1767 (concat field "'s message of " date) | |
1768 field))))) | |
1769 ((let* ((foo "[^][\000-\037\177-\377()<>@,;:\\\" ]+") | |
1770 (bar "[^][\000-\037\177-\377()<>@,;:\\\"]+")) | |
1771 ;; Can't use format because format loses on \000 (unix *^&%*^&%$!!) | |
1772 (or (string-match (concat "\\`[ \t]*\\(" bar | |
1773 "\\)\\(<" foo "@" foo ">\\)?[ \t]*\\'") | |
1774 ;; "Unix Loser <Foo@bar.edu>" => "Unix Loser" | |
1775 from) | |
1776 (string-match (concat "\\`[ \t]*<" foo "@" foo ">[ \t]*(\\(" | |
1777 bar "\\))[ \t]*\\'") | |
1778 ;; "<Bugs@bar.edu>" (Losing Unix) => "Losing Unix" | |
1779 from))) | |
1780 (let ((start (match-beginning 1)) | |
1781 (end (match-end 1))) | |
1782 ;; Trim whitespace which above regexp match allows | |
1783 (while (and (< start end) | |
1784 (memq (aref from start) '(?\t ?\ ))) | |
1785 (setq start (1+ start))) | |
1786 (while (and (< start end) | |
1787 (memq (aref from (1- end)) '(?\t ?\ ))) | |
1788 (setq end (1- end))) | |
1789 (let ((field (substring from start end))) | |
1790 (if date (setq field (concat "message from " field " on " date))) | |
1791 (if message-id | |
1792 ;; "<AA259@bar.edu> (message from Unix Loser on 1-Apr-89)" | |
1793 (concat message-id " (" field ")") | |
1794 field)))) | |
1795 (t | |
1796 ;; If we can't kludge it simply, do it correctly | |
1797 (let ((mail-use-rfc822 t)) | |
1798 (rmail-make-in-reply-to-field from date message-id))))) | |
1799 | |
2687
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
1800 (defun rmail-forward (resend) |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
1801 "Forward the current message to another user. |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
1802 With prefix argument, \"resend\" the message instead of forwarding it; |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
1803 see the documentation of `rmail-resend'." |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
1804 (interactive "P") |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
1805 (if resend |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
1806 (call-interactively 'rmail-resend) |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
1807 (let ((forward-buffer (current-buffer)) |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
1808 (subject (concat "[" |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
1809 (let ((from (or (mail-fetch-field "From") |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
1810 (mail-fetch-field ">From")))) |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
1811 (if from |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
1812 (concat (mail-strip-quoted-names from) ": ") |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
1813 "")) |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
1814 (or (mail-fetch-field "Subject") "") |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
1815 "]"))) |
4579
131a3edbd49f
(rmail-forward): Don't bind mail-signature, mail-setup-hook.
Richard M. Stallman <rms@gnu.org>
parents:
4457
diff
changeset
|
1816 ;; If only one window, use it for the mail buffer. |
131a3edbd49f
(rmail-forward): Don't bind mail-signature, mail-setup-hook.
Richard M. Stallman <rms@gnu.org>
parents:
4457
diff
changeset
|
1817 ;; Otherwise, use another window for the mail buffer |
131a3edbd49f
(rmail-forward): Don't bind mail-signature, mail-setup-hook.
Richard M. Stallman <rms@gnu.org>
parents:
4457
diff
changeset
|
1818 ;; so that the Rmail buffer remains visible |
131a3edbd49f
(rmail-forward): Don't bind mail-signature, mail-setup-hook.
Richard M. Stallman <rms@gnu.org>
parents:
4457
diff
changeset
|
1819 ;; and sending the mail will get back to it. |
131a3edbd49f
(rmail-forward): Don't bind mail-signature, mail-setup-hook.
Richard M. Stallman <rms@gnu.org>
parents:
4457
diff
changeset
|
1820 (if (funcall (if (and (not rmail-mail-new-frame) (one-window-p t)) |
131a3edbd49f
(rmail-forward): Don't bind mail-signature, mail-setup-hook.
Richard M. Stallman <rms@gnu.org>
parents:
4457
diff
changeset
|
1821 (function mail) |
131a3edbd49f
(rmail-forward): Don't bind mail-signature, mail-setup-hook.
Richard M. Stallman <rms@gnu.org>
parents:
4457
diff
changeset
|
1822 (function rmail-start-mail)) |
131a3edbd49f
(rmail-forward): Don't bind mail-signature, mail-setup-hook.
Richard M. Stallman <rms@gnu.org>
parents:
4457
diff
changeset
|
1823 nil nil subject nil nil nil |
131a3edbd49f
(rmail-forward): Don't bind mail-signature, mail-setup-hook.
Richard M. Stallman <rms@gnu.org>
parents:
4457
diff
changeset
|
1824 (list (list (function (lambda (buf msgnum) |
131a3edbd49f
(rmail-forward): Don't bind mail-signature, mail-setup-hook.
Richard M. Stallman <rms@gnu.org>
parents:
4457
diff
changeset
|
1825 (save-excursion |
131a3edbd49f
(rmail-forward): Don't bind mail-signature, mail-setup-hook.
Richard M. Stallman <rms@gnu.org>
parents:
4457
diff
changeset
|
1826 (set-buffer buf) |
131a3edbd49f
(rmail-forward): Don't bind mail-signature, mail-setup-hook.
Richard M. Stallman <rms@gnu.org>
parents:
4457
diff
changeset
|
1827 (rmail-set-attribute |
131a3edbd49f
(rmail-forward): Don't bind mail-signature, mail-setup-hook.
Richard M. Stallman <rms@gnu.org>
parents:
4457
diff
changeset
|
1828 "forwarded" t msgnum)))) |
131a3edbd49f
(rmail-forward): Don't bind mail-signature, mail-setup-hook.
Richard M. Stallman <rms@gnu.org>
parents:
4457
diff
changeset
|
1829 (current-buffer) |
131a3edbd49f
(rmail-forward): Don't bind mail-signature, mail-setup-hook.
Richard M. Stallman <rms@gnu.org>
parents:
4457
diff
changeset
|
1830 rmail-current-message))) |
4263
7c7fa71cfd6e
(rmail-last-rmail-file): Initialize to a file name.
Richard M. Stallman <rms@gnu.org>
parents:
4108
diff
changeset
|
1831 (save-excursion |
7c7fa71cfd6e
(rmail-last-rmail-file): Initialize to a file name.
Richard M. Stallman <rms@gnu.org>
parents:
4108
diff
changeset
|
1832 (goto-char (point-max)) |
7c7fa71cfd6e
(rmail-last-rmail-file): Initialize to a file name.
Richard M. Stallman <rms@gnu.org>
parents:
4108
diff
changeset
|
1833 (forward-line 1) |
4579
131a3edbd49f
(rmail-forward): Don't bind mail-signature, mail-setup-hook.
Richard M. Stallman <rms@gnu.org>
parents:
4457
diff
changeset
|
1834 (insert-buffer forward-buffer)))))) |
270 | 1835 |
1836 (defun rmail-resend (address &optional from comment mail-alias-file) | |
1837 "Resend current message to ADDRESSES. | |
1838 ADDRESSES should be a single address, a a string consisting of several | |
1839 addresses separated by commas, or a list of addresses. | |
1840 | |
1841 Optional FROM is the address to resend the message from, and | |
1842 defaults to the username of the person redistributing the message. | |
1843 Optional COMMENT is a string that will be inserted as a comment in the | |
1844 resent message. | |
1845 Optional ALIAS-FILE is alternate aliases file to be used by sendmail, | |
1846 typically for purposes of moderating a list." | |
1847 (interactive "sResend to: ") | |
3484
bd26679f0db5
(rmail-resend): Require sendmail and mailalias.
Richard M. Stallman <rms@gnu.org>
parents:
3462
diff
changeset
|
1848 (require 'sendmail) |
bd26679f0db5
(rmail-resend): Require sendmail and mailalias.
Richard M. Stallman <rms@gnu.org>
parents:
3462
diff
changeset
|
1849 (require 'mailalias) |
270 | 1850 (if (not from) (setq from (user-login-name))) |
1851 (let ((tembuf (generate-new-buffer " sendmail temp")) | |
1852 (mail-header-separator "") | |
1853 (case-fold-search nil) | |
1854 (mailbuf (current-buffer))) | |
1855 (unwind-protect | |
1856 (save-excursion | |
1857 ;;>> Copy message into temp buffer | |
1858 (set-buffer tembuf) | |
1859 (insert-buffer-substring mailbuf) | |
1860 (goto-char (point-min)) | |
4457
acb5dda629d7
(rmail-resend): Delete any Sender field.
Richard M. Stallman <rms@gnu.org>
parents:
4340
diff
changeset
|
1861 ;; Delete any Sender field, since that's not specifyable. |
acb5dda629d7
(rmail-resend): Delete any Sender field.
Richard M. Stallman <rms@gnu.org>
parents:
4340
diff
changeset
|
1862 (if (re-search-forward "^Sender:" nil t) |
acb5dda629d7
(rmail-resend): Delete any Sender field.
Richard M. Stallman <rms@gnu.org>
parents:
4340
diff
changeset
|
1863 (let (beg) |
acb5dda629d7
(rmail-resend): Delete any Sender field.
Richard M. Stallman <rms@gnu.org>
parents:
4340
diff
changeset
|
1864 (beginning-of-line) |
acb5dda629d7
(rmail-resend): Delete any Sender field.
Richard M. Stallman <rms@gnu.org>
parents:
4340
diff
changeset
|
1865 (setq beg (point)) |
acb5dda629d7
(rmail-resend): Delete any Sender field.
Richard M. Stallman <rms@gnu.org>
parents:
4340
diff
changeset
|
1866 (forward-line 1) |
acb5dda629d7
(rmail-resend): Delete any Sender field.
Richard M. Stallman <rms@gnu.org>
parents:
4340
diff
changeset
|
1867 (while (looking-at "[ \t]") |
acb5dda629d7
(rmail-resend): Delete any Sender field.
Richard M. Stallman <rms@gnu.org>
parents:
4340
diff
changeset
|
1868 (forward-line 1)) |
acb5dda629d7
(rmail-resend): Delete any Sender field.
Richard M. Stallman <rms@gnu.org>
parents:
4340
diff
changeset
|
1869 (delete-region beg (point)))) |
270 | 1870 ;;>> Insert resent-from: |
1871 (insert "Resent-From: " from "\n") | |
4020
a35cd533fda4
(rmail-resend): Use RFC 822 style date in Resent-Date: line.
Richard M. Stallman <rms@gnu.org>
parents:
4010
diff
changeset
|
1872 (insert "Resent-Date: " (mail-rfc822-date) "\n") |
270 | 1873 ;;>> Insert resent-to: and bcc if need be. |
1874 (let ((before (point))) | |
1875 (insert "Resent-To: " (if (stringp address) | |
1876 address | |
1877 (mapconcat 'identity address ",\n\t")) | |
1878 "\n") | |
1879 (expand-mail-aliases before (point))) | |
1880 ;;>> Set up comment, if any. | |
1881 (if (and (sequencep comment) (not (zerop (length comment)))) | |
1882 (let ((before (point)) | |
1883 after) | |
1884 (insert comment) | |
1885 (or (eolp) (insert "\n")) | |
1886 (setq after (point)) | |
1887 (goto-char before) | |
1888 (while (< (point) after) | |
1889 (insert "Resent-Comment: ") | |
1890 (forward-line 1)))) | |
1891 ;; Don't expand aliases in the destination fields | |
1892 ;; of the original message. | |
1893 (let (mail-aliases) | |
1894 (sendmail-send-it))) | |
2687
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
1895 (kill-buffer tembuf)) |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
1896 (rmail-set-attribute "resent" t rmail-current-message))) |
270 | 1897 |
1267
1e1a54ebb29b
(mail-unsent-separator): Add another alternative.
Richard M. Stallman <rms@gnu.org>
parents:
1165
diff
changeset
|
1898 (defvar mail-unsent-separator |
1370
c017b62c8073
(mail-unsent-separator): Allow "original message" as alternative.
Richard M. Stallman <rms@gnu.org>
parents:
1360
diff
changeset
|
1899 (concat "^ *---+ +Unsent message follows +---+ *$\\|" |
c017b62c8073
(mail-unsent-separator): Allow "original message" as alternative.
Richard M. Stallman <rms@gnu.org>
parents:
1360
diff
changeset
|
1900 "^ *---+ +Returned message +---+ *$\\|" |
1372
e839dc00fc2e
(mail-unsent-separator): Handle "Message text follows".
Richard M. Stallman <rms@gnu.org>
parents:
1370
diff
changeset
|
1901 "^ *---+ +Original message +---+ *$\\|" |
1757
7e85913523ef
(mail-unsent-separator): Add `-- begin message --'.
Richard M. Stallman <rms@gnu.org>
parents:
1704
diff
changeset
|
1902 "^ *--+ +begin message +--+ *$\\|" |
1372
e839dc00fc2e
(mail-unsent-separator): Handle "Message text follows".
Richard M. Stallman <rms@gnu.org>
parents:
1370
diff
changeset
|
1903 "^|? *---+ +Message text follows: +---+ *|?$")) |
270 | 1904 |
1905 (defun rmail-retry-failure () | |
1906 "Edit a mail message which is based on the contents of the current message. | |
1907 For a message rejected by the mail system, extract the interesting headers and | |
1908 the body of the original message; otherwise copy the current message." | |
1909 (interactive) | |
1910 (require 'mail-utils) | |
1911 (let (to subj irp2 cc orig-message) | |
1912 (save-excursion | |
1913 ;; Narrow down to just the quoted original message | |
1914 (rmail-beginning-of-message) | |
1370
c017b62c8073
(mail-unsent-separator): Allow "original message" as alternative.
Richard M. Stallman <rms@gnu.org>
parents:
1360
diff
changeset
|
1915 (let ((case-fold-search t)) |
c017b62c8073
(mail-unsent-separator): Allow "original message" as alternative.
Richard M. Stallman <rms@gnu.org>
parents:
1360
diff
changeset
|
1916 (or (re-search-forward mail-unsent-separator nil t) |
c017b62c8073
(mail-unsent-separator): Allow "original message" as alternative.
Richard M. Stallman <rms@gnu.org>
parents:
1360
diff
changeset
|
1917 (error "Cannot parse this as a failure message"))) |
270 | 1918 (save-restriction |
1919 (narrow-to-region (point) (point-max)) | |
1920 ;; Now mail-fetch-field will get from headers of the original message, | |
1921 ;; not from the headers of the rejection. | |
1922 (setq to (mail-fetch-field "To") | |
1923 subj (mail-fetch-field "Subject") | |
1924 irp2 (mail-fetch-field "In-reply-to") | |
1925 cc (mail-fetch-field "Cc")) | |
1926 ;; Get the entire text (not headers) of the original message. | |
1927 (setq orig-message | |
1928 (buffer-substring | |
1929 (progn (search-forward "\n\n") (point)) | |
1930 (point-max))))) | |
1931 ;; Start sending a new message; default header fields from the original. | |
1135
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1112
diff
changeset
|
1932 ;; Turn off the usual actions for initializing the message body |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1112
diff
changeset
|
1933 ;; because we want to get only the text from the failure message. |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1112
diff
changeset
|
1934 (let (mail-signature mail-setup-hook) |
4108
e4fbcd480455
(rmail-mail-new-frame): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4071
diff
changeset
|
1935 (if (rmail-start-mail nil to subj irp2 cc (current-buffer)) |
1135
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1112
diff
changeset
|
1936 ;; Insert original text as initial text of new draft message. |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1112
diff
changeset
|
1937 (progn |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1112
diff
changeset
|
1938 (goto-char (point-max)) |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1112
diff
changeset
|
1939 (insert orig-message) |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1112
diff
changeset
|
1940 (goto-char (point-min)) |
e33f6475229a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1112
diff
changeset
|
1941 (end-of-line)))))) |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1942 |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1943 (defun rmail-bury () |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1944 "Bury current Rmail buffer and its summary buffer." |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1945 (interactive) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1946 (let ((rmail-buffer (current-buffer))) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1947 (if (rmail-summary-exists) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1948 (let (window) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1949 (while (setq window (get-buffer-window rmail-summary-buffer)) |
3083
59b8b6ac30e0
(rmail-bury): Fix call to set-window-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
2700
diff
changeset
|
1950 (set-window-buffer window (other-buffer rmail-summary-buffer))) |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1951 (bury-buffer rmail-summary-buffer))) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1952 (switch-to-buffer (other-buffer (current-buffer))) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1953 (bury-buffer rmail-buffer))) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1954 |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1955 (defun rmail-summary-exists () |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1956 "Non-nil iff in an RMAIL buffer and an associated summary buffer exists. |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1957 Non-nil value returned is the summary buffer." |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1958 (and rmail-summary-buffer (buffer-name rmail-summary-buffer) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1959 rmail-summary-buffer)) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1960 |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1961 (defun rmail-summary-displayed () |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1962 "t iff in RMAIL buffer and an associated summary buffer is displayed." |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1963 (and rmail-summary-buffer (get-buffer-window rmail-summary-buffer))) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1964 |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1965 (defvar rmail-redisplay-summary nil |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1966 "*Non-nil means Rmail should show the summary when it changes. |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1967 This has an effect only if a summary buffer exists.") |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1968 |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1969 ;; Put the summary buffer back on the screen, if user wants that. |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1970 (defun rmail-maybe-display-summary () |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1971 (and rmail-summary-buffer (buffer-name rmail-summary-buffer) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1972 rmail-redisplay-summary |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1973 (display-buffer rmail-summary-buffer))) |
270 | 1974 |
1975 ;;;; *** Rmail Specify Inbox Files *** | |
1976 | |
1977 (autoload 'set-rmail-inbox-list "rmailmsc" | |
1978 "Set the inbox list of the current RMAIL file to FILE-NAME. | |
1979 This may be a list of file names separated by commas. | |
1980 If FILE-NAME is empty, remove any inbox list." | |
1981 t) | |
1982 | |
1983 ;;;; *** Rmail Commands for Labels *** | |
1984 | |
1985 (autoload 'rmail-add-label "rmailkwd" | |
1986 "Add LABEL to labels associated with current RMAIL message. | |
1987 Completion is performed over known labels when reading." | |
1988 t) | |
1989 | |
1990 (autoload 'rmail-kill-label "rmailkwd" | |
1991 "Remove LABEL from labels associated with current RMAIL message. | |
1992 Completion is performed over known labels when reading." | |
1993 t) | |
1994 | |
1995 (autoload 'rmail-next-labeled-message "rmailkwd" | |
1996 "Show next message with LABEL. Defaults to last label used. | |
1997 With prefix argument N moves forward N messages with this label." | |
1998 t) | |
1999 | |
2000 (autoload 'rmail-previous-labeled-message "rmailkwd" | |
2001 "Show previous message with LABEL. Defaults to last label used. | |
2002 With prefix argument N moves backward N messages with this label." | |
2003 t) | |
2004 | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2005 (autoload 'rmail-read-label "rmailkwd" |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2006 "PROMPT and read with completion an Rmail message label." |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2007 t) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2008 |
270 | 2009 ;;;; *** Rmail Edit Mode *** |
2010 | |
2011 (autoload 'rmail-edit-current-message "rmailedit" | |
2012 "Edit the contents of the current message" | |
2013 t) | |
3877
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
2014 |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
2015 ;;;; *** Rmail Sorting *** |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
2016 |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
2017 (autoload 'rmail-sort-by-date "rmailsort" |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
2018 "Sort messages of current Rmail file by date. |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
2019 If prefix argument REVERSE is non-nil, sort them in reverse order." t) |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
2020 |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
2021 (autoload 'rmail-sort-by-subject "rmailsort" |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
2022 "Sort messages of current Rmail file by subject. |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
2023 If prefix argument REVERSE is non-nil, sort them in reverse order." t) |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
2024 |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
2025 (autoload 'rmail-sort-by-author "rmailsort" |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
2026 "Sort messages of current Rmail file by author. |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
2027 If prefix argument REVERSE is non-nil, sort them in reverse order." t) |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
2028 |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
2029 (autoload 'rmail-sort-by-recipient "rmailsort" |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
2030 "Sort messages of current Rmail file by recipient. |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
2031 If prefix argument REVERSE is non-nil, sort them in reverse order." t) |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
2032 |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
2033 (autoload 'rmail-sort-by-correspondent "rmailsort" |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
2034 "Sort messages of current Rmail file by other correspondent. |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
2035 If prefix argument REVERSE is non-nil, sort them in reverse order." t) |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
2036 |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
2037 (autoload 'rmail-sort-by-lines "rmailsort" |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
2038 "Sort messages of current Rmail file by number of lines. |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
2039 If prefix argument REVERSE is non-nil, sort them in reverse order." t) |
270 | 2040 |
2041 ;;;; *** Rmail Summary Mode *** | |
2042 | |
2043 (autoload 'rmail-summary "rmailsum" | |
2044 "Display a summary of all messages, one line per message." | |
2045 t) | |
2046 | |
2047 (autoload 'rmail-summary-by-labels "rmailsum" | |
2048 "Display a summary of all messages with one or more LABELS. | |
2049 LABELS should be a string containing the desired labels, separated by commas." | |
2050 t) | |
2051 | |
2052 (autoload 'rmail-summary-by-recipients "rmailsum" | |
2053 "Display a summary of all messages with the given RECIPIENTS. | |
2054 Normally checks the To, From and Cc fields of headers; but if PRIMARY-ONLY | |
2055 is non-nil (prefix arg given), only look in the To and From fields. | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2056 RECIPIENTS is a string of regexps separated by commas." |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2057 t) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2058 |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2059 (autoload 'rmail-summary-by-regexp "rmailsum" |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2060 "Display a summary of all messages according to regexp REGEXP. |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2061 If the regular expression is found in the header of the message |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2062 \(including in the date and other lines, as well as the subject line), |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2063 Emacs will list the header line in the RMAIL-summary." |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2064 t) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2065 |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2066 (autoload 'rmail-summary-by-topic "rmailsum" |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2067 "Display a summary of all messages with the given SUBJECT. |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2068 Normally checks the Subject field of headers; |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2069 but if WHOLE-MESSAGE is non-nil (prefix arg given), |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2070 look in the whole message. |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2071 SUBJECT is a string of regexps separated by commas." |
270 | 2072 t) |
2073 | |
2074 ;;;; *** Rmail output messages to files *** | |
2075 | |
2076 (autoload 'rmail-output-to-rmail-file "rmailout" | |
2077 "Append the current message to an Rmail file named FILE-NAME. | |
2078 If the file does not exist, ask if it should be created. | |
2079 If file is being visited, the message is appended to the Emacs | |
2080 buffer visiting that file." | |
2081 t) | |
2082 | |
2083 (autoload 'rmail-output "rmailout" | |
2084 "Append this message to Unix mail file named FILE-NAME." | |
2085 t) | |
2086 | |
2087 ;;;; *** Rmail undigestification *** | |
2088 | |
2089 (autoload 'undigestify-rmail-message "undigest" | |
2090 "Break up a digest message into its constituent messages. | |
2091 Leaves original message, deleted, before the undigestified messages." | |
2092 t) | |
584 | 2093 |
2094 (provide 'rmail) | |
2095 | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
621
diff
changeset
|
2096 ;;; rmail.el ends here |