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