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