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