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