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