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