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