38412
|
1 ;;; rmail.el --- main code of "RMAIL" mail reader for Emacs
|
658
|
2
|
64754
|
3 ;; Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995, 1996, 1997, 1998,
|
79712
|
4 ;; 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
|
846
|
5
|
807
|
6 ;; Maintainer: FSF
|
814
|
7 ;; Keywords: mail
|
807
|
8
|
270
|
9 ;; This file is part of GNU Emacs.
|
|
10
|
|
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
12 ;; it under the terms of the GNU General Public License as published by
|
78232
|
13 ;; the Free Software Foundation; either version 3, or (at your option)
|
270
|
14 ;; any later version.
|
|
15
|
|
16 ;; GNU Emacs is distributed in the hope that it will be useful,
|
|
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
19 ;; GNU General Public License for more details.
|
|
20
|
|
21 ;; You should have received a copy of the GNU General Public License
|
14169
|
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
|
64085
|
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
24 ;; Boston, MA 02110-1301, USA.
|
270
|
25
|
38412
|
26 ;;; Commentary:
|
|
27
|
807
|
28 ;;; Code:
|
270
|
29
|
|
30 ;; Souped up by shane@mit-ajax based on ideas of rlk@athena.mit.edu
|
|
31 ;; New features include attribute and keyword support, message
|
|
32 ;; selection by dispatch table, summary by attributes and keywords,
|
|
33 ;; expunging by dispatch table, sticky options for file commands.
|
|
34
|
2076
|
35 ;; Extended by Bob Weiner of Motorola
|
|
36 ;; New features include: rmail and rmail-summary buffers remain
|
|
37 ;; synchronized and key bindings basically operate the same way in both
|
|
38 ;; buffers, summary by topic or by regular expression, rmail-reply-prefix
|
|
39 ;; variable, and a bury rmail buffer (wipe) command.
|
|
40 ;;
|
|
41
|
270
|
42 (require 'mail-utils)
|
39298
|
43 (eval-when-compile (require 'mule-util)) ; for detect-coding-with-priority
|
2076
|
44
|
65210
65cc9b3bbebd
(deleted-head, font-lock-fontified, mail-abbrev-syntax-table, mail-abbrevs,
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
45 (defvar deleted-head)
|
65cc9b3bbebd
(deleted-head, font-lock-fontified, mail-abbrev-syntax-table, mail-abbrevs,
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
46 (defvar font-lock-fontified)
|
65cc9b3bbebd
(deleted-head, font-lock-fontified, mail-abbrev-syntax-table, mail-abbrevs,
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
47 (defvar mail-abbrev-syntax-table)
|
65cc9b3bbebd
(deleted-head, font-lock-fontified, mail-abbrev-syntax-table, mail-abbrevs,
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
48 (defvar mail-abbrevs)
|
65cc9b3bbebd
(deleted-head, font-lock-fontified, mail-abbrev-syntax-table, mail-abbrevs,
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
49 (defvar messages-head)
|
65cc9b3bbebd
(deleted-head, font-lock-fontified, mail-abbrev-syntax-table, mail-abbrevs,
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
50 (defvar rmail-use-spam-filter)
|
65cc9b3bbebd
(deleted-head, font-lock-fontified, mail-abbrev-syntax-table, mail-abbrevs,
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
51 (defvar rsf-beep)
|
65cc9b3bbebd
(deleted-head, font-lock-fontified, mail-abbrev-syntax-table, mail-abbrevs,
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
52 (defvar rsf-sleep-after-message)
|
65cc9b3bbebd
(deleted-head, font-lock-fontified, mail-abbrev-syntax-table, mail-abbrevs,
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
53 (defvar total-messages)
|
69676
|
54 (defvar tool-bar-map)
|
65210
65cc9b3bbebd
(deleted-head, font-lock-fontified, mail-abbrev-syntax-table, mail-abbrevs,
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
55
|
2076
|
56 ; These variables now declared in paths.el.
|
270
|
57 ;(defvar rmail-spool-directory "/usr/spool/mail/"
|
|
58 ; "This is the name of the directory used by the system mailer for\n\
|
16431
|
59 ;delivering new mail. Its name should end with a slash.")
|
270
|
60 ;(defvar rmail-file-name
|
|
61 ; (expand-file-name "~/RMAIL")
|
|
62 ; "")
|
|
63
|
17630
|
64 (defgroup rmail nil
|
|
65 "Mail reader for Emacs."
|
|
66 :group 'mail)
|
|
67
|
|
68 (defgroup rmail-retrieve nil
|
|
69 "Rmail retrieval options."
|
|
70 :prefix "rmail-"
|
|
71 :group 'rmail)
|
|
72
|
|
73 (defgroup rmail-files nil
|
|
74 "Rmail files."
|
|
75 :prefix "rmail-"
|
|
76 :group 'rmail)
|
|
77
|
|
78 (defgroup rmail-headers nil
|
|
79 "Rmail header options."
|
|
80 :prefix "rmail-"
|
|
81 :group 'rmail)
|
|
82
|
|
83 (defgroup rmail-reply nil
|
|
84 "Rmail reply options."
|
|
85 :prefix "rmail-"
|
|
86 :group 'rmail)
|
|
87
|
|
88 (defgroup rmail-summary nil
|
|
89 "Rmail summary options."
|
|
90 :prefix "rmail-"
|
|
91 :prefix "rmail-summary-"
|
|
92 :group 'rmail)
|
|
93
|
|
94 (defgroup rmail-output nil
|
|
95 "Output message to a file."
|
|
96 :prefix "rmail-output-"
|
|
97 :prefix "rmail-"
|
|
98 :group 'rmail)
|
|
99
|
37587
|
100 (defgroup rmail-edit nil
|
|
101 "Rmail editing."
|
|
102 :prefix "rmail-edit-"
|
|
103 :group 'rmail)
|
|
104
|
59561
|
105 (defgroup rmail-obsolete nil
|
|
106 "Rmail obsolete customization variables."
|
|
107 :group 'rmail)
|
17630
|
108
|
21435
|
109 (defcustom rmail-movemail-program nil
|
60692
|
110 "If non-nil, the file name of the `movemail' program."
|
21435
|
111 :group 'rmail-retrieve
|
23266
|
112 :type '(choice (const nil) string))
|
8234
|
113
|
17630
|
114 (defcustom rmail-pop-password nil
|
60692
|
115 "*Password to use when reading mail from POP server.
|
|
116 Please use `rmail-remote-password' instead."
|
59561
|
117 :type '(choice (string :tag "Password")
|
|
118 (const :tag "Not Required" nil))
|
|
119 :group 'rmail-obsolete)
|
|
120
|
|
121 (defcustom rmail-pop-password-required nil
|
64754
|
122 "*Non-nil if a password is required when reading mail from a POP server.
|
60692
|
123 Please use rmail-remote-password-required instead."
|
59561
|
124 :type 'boolean
|
|
125 :group 'rmail-obsolete)
|
|
126
|
|
127 (defcustom rmail-remote-password nil
|
60692
|
128 "*Password to use when reading mail from a remote server.
|
|
129 This setting is ignored for mailboxes whose URL already contains a password."
|
17630
|
130 :type '(choice (string :tag "Password")
|
|
131 (const :tag "Not Required" nil))
|
59561
|
132 :set-after '(rmail-pop-password)
|
|
133 :set #'(lambda (symbol value)
|
59996
|
134 (set-default symbol
|
59561
|
135 (if (and (not value)
|
|
136 (boundp 'rmail-pop-password)
|
|
137 rmail-pop-password)
|
|
138 rmail-pop-password
|
|
139 value))
|
|
140 (setq rmail-pop-password nil))
|
|
141 :group 'rmail-retrieve
|
59996
|
142 :version "22.1")
|
59561
|
143
|
|
144 (defcustom rmail-remote-password-required nil
|
|
145 "*Non-nil if a password is required when reading mail from a remote server."
|
17630
|
146 :type 'boolean
|
59561
|
147 :set-after '(rmail-pop-password-required)
|
|
148 :set #'(lambda (symbol value)
|
59996
|
149 (set-default symbol
|
59561
|
150 (if (and (not value)
|
|
151 (boundp 'rmail-pop-password-required)
|
|
152 rmail-pop-password-required)
|
|
153 rmail-pop-password-required
|
|
154 value))
|
|
155 (setq rmail-pop-password-required nil))
|
|
156 :group 'rmail-retrieve
|
59996
|
157 :version "22.1")
|
15085
|
158
|
21395
|
159 (defcustom rmail-movemail-flags nil
|
21398
|
160 "*List of flags to pass to movemail.
|
|
161 Most commonly used to specify `-g' to enable GSS-API authentication
|
|
162 or `-k' to enable Kerberos authentication."
|
21512
|
163 :type '(repeat string)
|
21669
|
164 :group 'rmail-retrieve
|
|
165 :version "20.3")
|
21395
|
166
|
59561
|
167 (defvar rmail-remote-password-error "invalid usercode or password\\|
|
|
168 unknown user name or bad password\\|Authentication failed\\|MU_ERR_AUTH_FAILURE"
|
|
169 "Regular expression matching incorrect-password POP or IMAP server error
|
|
170 messages.
|
18989
|
171 If you get an incorrect-password error that this expression does not match,
|
|
172 please report it with \\[report-emacs-bug].")
|
|
173
|
59561
|
174 (defvar rmail-encoded-remote-password nil)
|
22912
|
175
|
17630
|
176 (defcustom rmail-preserve-inbox nil
|
60692
|
177 "*Non-nil means leave incoming mail in the user's inbox--don't delete it."
|
17630
|
178 :type 'boolean
|
|
179 :group 'rmail-retrieve)
|
16908
|
180
|
59561
|
181 (defcustom rmail-movemail-search-path nil
|
|
182 "*List of directories to search for movemail (in addition to `exec-path')."
|
|
183 :group 'rmail-retrieve
|
|
184 :type '(repeat (directory)))
|
|
185
|
|
186 (defun rmail-probe (prog)
|
60692
|
187 "Determine what flavor of movemail PROG is.
|
|
188 We do this by executing it with `--version' and analyzing its output."
|
59561
|
189 (with-temp-buffer
|
|
190 (let ((tbuf (current-buffer)))
|
|
191 (buffer-disable-undo tbuf)
|
|
192 (call-process prog nil tbuf nil "--version")
|
|
193 (if (not (buffer-modified-p tbuf))
|
|
194 ;; Should not happen...
|
|
195 nil
|
|
196 (goto-char (point-min))
|
|
197 (cond
|
|
198 ((looking-at ".*movemail: invalid option")
|
|
199 'emacs) ;; Possibly...
|
|
200 ((looking-at "movemail (GNU Mailutils .*)")
|
|
201 'mailutils)
|
|
202 (t
|
|
203 ;; FIXME:
|
|
204 'emacs))))))
|
|
205
|
|
206 (defun rmail-autodetect ()
|
60692
|
207 "Determine and return the file name of the `movemail' program.
|
|
208 If `rmail-movemail-program' is non-nil, use it.
|
|
209 Otherwise, look for `movemail' in the directories in
|
|
210 `rmail-movemail-search-path', those in `exec-path', and `exec-directory'."
|
59561
|
211 (if rmail-movemail-program
|
|
212 (rmail-probe rmail-movemail-program)
|
|
213 (catch 'scan
|
|
214 (dolist (dir (append rmail-movemail-search-path exec-path
|
|
215 (list exec-directory)))
|
|
216 (when (and dir (file-accessible-directory-p dir))
|
|
217 (let ((progname (expand-file-name "movemail" dir)))
|
|
218 (when (and (not (file-directory-p progname))
|
|
219 (file-executable-p progname))
|
|
220 (let ((x (rmail-probe progname)))
|
|
221 (when x
|
|
222 (setq rmail-movemail-program progname)
|
|
223 (throw 'scan x))))))))))
|
|
224
|
|
225 (defvar rmail-movemail-variant-in-use nil
|
|
226 "The movemail variant currently in use. Known variants are:
|
|
227
|
|
228 `emacs' Means any implementation, compatible with the native Emacs one.
|
|
229 This is the default;
|
|
230 `mailutils' Means GNU mailutils implementation, capable of handling full
|
77993
|
231 mail URLs as the source mailbox.")
|
59561
|
232
|
|
233 ;;;###autoload
|
|
234 (defun rmail-movemail-variant-p (&rest variants)
|
|
235 "Return t if the current movemail variant is any of VARIANTS.
|
|
236 Currently known variants are 'emacs and 'mailutils."
|
|
237 (when (not rmail-movemail-variant-in-use)
|
|
238 ;; Autodetect
|
|
239 (setq rmail-movemail-variant-in-use (rmail-autodetect)))
|
|
240 (not (null (member rmail-movemail-variant-in-use variants))))
|
|
241
|
78605
58298f7fd671
(rmail-movemail-variant-p): Call on load to set movemail related variables.
Glenn Morris <rgm@gnu.org>
diff
changeset
|
242 ;; Call for effect, to set rmail-movemail-program (if not set by the
|
58298f7fd671
(rmail-movemail-variant-p): Call on load to set movemail related variables.
Glenn Morris <rgm@gnu.org>
diff
changeset
|
243 ;; user), and rmail-movemail-variant-in-use. Used by various functions.
|
78606
|
244 ;; I'm not sure if M-x rmail is the only entry point to this package.
|
|
245 ;; If so, this can be moved there.
|
78605
58298f7fd671
(rmail-movemail-variant-p): Call on load to set movemail related variables.
Glenn Morris <rgm@gnu.org>
diff
changeset
|
246 (rmail-movemail-variant-p)
|
58298f7fd671
(rmail-movemail-variant-p): Call on load to set movemail related variables.
Glenn Morris <rgm@gnu.org>
diff
changeset
|
247
|
270
|
248 ;;;###autoload
|
17630
|
249 (defcustom rmail-dont-reply-to-names nil "\
|
44025
5766d225ccf3
(rmail-dont-reply-to-names): Modify the documentation to make it email
Paul Reilly <pmr@pajato.com>
diff
changeset
|
250 *A regexp specifying addresses to prune from a reply message.
|
5766d225ccf3
(rmail-dont-reply-to-names): Modify the documentation to make it email
Paul Reilly <pmr@pajato.com>
diff
changeset
|
251 A value of nil means exclude your own email address as an address
|
22840
|
252 plus whatever is specified by `rmail-default-dont-reply-to-names'."
|
17630
|
253 :type '(choice regexp (const :tag "Your Name" nil))
|
|
254 :group 'rmail-reply)
|
270
|
255
|
|
256 ;;;###autoload
|
53967
|
257 (defvar rmail-default-dont-reply-to-names "\\`info-" "\
|
|
258 A regular expression specifying part of the default value of the
|
|
259 variable `rmail-dont-reply-to-names', for when the user does not set
|
270
|
260 `rmail-dont-reply-to-names' explicitly. (The other part of the default
|
44025
5766d225ccf3
(rmail-dont-reply-to-names): Modify the documentation to make it email
Paul Reilly <pmr@pajato.com>
diff
changeset
|
261 value is the user's email address and name.)
|
3931
|
262 It is useful to set this variable in the site customization file.")
|
270
|
263
|
|
264 ;;;###autoload
|
35675
|
265 (defcustom rmail-ignored-headers
|
61598
|
266 (concat "^via:\\|^mail-from:\\|^origin:\\|^references:\\|^sender:"
|
35675
|
267 "\\|^status:\\|^received:\\|^x400-originator:\\|^x400-recipients:"
|
|
268 "\\|^x400-received:\\|^x400-mts-identifier:\\|^x400-content-type:"
|
|
269 "\\|^\\(resent-\\|\\)message-id:\\|^summary-line:\\|^resent-date:"
|
51003
|
270 "\\|^nntp-posting-host:\\|^path:\\|^x-char.*:\\|^x-face:\\|^face:"
|
64831
40c02e6cdccd
(rmail-ignored-headers): Don't hide mime-version: and content-type: headers.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
271 "\\|^x-mailer:\\|^delivered-to:\\|^lines:"
|
35675
|
272 "\\|^content-transfer-encoding:\\|^x-coding-system:"
|
|
273 "\\|^return-path:\\|^errors-to:\\|^return-receipt-to:"
|
|
274 "\\|^precedence:\\|^list-help:\\|^list-post:\\|^list-subscribe:"
|
|
275 "\\|^list-id:\\|^list-unsubscribe:\\|^list-archive:"
|
64972
|
276 "\\|^content-length:\\|^nntp-posting-date:\\|^user-agent"
|
|
277 "\\|^importance:\\|^envelope-to:\\|^delivery-date\\|^openpgp:"
|
69386
|
278 "\\|^mbox-line:\\|^cancel-lock:\\|^DomainKey-Signature:"
|
64972
|
279 "\\|^resent-face:\\|^resent-x.*:\\|^resent-organization:\\|^resent-openpgp:"
|
|
280
|
|
281 "\\|^x-.*:")
|
24562
|
282 "*Regexp to match header fields that Rmail should normally hide.
|
64972
|
283 \(See also `rmail-nonignored-headers', which overrides this regexp.)
|
|
284 This variable is used for reformatting the message header,
|
|
285 which normally happens once for each message,
|
|
286 when you view the message for the first time in Rmail.
|
|
287 To make a change in this variable take effect
|
|
288 for a message that you have already viewed,
|
|
289 go to that message and type \\[rmail-toggle-header] twice."
|
|
290 :type 'regexp
|
|
291 :group 'rmail-headers)
|
|
292
|
|
293 (defcustom rmail-nonignored-headers "^x-spam-status:"
|
|
294 "*Regexp to match X header fields that Rmail should show.
|
|
295 This regexp overrides `rmail-ignored-headers'; if both this regexp
|
|
296 and that one match a certain header field, Rmail shows the field.
|
|
297
|
24562
|
298 This variable is used for reformatting the message header,
|
|
299 which normally happens once for each message,
|
|
300 when you view the message for the first time in Rmail.
|
|
301 To make a change in this variable take effect
|
|
302 for a message that you have already viewed,
|
|
303 go to that message and type \\[rmail-toggle-header] twice."
|
17630
|
304 :type 'regexp
|
|
305 :group 'rmail-headers)
|
270
|
306
|
|
307 ;;;###autoload
|
17630
|
308 (defcustom rmail-displayed-headers nil
|
11452
|
309 "*Regexp to match Header fields that Rmail should display.
|
|
310 If nil, display all header fields except those matched by
|
17630
|
311 `rmail-ignored-headers'."
|
|
312 :type '(choice regexp (const :tag "All"))
|
|
313 :group 'rmail-headers)
|
11452
|
314
|
|
315 ;;;###autoload
|
36568
|
316 (defcustom rmail-retry-ignored-headers "^x-authentication-warning:" "\
|
17630
|
317 *Headers that should be stripped when retrying a failed message."
|
|
318 :type '(choice regexp (const nil :tag "None"))
|
|
319 :group 'rmail-headers)
|
9010
9d48b6752dbf
(rmail-retry-failure): Copy the whole block of headers from the message
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
320
|
9d48b6752dbf
(rmail-retry-failure): Copy the whole block of headers from the message
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
321 ;;;###autoload
|
17630
|
322 (defcustom rmail-highlighted-headers "^From:\\|^Subject:" "\
|
8383
|
323 *Regexp to match Header fields that Rmail should normally highlight.
|
8384
|
324 A value of nil means don't highlight.
|
17630
|
325 See also `rmail-highlight-face'."
|
|
326 :type 'regexp
|
|
327 :group 'rmail-headers)
|
7051
|
328
|
69386
|
329 (defface rmail-highlight
|
|
330 '((t :default highlight))
|
|
331 "Face to use for highlighting the most important header fields."
|
|
332 :group 'rmail-headers
|
|
333 :version "22.1")
|
|
334
|
7051
|
335 ;;;###autoload
|
69386
|
336 (defcustom rmail-highlight-face 'rmail-highlight "\
|
17630
|
337 *Face used by Rmail for highlighting headers."
|
|
338 :type '(choice (const :tag "Default" nil)
|
|
339 face)
|
|
340 :group 'rmail-headers)
|
8383
|
341
|
|
342 ;;;###autoload
|
17630
|
343 (defcustom rmail-delete-after-output nil "\
|
|
344 *Non-nil means automatically delete a message that is copied to a file."
|
|
345 :type 'boolean
|
|
346 :group 'rmail-files)
|
270
|
347
|
|
348 ;;;###autoload
|
17630
|
349 (defcustom rmail-primary-inbox-list nil "\
|
2423
|
350 *List of files which are inboxes for user's primary mail file `~/RMAIL'.
|
50864
5f3b64308e0c
(rmail-primary-inbox-list): Don't quote nil and t in docstrings.
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
351 nil means the default, which is (\"/usr/spool/mail/$USER\")
|
2423
|
352 \(the name varies depending on the operating system,
|
17630
|
353 and the value of the environment variable MAIL overrides it)."
|
17821
|
354 ;; Don't use backquote here, because we don't want to need it
|
|
355 ;; at load time.
|
|
356 :type (list 'choice '(const :tag "Default" nil)
|
23185
|
357 (list 'repeat ':value (list (or (getenv "MAIL")
|
|
358 (concat "/var/spool/mail/"
|
|
359 (getenv "USER"))))
|
17821
|
360 'file))
|
17630
|
361 :group 'rmail-retrieve
|
|
362 :group 'rmail-files)
|
270
|
363
|
4108
|
364 ;;;###autoload
|
17630
|
365 (defcustom rmail-mail-new-frame nil
|
55114
|
366 "*Non-nil means Rmail makes a new frame for composing outgoing mail.
|
|
367 This is handy if you want to preserve the window configuration of
|
|
368 the frame where you have the RMAIL buffer displayed."
|
17630
|
369 :type 'boolean
|
|
370 :group 'rmail-reply)
|
4108
|
371
|
4844
|
372 ;;;###autoload
|
17630
|
373 (defcustom rmail-secondary-file-directory "~/"
|
|
374 "*Directory for additional secondary Rmail files."
|
|
375 :type 'directory
|
|
376 :group 'rmail-files)
|
6408
|
377 ;;;###autoload
|
17630
|
378 (defcustom rmail-secondary-file-regexp "\\.xmail$"
|
|
379 "*Regexp for which files are secondary Rmail files."
|
|
380 :type 'regexp
|
|
381 :group 'rmail-files)
|
6408
|
382
|
13477
|
383 ;;;###autoload
|
33792
|
384 (defcustom rmail-confirm-expunge 'y-or-n-p
|
28290
|
385 "*Whether and how to ask for confirmation before expunging deleted messages."
|
|
386 :type '(choice (const :tag "No confirmation" nil)
|
|
387 (const :tag "Confirm with y-or-n-p" y-or-n-p)
|
|
388 (const :tag "Confirm with yes-or-no-p" yes-or-no-p))
|
|
389 :version "21.1"
|
|
390 :group 'rmail-files)
|
|
391
|
|
392 ;;;###autoload
|
13477
|
393 (defvar rmail-mode-hook nil
|
|
394 "List of functions to call when Rmail is invoked.")
|
|
395
|
|
396 ;;;###autoload
|
|
397 (defvar rmail-get-new-mail-hook nil
|
|
398 "List of functions to call when Rmail has retrieved new mail.")
|
|
399
|
|
400 ;;;###autoload
|
28910
|
401 (defcustom rmail-show-message-hook nil
|
|
402 "List of functions to call when Rmail displays a message."
|
|
403 :type 'hook
|
45360
|
404 :options '(goto-address)
|
28910
|
405 :group 'rmail)
|
13477
|
406
|
|
407 ;;;###autoload
|
27944
|
408 (defvar rmail-quit-hook nil
|
|
409 "List of functions to call when quitting out of Rmail.")
|
|
410
|
|
411 ;;;###autoload
|
13477
|
412 (defvar rmail-delete-message-hook nil
|
|
413 "List of functions to call when Rmail deletes a message.
|
|
414 When the hooks are called, the message has been marked deleted but is
|
|
415 still the current message in the Rmail buffer.")
|
|
416
|
2076
|
417 ;; These may be altered by site-init.el to match the format of mmdf files
|
|
418 ;; delimiting used on a given host (delim1 and delim2 from the config
|
|
419 ;; files).
|
270
|
420
|
18091
|
421 (defvar rmail-mmdf-delim1 "^\001\001\001\001\n"
|
49082
|
422 "Regexp marking the start of an mmdf message.")
|
18091
|
423 (defvar rmail-mmdf-delim2 "^\001\001\001\001\n"
|
49082
|
424 "Regexp marking the end of an mmdf message.")
|
270
|
425
|
21435
|
426 (defcustom rmail-message-filter nil
|
15832
|
427 "If non-nil, a filter function for new messages in RMAIL.
|
|
428 Called with region narrowed to the message, including headers,
|
21435
|
429 before obeying `rmail-ignored-headers'."
|
|
430 :group 'rmail-headers
|
76121
|
431 :type '(choice (const nil) function))
|
270
|
432
|
29160
|
433 (defcustom rmail-automatic-folder-directives nil
|
|
434 "List of directives specifying where to put a message.
|
|
435 Each element of the list is of the form:
|
|
436
|
|
437 (FOLDERNAME FIELD REGEXP [ FIELD REGEXP ] ... )
|
|
438
|
|
439 Where FOLDERNAME is the name of a BABYL format folder to put the
|
|
440 message. If any of the field regexp's are nil, then it is ignored.
|
|
441
|
|
442 If FOLDERNAME is \"/dev/null\", it is deleted.
|
|
443 If FOLDERNAME is nil then it is deleted, and skipped.
|
|
444
|
|
445 FIELD is the plain text name of a field in the message, such as
|
|
446 \"subject\" or \"from\". A FIELD of \"to\" will automatically include
|
|
447 all text from the \"cc\" field as well.
|
|
448
|
|
449 REGEXP is an expression to match in the preceeding specified FIELD.
|
|
450 FIELD/REGEXP pairs continue in the list.
|
|
451
|
|
452 examples:
|
|
453 (\"/dev/null\" \"from\" \"@spam.com\") ; delete all mail from spam.com
|
33918
|
454 (\"RMS\" \"from\" \"rms@\") ; save all mail from RMS."
|
|
455 :group 'rmail
|
|
456 :version "21.1"
|
|
457 :type '(repeat (sexp :tag "Directive")))
|
45144
|
458
|
2076
|
459 (defvar rmail-reply-prefix "Re: "
|
|
460 "String to prepend to Subject line when replying to a message.")
|
|
461
|
17065
|
462 ;; Some mailers use "Re(2):" or "Re^2:" or "Re: Re:" or "Re[2]:".
|
69568
|
463 ;; This pattern should catch all the common variants.
|
|
464 ;; rms: I deleted the change to delete tags in square brackets
|
|
465 ;; because they mess up RT tags.
|
|
466 (defvar rmail-reply-regexp "\\`\\(Re\\(([0-9]+)\\|\\[[0-9]+\\]\\|\\^[0-9]+\\)?: *\\)*"
|
15832
|
467 "Regexp to delete from Subject line before inserting `rmail-reply-prefix'.")
|
10640
|
468
|
21435
|
469 (defcustom rmail-display-summary nil
|
|
470 "*If non-nil, Rmail always displays the summary buffer."
|
|
471 :group 'rmail-summary
|
|
472 :type 'boolean)
|
|
473
|
|
474 (defvar rmail-inbox-list nil)
|
|
475 (put 'rmail-inbox-list 'permanent-local t)
|
8384
|
476
|
270
|
477 (defvar rmail-keywords nil)
|
21435
|
478 (put 'rmail-keywords 'permanent-local t)
|
270
|
479
|
19509
|
480 (defvar rmail-buffer nil
|
|
481 "The RMAIL buffer related to the current buffer.
|
|
482 In an RMAIL buffer, this holds the RMAIL buffer itself.
|
|
483 In a summary buffer, this holds the RMAIL buffer it is a summary for.")
|
|
484 (put 'rmail-buffer 'permanent-local t)
|
|
485
|
270
|
486 ;; Message counters and markers. Deleted flags.
|
|
487
|
|
488 (defvar rmail-current-message nil)
|
21435
|
489 (put 'rmail-current-message 'permanent-local t)
|
|
490
|
270
|
491 (defvar rmail-total-messages nil)
|
21435
|
492 (put 'rmail-total-messages 'permanent-local t)
|
|
493
|
270
|
494 (defvar rmail-message-vector nil)
|
21435
|
495 (put 'rmail-message-vector 'permanent-local t)
|
|
496
|
270
|
497 (defvar rmail-deleted-vector nil)
|
21435
|
498 (put 'rmail-deleted-vector 'permanent-local t)
|
|
499
|
17620
|
500 (defvar rmail-msgref-vector nil
|
|
501 "In an Rmail buffer, a vector whose Nth element is a list (N).
|
|
502 When expunging renumbers messages, these lists are modified
|
|
503 by substituting the new message number into the existing list.")
|
21435
|
504 (put 'rmail-msgref-vector 'permanent-local t)
|
270
|
505
|
7061
|
506 (defvar rmail-overlay-list nil)
|
21435
|
507 (put 'rmail-overlay-list 'permanent-local t)
|
9380
|
508
|
270
|
509 ;; These are used by autoloaded rmail-summary.
|
|
510
|
|
511 (defvar rmail-summary-buffer nil)
|
19509
|
512 (put 'rmail-summary-buffer 'permanent-local t)
|
270
|
513 (defvar rmail-summary-vector nil)
|
19509
|
514 (put 'rmail-summary-vector 'permanent-local t)
|
270
|
515
|
21435
|
516 (defvar rmail-view-buffer nil
|
|
517 "Buffer which holds RMAIL message for MIME displaying.")
|
|
518 (put 'rmail-view-buffer 'permanent-local t)
|
|
519
|
270
|
520 ;; `Sticky' default variables.
|
|
521
|
|
522 ;; Last individual label specified to a or k.
|
|
523 (defvar rmail-last-label nil)
|
21435
|
524 (put 'rmail-last-label 'permanent-local t)
|
|
525
|
2076
|
526 ;; Last set of values specified to C-M-n, C-M-p, C-M-s or C-M-l.
|
270
|
527 (defvar rmail-last-multi-labels nil)
|
21435
|
528
|
2076
|
529 (defvar rmail-last-regexp nil)
|
21435
|
530 (put 'rmail-last-regexp 'permanent-local t)
|
|
531
|
17630
|
532 (defcustom rmail-default-file "~/xmail"
|
|
533 "*Default file name for \\[rmail-output]."
|
|
534 :type 'file
|
|
535 :group 'rmail-files)
|
|
536 (defcustom rmail-default-rmail-file "~/XMAIL"
|
|
537 "*Default file name for \\[rmail-output-to-rmail-file]."
|
|
538 :type 'file
|
|
539 :group 'rmail-files)
|
22201
|
540 (defcustom rmail-default-body-file "~/mailout"
|
|
541 "*Default file name for \\[rmail-output-body-to-file]."
|
|
542 :type 'file
|
|
543 :group 'rmail-files
|
|
544 :version "20.3")
|
617
|
545
|
21435
|
546 ;; Mule and MIME related variables.
|
|
547
|
|
548 ;;;###autoload
|
|
549 (defvar rmail-file-coding-system nil
|
|
550 "Coding system used in RMAIL file.
|
|
551
|
|
552 This is set to nil by default.")
|
|
553
|
|
554 ;;;###autoload
|
|
555 (defcustom rmail-enable-mime nil
|
|
556 "*If non-nil, RMAIL uses MIME feature.
|
|
557 If the value is t, RMAIL automatically shows MIME decoded message.
|
|
558 If the value is neither t nor nil, RMAIL does not show MIME decoded message
|
68255
|
559 until a user explicitly requires it.
|
|
560
|
|
561 Even if the value is non-nil, you can't use MIME feature
|
|
562 if the feature specified by `rmail-mime-feature' is not available
|
|
563 in your session."
|
21435
|
564 :type '(choice (const :tag "on" t)
|
|
565 (const :tag "off" nil)
|
22591
|
566 (other :tag "when asked" ask))
|
21435
|
567 :group 'rmail)
|
|
568
|
41511
|
569 (defvar rmail-enable-mime-composing nil
|
|
570 "*If non-nil, RMAIL uses `rmail-insert-mime-forwarded-message-function' to forward.")
|
|
571
|
21435
|
572 ;;;###autoload
|
|
573 (defvar rmail-show-mime-function nil
|
37611
|
574 "Function to show MIME decoded message of RMAIL file.
|
|
575 This function is called when `rmail-enable-mime' is non-nil.
|
|
576 It is called with no argument.")
|
|
577
|
|
578 ;;;###autoload
|
|
579 (defvar rmail-insert-mime-forwarded-message-function nil
|
|
580 "Function to insert a message in MIME format so it can be forwarded.
|
45144
|
581 This function is called if `rmail-enable-mime' or
|
41511
|
582 `rmail-enable-mime-composing' is non-nil.
|
37611
|
583 It is called with one argument FORWARD-BUFFER, which is a
|
|
584 buffer containing the message to forward. The current buffer
|
|
585 is the outgoing mail buffer.")
|
|
586
|
|
587 ;;;###autoload
|
37956
|
588 (defvar rmail-insert-mime-resent-message-function nil
|
|
589 "Function to insert a message in MIME format so it can be resent.
|
|
590 This function is called if `rmail-enable-mime' is non-nil.
|
|
591 It is called with one argument FORWARD-BUFFER, which is a
|
|
592 buffer containing the message to forward. The current buffer
|
|
593 is the outgoing mail buffer.")
|
|
594
|
|
595 ;;;###autoload
|
37611
|
596 (defvar rmail-search-mime-message-function nil
|
|
597 "Function to check if a regexp matches a MIME message.
|
|
598 This function is called if `rmail-enable-mime' is non-nil.
|
|
599 It is called with two arguments MSG and REGEXP, where
|
|
600 MSG is the message number, REGEXP is the regular expression.")
|
|
601
|
|
602 ;;;###autoload
|
|
603 (defvar rmail-search-mime-header-function nil
|
|
604 "Function to check if a regexp matches a header of MIME message.
|
|
605 This function is called if `rmail-enable-mime' is non-nil.
|
46924
|
606 It is called with three arguments MSG, REGEXP, and LIMIT, where
|
37611
|
607 MSG is the message number,
|
|
608 REGEXP is the regular expression,
|
|
609 LIMIT is the position specifying the end of header.")
|
21435
|
610
|
|
611 ;;;###autoload
|
|
612 (defvar rmail-mime-feature 'rmail-mime
|
22133
|
613 "Feature to require to load MIME support in Rmail.
|
|
614 When starting Rmail, if `rmail-enable-mime' is non-nil,
|
68255
|
615 this feature is required with `require'.
|
|
616
|
|
617 The default value is `rmail-mime'. This feature is provided by
|
|
618 the rmail-mime package available at <http://www.m17n.org/rmail-mime/>.")
|
24209
|
619
|
|
620 ;;;###autoload
|
|
621 (defvar rmail-decode-mime-charset t
|
|
622 "*Non-nil means a message is decoded by MIME's charset specification.
|
|
623 If this variable is nil, or the message has not MIME specification,
|
|
624 the message is decoded as normal way.
|
|
625
|
|
626 If the variable `rmail-enable-mime' is non-nil, this variables is
|
|
627 ignored, and all the decoding work is done by a feature specified by
|
|
628 the variable `rmail-mime-feature'.")
|
|
629
|
|
630 ;;;###autoload
|
|
631 (defvar rmail-mime-charset-pattern
|
73281
f3db6404bec1
(rmail-mime-charset-pattern): Allow a TAB between "Content-Type" and
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
632 (concat "^content-type:[ \t]*text/plain;"
|
70771
|
633 "\\(?:[ \t\n]*\\(?:format\\|delsp\\)=\"?[-a-z0-9]+\"?;\\)*"
|
69907
|
634 "[ \t\n]*charset=\"?\\([^ \t\n\";]+\\)\"?")
|
24209
|
635 "Regexp to match MIME-charset specification in a header of message.
|
|
636 The first parenthesized expression should match the MIME-charset name.")
|
|
637
|
21435
|
638
|
621
|
639 ;;; Regexp matching the delimiter of messages in UNIX mail format
|
|
640 ;;; (UNIX From lines), minus the initial ^. Note that if you change
|
|
641 ;;; this expression, you must change the code in rmail-nuke-pinhead-header
|
|
642 ;;; that knows the exact ordering of the \\( \\) subexpressions.
|
617
|
643 (defvar rmail-unix-mail-delimiter
|
1112
|
644 (let ((time-zone-regexp
|
12727
|
645 (concat "\\([A-Z]?[A-Z]?[A-Z][A-Z]\\( DST\\)?"
|
1112
|
646 "\\|[-+]?[0-9][0-9][0-9][0-9]"
|
|
647 "\\|"
|
|
648 "\\) *")))
|
|
649 (concat
|
|
650 "From "
|
|
651
|
15534
|
652 ;; Many things can happen to an RFC 822 mailbox before it is put into
|
|
653 ;; a `From' line. The leading phrase can be stripped, e.g.
|
|
654 ;; `Joe <@w.x:joe@y.z>' -> `<@w.x:joe@y.z>'. The <> can be stripped, e.g.
|
|
655 ;; `<@x.y:joe@y.z>' -> `@x.y:joe@y.z'. Everything starting with a CRLF
|
|
656 ;; can be removed, e.g.
|
|
657 ;; From: joe@y.z (Joe K
|
|
658 ;; User)
|
|
659 ;; can yield `From joe@y.z (Joe K Fri Mar 22 08:11:15 1996', and
|
|
660 ;; From: Joe User
|
|
661 ;; <joe@y.z>
|
|
662 ;; can yield `From Joe User Fri Mar 22 08:11:15 1996'.
|
15820
|
663 ;; The mailbox can be removed or be replaced by white space, e.g.
|
|
664 ;; From: "Joe User"{space}{tab}
|
|
665 ;; <joe@y.z>
|
|
666 ;; can yield `From {space}{tab} Fri Mar 22 08:11:15 1996',
|
|
667 ;; where {space} and {tab} represent the Ascii space and tab characters.
|
15534
|
668 ;; We want to match the results of any of these manglings.
|
|
669 ;; The following regexp rejects names whose first characters are
|
|
670 ;; obviously bogus, but after that anything goes.
|
15820
|
671 "\\([^\0-\b\n-\r\^?].*\\)? "
|
1112
|
672
|
|
673 ;; The time the message was sent.
|
15534
|
674 "\\([^\0-\r \^?]+\\) +" ; day of the week
|
|
675 "\\([^\0-\r \^?]+\\) +" ; month
|
|
676 "\\([0-3]?[0-9]\\) +" ; day of month
|
|
677 "\\([0-2][0-9]:[0-5][0-9]\\(:[0-6][0-9]\\)?\\) *" ; time of day
|
1112
|
678
|
|
679 ;; Perhaps a time zone, specified by an abbreviation, or by a
|
|
680 ;; numeric offset.
|
|
681 time-zone-regexp
|
|
682
|
|
683 ;; The year.
|
15534
|
684 " \\([0-9][0-9]+\\) *"
|
1112
|
685
|
|
686 ;; On some systems the time zone can appear after the year, too.
|
|
687 time-zone-regexp
|
|
688
|
7037
|
689 ;; Old uucp cruft.
|
|
690 "\\(remote from .*\\)?"
|
1112
|
691
|
|
692 "\n"))
|
|
693 nil)
|
|
694
|
21435
|
695 (defvar rmail-font-lock-keywords
|
49064
|
696 ;; These are all matched case-insensitively.
|
21435
|
697 (eval-when-compile
|
|
698 (let* ((cite-chars "[>|}]")
|
49064
|
699 (cite-prefix "a-z")
|
21435
|
700 (cite-suffix (concat cite-prefix "0-9_.@-`'\"")))
|
49064
|
701 (list '("^\\(From\\|Sender\\|Resent-From\\):"
|
|
702 . font-lock-function-name-face)
|
21435
|
703 '("^Reply-To:.*$" . font-lock-function-name-face)
|
|
704 '("^Subject:" . font-lock-comment-face)
|
61598
|
705 '("^X-Spam-Status:" . font-lock-keyword-face)
|
21435
|
706 '("^\\(To\\|Apparently-To\\|Cc\\|Newsgroups\\):"
|
|
707 . font-lock-keyword-face)
|
|
708 ;; Use MATCH-ANCHORED to effectively anchor the regexp left side.
|
|
709 `(,cite-chars
|
|
710 (,(concat "\\=[ \t]*"
|
61814
|
711 "\\(\\(\\([" cite-prefix "]+[" cite-suffix "]*\\)?"
|
|
712 "\\(" cite-chars "[ \t]*\\)\\)+\\)"
|
21435
|
713 "\\(.*\\)")
|
|
714 (beginning-of-line) (end-of-line)
|
61814
|
715 (1 font-lock-comment-delimiter-face nil t)
|
|
716 (5 font-lock-comment-face nil t)))
|
49064
|
717 '("^\\(X-[a-z0-9-]+\\|In-reply-to\\|Date\\):.*\\(\n[ \t]+.*\\)*$"
|
21435
|
718 . font-lock-string-face))))
|
|
719 "Additional expressions to highlight in Rmail mode.")
|
|
720
|
2076
|
721 ;; Perform BODY in the summary buffer
|
|
722 ;; in such a way that its cursor is properly updated in its own window.
|
|
723 (defmacro rmail-select-summary (&rest body)
|
26455
|
724 `(let ((total rmail-total-messages))
|
|
725 (if (rmail-summary-displayed)
|
|
726 (let ((window (selected-window)))
|
|
727 (save-excursion
|
|
728 (unwind-protect
|
|
729 (progn
|
|
730 (pop-to-buffer rmail-summary-buffer)
|
|
731 ;; rmail-total-messages is a buffer-local var
|
|
732 ;; in the rmail buffer.
|
|
733 ;; This way we make it available for the body
|
|
734 ;; even tho the rmail buffer is not current.
|
|
735 (let ((rmail-total-messages total))
|
|
736 ,@body))
|
|
737 (select-window window))))
|
|
738 (save-excursion
|
|
739 (set-buffer rmail-summary-buffer)
|
|
740 (let ((rmail-total-messages total))
|
|
741 ,@body)))
|
|
742 (rmail-maybe-display-summary)))
|
270
|
743
|
|
744 ;;;; *** Rmail Mode ***
|
|
745
|
37787
|
746 ;; This variable is dynamically bound. The defvar is here to placate
|
|
747 ;; the byte compiler.
|
|
748
|
20943
|
749 (defvar rmail-enable-multibyte nil)
|
|
750
|
37787
|
751
|
|
752 (defun rmail-require-mime-maybe ()
|
|
753 "Require `rmail-mime-feature' if that is non-nil.
|
|
754 Signal an error and set `rmail-mime-feature' to nil if the feature
|
|
755 isn't provided."
|
|
756 (when rmail-enable-mime
|
|
757 (condition-case err
|
|
758 (require rmail-mime-feature)
|
|
759 (error
|
68255
|
760 (display-warning
|
|
761 :warning
|
|
762 (format "Although MIME support is requested
|
|
763 by setting `rmail-enable-mime' to non-nil, the required feature
|
|
764 `%s' (the value of `rmail-mime-feature')
|
|
765 is not available in the current session.
|
|
766 So, the MIME support is turned off for the moment."
|
|
767 rmail-mime-feature))
|
37787
|
768 (setq rmail-enable-mime nil)))))
|
|
769
|
|
770
|
270
|
771 ;;;###autoload
|
|
772 (defun rmail (&optional file-name-arg)
|
|
773 "Read and edit incoming mail.
|
4838
|
774 Moves messages into file named by `rmail-file-name' (a babyl format file)
|
270
|
775 and edits that file in RMAIL Mode.
|
|
776 Type \\[describe-mode] once editing that file, for a list of RMAIL commands.
|
|
777
|
5274
|
778 May be called with file name as argument; then performs rmail editing on
|
|
779 that file, but does not copy any new mail into the file.
|
|
780 Interactively, if you supply a prefix argument, then you
|
8384
|
781 have a chance to specify a file name with the minibuffer.
|
|
782
|
|
783 If `rmail-display-summary' is non-nil, make a summary for this RMAIL file."
|
270
|
784 (interactive (if current-prefix-arg
|
13818
|
785 (list (read-file-name "Run rmail on RMAIL file: "))))
|
37787
|
786 (rmail-require-mime-maybe)
|
270
|
787 (let* ((file-name (expand-file-name (or file-name-arg rmail-file-name)))
|
43087
|
788 ;; Use find-buffer-visiting, not get-file-buffer, for those users
|
|
789 ;; who have find-file-visit-truename set to t.
|
|
790 (existed (find-buffer-visiting file-name))
|
39298
|
791 ;; This binding is necessary because we must decide if we
|
20947
|
792 ;; need code conversion while the buffer is unibyte
|
|
793 ;; (i.e. enable-multibyte-characters is nil).
|
22724
|
794 (rmail-enable-multibyte
|
45144
|
795 (if existed
|
22724
|
796 (with-current-buffer existed enable-multibyte-characters)
|
|
797 (default-value 'enable-multibyte-characters)))
|
20943
|
798 ;; Since the file may contain messages of different encodings
|
|
799 ;; at the tail (non-BYBYL part), we can't decode them at once
|
|
800 ;; on reading. So, at first, we read the file without text
|
|
801 ;; code conversion, then decode the messages one by one by
|
|
802 ;; rmail-decode-babyl-format or
|
|
803 ;; rmail-convert-to-babyl-format.
|
|
804 (coding-system-for-read (and rmail-enable-multibyte 'raw-text))
|
20053
|
805 run-mail-hook msg-shown)
|
270
|
806 ;; Like find-file, but in the case where a buffer existed
|
|
807 ;; and the file was reverted, recompute the message-data.
|
21705
|
808 ;; We used to bind enable-local-variables to nil here,
|
|
809 ;; but that should not be needed now that rmail-mode
|
|
810 ;; sets it locally to nil.
|
|
811 ;; (Binding a variable locally with let is not safe if it has
|
|
812 ;; buffer-local bindings.)
|
270
|
813 (if (and existed (not (verify-visited-file-modtime existed)))
|
|
814 (progn
|
21705
|
815 (find-file file-name)
|
2076
|
816 (if (and (verify-visited-file-modtime existed)
|
|
817 (eq major-mode 'rmail-mode))
|
270
|
818 (progn (rmail-forget-messages)
|
|
819 (rmail-set-message-counters))))
|
45144
|
820 (switch-to-buffer
|
22474
|
821 (let ((enable-local-variables nil))
|
|
822 (find-file-noselect file-name))))
|
2076
|
823 (if (eq major-mode 'rmail-edit-mode)
|
20681
|
824 (error "Exit Rmail Edit mode before getting new mail"))
|
270
|
825 (if (and existed (> (buffer-size) 0))
|
|
826 ;; Buffer not new and not empty; ensure in proper mode, but that's all.
|
|
827 (or (eq major-mode 'rmail-mode)
|
16431
|
828 (progn (rmail-mode-2)
|
|
829 (setq run-mail-hook t)))
|
|
830 (setq run-mail-hook t)
|
270
|
831 (rmail-mode-2)
|
|
832 ;; Convert all or part to Babyl file if possible.
|
|
833 (rmail-convert-file)
|
22374
|
834 (goto-char (point-max)))
|
22498
|
835 ;; As we have read a file by raw-text, the buffer is set to
|
|
836 ;; unibyte. We must make it multibyte if necessary.
|
|
837 (if (and rmail-enable-multibyte
|
|
838 (not enable-multibyte-characters))
|
|
839 (set-buffer-multibyte t))
|
22435
|
840 ;; If necessary, scan to find all the messages.
|
|
841 (rmail-maybe-set-message-counters)
|
20662
|
842 (unwind-protect
|
22374
|
843 (unless (and (not file-name-arg)
|
|
844 (rmail-get-new-mail))
|
|
845 (rmail-show-message (rmail-first-unseen-message)))
|
20662
|
846 (progn
|
|
847 (if rmail-display-summary (rmail-summary))
|
|
848 (rmail-construct-io-menu)
|
|
849 (if run-mail-hook
|
|
850 (run-hooks 'rmail-mode-hook))))))
|
270
|
851
|
|
852 ;; Given the value of MAILPATH, return a list of inbox file names.
|
|
853 ;; This is turned off because it is not clear that the user wants
|
|
854 ;; all these inboxes to feed into the primary rmail file.
|
|
855 ; (defun rmail-convert-mailpath (string)
|
|
856 ; (let (idx list)
|
|
857 ; (while (setq idx (string-match "[%:]" string))
|
|
858 ; (let ((this (substring string 0 idx)))
|
|
859 ; (setq string (substring string (1+ idx)))
|
|
860 ; (setq list (cons (if (string-match "%" this)
|
|
861 ; (substring this 0 (string-match "%" this))
|
|
862 ; this)
|
|
863 ; list))))
|
|
864 ; list))
|
|
865
|
|
866 ; I have checked that adding "-*- rmail -*-" to the BABYL OPTIONS line
|
|
867 ; will not cause emacs 18.55 problems.
|
|
868
|
22045
|
869 ;; This calls rmail-decode-babyl-format if the file is already Babyl.
|
|
870
|
270
|
871 (defun rmail-convert-file ()
|
|
872 (let (convert)
|
|
873 (widen)
|
|
874 (goto-char (point-min))
|
|
875 ;; If file doesn't start like a Babyl file,
|
|
876 ;; convert it to one, by adding a header and converting each message.
|
|
877 (cond ((looking-at "BABYL OPTIONS:"))
|
|
878 ((looking-at "Version: 5\n")
|
|
879 ;; Losing babyl file made by old version of Rmail.
|
|
880 ;; Just fix the babyl file header; don't make a new one,
|
|
881 ;; so we don't lose the Labels: file attribute, etc.
|
|
882 (let ((buffer-read-only nil))
|
|
883 (insert "BABYL OPTIONS: -*- rmail -*-\n")))
|
4764
|
884 ((equal (point-min) (point-max))
|
|
885 ;; Empty RMAIL file. Just insert the header.
|
|
886 (rmail-insert-rmail-file-header))
|
270
|
887 (t
|
4764
|
888 ;; Non-empty file in non-RMAIL format. Add header and convert.
|
270
|
889 (setq convert t)
|
|
890 (rmail-insert-rmail-file-header)))
|
|
891 ;; If file was not a Babyl file or if there are
|
|
892 ;; Unix format messages added at the end,
|
|
893 ;; convert file as necessary.
|
|
894 (if (or convert
|
4673
|
895 (save-excursion
|
|
896 (goto-char (point-max))
|
12839
|
897 (search-backward "\n\^_")
|
|
898 (forward-char 2)
|
4673
|
899 (looking-at "\n*From ")))
|
270
|
900 (let ((buffer-read-only nil))
|
|
901 (message "Converting to Babyl format...")
|
4673
|
902 ;; If file needs conversion, convert it all,
|
|
903 ;; except for the BABYL header.
|
|
904 ;; (rmail-convert-to-babyl-format would delete the header.)
|
|
905 (goto-char (point-min))
|
|
906 (search-forward "\n\^_" nil t)
|
4698
|
907 (narrow-to-region (point) (point-max))
|
270
|
908 (rmail-convert-to-babyl-format)
|
20943
|
909 (message "Converting to Babyl format...done"))
|
|
910 (if (and (not rmail-enable-mime)
|
|
911 rmail-enable-multibyte)
|
|
912 ;; We still have to decode BABYL part.
|
|
913 (rmail-decode-babyl-format)))))
|
270
|
914
|
|
915 (defun rmail-insert-rmail-file-header ()
|
|
916 (let ((buffer-read-only nil))
|
22045
|
917 ;; -*-rmail-*- is here so that visiting the file normally
|
|
918 ;; recognizes it as an Rmail file.
|
270
|
919 (insert "BABYL OPTIONS: -*- rmail -*-
|
|
920 Version: 5
|
|
921 Labels:
|
|
922 Note: This is the header of an rmail file.
|
|
923 Note: If you are seeing it in rmail,
|
|
924 Note: it means the file has no messages in it.\n\^_")))
|
|
925
|
46129
|
926 ;; Decode Babyl formatted part at the head of current buffer by
|
20943
|
927 ;; rmail-file-coding-system, or if it is nil, do auto conversion.
|
17093
|
928
|
|
929 (defun rmail-decode-babyl-format ()
|
|
930 (let ((modifiedp (buffer-modified-p))
|
|
931 (buffer-read-only nil)
|
22045
|
932 (coding-system rmail-file-coding-system)
|
20943
|
933 from to)
|
17093
|
934 (goto-char (point-min))
|
22045
|
935 (search-forward "\n\^_" nil t) ; Skip BABYL header.
|
20943
|
936 (setq from (point))
|
|
937 (goto-char (point-max))
|
|
938 (search-backward "\n\^_" from 'mv)
|
|
939 (setq to (point))
|
22045
|
940 (unless (and coding-system
|
|
941 (coding-system-p coding-system))
|
39298
|
942 (setq coding-system
|
|
943 ;; Emacs 21.1 and later writes RMAIL files in emacs-mule, but
|
|
944 ;; earlier versions did that with the current buffer's encoding.
|
|
945 ;; So we want to favor detection of emacs-mule (whose normal
|
|
946 ;; priority is quite low), but still allow detection of other
|
|
947 ;; encodings if emacs-mule won't fit. The call to
|
|
948 ;; detect-coding-with-priority below achieves that.
|
|
949 (car (detect-coding-with-priority
|
|
950 from to
|
|
951 '((coding-category-emacs-mule . emacs-mule))))))
|
23293
|
952 (unless (memq coding-system
|
|
953 '(undecided undecided-unix))
|
24584
|
954 (set-buffer-modified-p t) ; avoid locking when decoding
|
42659
9522b2780ef1
(rmail-decode-babyl-format): Disable undo around the decode-coding-region call.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
955 (let ((buffer-undo-list t))
|
9522b2780ef1
(rmail-decode-babyl-format): Disable undo around the decode-coding-region call.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
956 (decode-coding-region from to coding-system))
|
24584
|
957 (setq coding-system last-coding-system-used))
|
22045
|
958 (set-buffer-modified-p modifiedp)
|
|
959 (setq buffer-file-coding-system nil)
|
|
960 (setq save-buffer-coding-system
|
|
961 (or coding-system 'undecided))))
|
17093
|
962
|
21435
|
963 (defvar rmail-mode-map nil)
|
270
|
964 (if rmail-mode-map
|
|
965 nil
|
|
966 (setq rmail-mode-map (make-keymap))
|
|
967 (suppress-keymap rmail-mode-map)
|
2076
|
968 (define-key rmail-mode-map "a" 'rmail-add-label)
|
|
969 (define-key rmail-mode-map "b" 'rmail-bury)
|
|
970 (define-key rmail-mode-map "c" 'rmail-continue)
|
|
971 (define-key rmail-mode-map "d" 'rmail-delete-forward)
|
|
972 (define-key rmail-mode-map "\C-d" 'rmail-delete-backward)
|
|
973 (define-key rmail-mode-map "e" 'rmail-edit-current-message)
|
|
974 (define-key rmail-mode-map "f" 'rmail-forward)
|
|
975 (define-key rmail-mode-map "g" 'rmail-get-new-mail)
|
|
976 (define-key rmail-mode-map "h" 'rmail-summary)
|
|
977 (define-key rmail-mode-map "i" 'rmail-input)
|
|
978 (define-key rmail-mode-map "j" 'rmail-show-message)
|
|
979 (define-key rmail-mode-map "k" 'rmail-kill-label)
|
|
980 (define-key rmail-mode-map "l" 'rmail-summary-by-labels)
|
270
|
981 (define-key rmail-mode-map "\e\C-h" 'rmail-summary)
|
|
982 (define-key rmail-mode-map "\e\C-l" 'rmail-summary-by-labels)
|
|
983 (define-key rmail-mode-map "\e\C-r" 'rmail-summary-by-recipients)
|
|
984 (define-key rmail-mode-map "\e\C-s" 'rmail-summary-by-regexp)
|
2076
|
985 (define-key rmail-mode-map "\e\C-t" 'rmail-summary-by-topic)
|
|
986 (define-key rmail-mode-map "m" 'rmail-mail)
|
|
987 (define-key rmail-mode-map "\em" 'rmail-retry-failure)
|
|
988 (define-key rmail-mode-map "n" 'rmail-next-undeleted-message)
|
|
989 (define-key rmail-mode-map "\en" 'rmail-next-message)
|
|
990 (define-key rmail-mode-map "\e\C-n" 'rmail-next-labeled-message)
|
|
991 (define-key rmail-mode-map "o" 'rmail-output-to-rmail-file)
|
|
992 (define-key rmail-mode-map "\C-o" 'rmail-output)
|
|
993 (define-key rmail-mode-map "p" 'rmail-previous-undeleted-message)
|
|
994 (define-key rmail-mode-map "\ep" 'rmail-previous-message)
|
|
995 (define-key rmail-mode-map "\e\C-p" 'rmail-previous-labeled-message)
|
|
996 (define-key rmail-mode-map "q" 'rmail-quit)
|
|
997 (define-key rmail-mode-map "r" 'rmail-reply)
|
1464
|
998 ;; I find I can't live without the default M-r command -- rms.
|
2076
|
999 ;; (define-key rmail-mode-map "\er" 'rmail-search-backwards)
|
|
1000 (define-key rmail-mode-map "s" 'rmail-expunge-and-save)
|
|
1001 (define-key rmail-mode-map "\es" 'rmail-search)
|
|
1002 (define-key rmail-mode-map "t" 'rmail-toggle-header)
|
|
1003 (define-key rmail-mode-map "u" 'rmail-undelete-previous-message)
|
17306
|
1004 (define-key rmail-mode-map "w" 'rmail-output-body-to-file)
|
2076
|
1005 (define-key rmail-mode-map "x" 'rmail-expunge)
|
|
1006 (define-key rmail-mode-map "." 'rmail-beginning-of-message)
|
64928
|
1007 (define-key rmail-mode-map "/" 'rmail-end-of-message)
|
2076
|
1008 (define-key rmail-mode-map "<" 'rmail-first-message)
|
|
1009 (define-key rmail-mode-map ">" 'rmail-last-message)
|
|
1010 (define-key rmail-mode-map " " 'scroll-up)
|
|
1011 (define-key rmail-mode-map "\177" 'scroll-down)
|
|
1012 (define-key rmail-mode-map "?" 'describe-mode)
|
3877
|
1013 (define-key rmail-mode-map "\C-c\C-s\C-d" 'rmail-sort-by-date)
|
|
1014 (define-key rmail-mode-map "\C-c\C-s\C-s" 'rmail-sort-by-subject)
|
|
1015 (define-key rmail-mode-map "\C-c\C-s\C-a" 'rmail-sort-by-author)
|
|
1016 (define-key rmail-mode-map "\C-c\C-s\C-r" 'rmail-sort-by-recipient)
|
|
1017 (define-key rmail-mode-map "\C-c\C-s\C-c" 'rmail-sort-by-correspondent)
|
|
1018 (define-key rmail-mode-map "\C-c\C-s\C-l" 'rmail-sort-by-lines)
|
37592
|
1019 (define-key rmail-mode-map "\C-c\C-s\C-k" 'rmail-sort-by-labels)
|
10662
|
1020 (define-key rmail-mode-map "\C-c\C-n" 'rmail-next-same-subject)
|
|
1021 (define-key rmail-mode-map "\C-c\C-p" 'rmail-previous-same-subject)
|
2076
|
1022 )
|
3863
|
1023
|
|
1024 (define-key rmail-mode-map [menu-bar] (make-sparse-keymap))
|
270
|
1025
|
3863
|
1026 (define-key rmail-mode-map [menu-bar classify]
|
|
1027 (cons "Classify" (make-sparse-keymap "Classify")))
|
|
1028
|
6483
|
1029 (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>
diff
changeset
|
1030 nil)
|
6483
|
1031
|
|
1032 (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>
diff
changeset
|
1033 nil)
|
6483
|
1034
|
17306
|
1035 (define-key rmail-mode-map [menu-bar classify output-body]
|
|
1036 '("Output body to file..." . rmail-output-body-to-file))
|
|
1037
|
3863
|
1038 (define-key rmail-mode-map [menu-bar classify output-inbox]
|
8423
|
1039 '("Output (inbox)..." . rmail-output))
|
3863
|
1040
|
|
1041 (define-key rmail-mode-map [menu-bar classify output]
|
8423
|
1042 '("Output (Rmail)..." . rmail-output-to-rmail-file))
|
3863
|
1043
|
|
1044 (define-key rmail-mode-map [menu-bar classify kill-label]
|
8423
|
1045 '("Kill Label..." . rmail-kill-label))
|
3863
|
1046
|
|
1047 (define-key rmail-mode-map [menu-bar classify add-label]
|
8423
|
1048 '("Add Label..." . rmail-add-label))
|
3863
|
1049
|
|
1050 (define-key rmail-mode-map [menu-bar summary]
|
|
1051 (cons "Summary" (make-sparse-keymap "Summary")))
|
|
1052
|
12447
|
1053 (define-key rmail-mode-map [menu-bar summary senders]
|
|
1054 '("By Senders..." . rmail-summary-by-senders))
|
|
1055
|
3863
|
1056 (define-key rmail-mode-map [menu-bar summary labels]
|
8423
|
1057 '("By Labels..." . rmail-summary-by-labels))
|
3863
|
1058
|
|
1059 (define-key rmail-mode-map [menu-bar summary recipients]
|
8423
|
1060 '("By Recipients..." . rmail-summary-by-recipients))
|
3863
|
1061
|
|
1062 (define-key rmail-mode-map [menu-bar summary topic]
|
8423
|
1063 '("By Topic..." . rmail-summary-by-topic))
|
3863
|
1064
|
|
1065 (define-key rmail-mode-map [menu-bar summary regexp]
|
8423
|
1066 '("By Regexp..." . rmail-summary-by-regexp))
|
3863
|
1067
|
|
1068 (define-key rmail-mode-map [menu-bar summary all]
|
|
1069 '("All" . rmail-summary))
|
|
1070
|
|
1071 (define-key rmail-mode-map [menu-bar mail]
|
|
1072 (cons "Mail" (make-sparse-keymap "Mail")))
|
|
1073
|
8420
|
1074 (define-key rmail-mode-map [menu-bar mail rmail-get-new-mail]
|
8219
|
1075 '("Get New Mail" . rmail-get-new-mail))
|
|
1076
|
|
1077 (define-key rmail-mode-map [menu-bar mail lambda]
|
8230
|
1078 '("----"))
|
8219
|
1079
|
|
1080 (define-key rmail-mode-map [menu-bar mail continue]
|
3863
|
1081 '("Continue" . rmail-continue))
|
|
1082
|
8393
|
1083 (define-key rmail-mode-map [menu-bar mail resend]
|
8423
|
1084 '("Re-send..." . rmail-resend))
|
8393
|
1085
|
3863
|
1086 (define-key rmail-mode-map [menu-bar mail forward]
|
|
1087 '("Forward" . rmail-forward))
|
|
1088
|
|
1089 (define-key rmail-mode-map [menu-bar mail retry]
|
|
1090 '("Retry" . rmail-retry-failure))
|
|
1091
|
|
1092 (define-key rmail-mode-map [menu-bar mail reply]
|
|
1093 '("Reply" . rmail-reply))
|
|
1094
|
|
1095 (define-key rmail-mode-map [menu-bar mail mail]
|
|
1096 '("Mail" . rmail-mail))
|
|
1097
|
|
1098 (define-key rmail-mode-map [menu-bar delete]
|
|
1099 (cons "Delete" (make-sparse-keymap "Delete")))
|
|
1100
|
|
1101 (define-key rmail-mode-map [menu-bar delete expunge/save]
|
|
1102 '("Expunge/Save" . rmail-expunge-and-save))
|
|
1103
|
|
1104 (define-key rmail-mode-map [menu-bar delete expunge]
|
|
1105 '("Expunge" . rmail-expunge))
|
|
1106
|
|
1107 (define-key rmail-mode-map [menu-bar delete undelete]
|
|
1108 '("Undelete" . rmail-undelete-previous-message))
|
|
1109
|
|
1110 (define-key rmail-mode-map [menu-bar delete delete]
|
|
1111 '("Delete" . rmail-delete-forward))
|
|
1112
|
|
1113 (define-key rmail-mode-map [menu-bar move]
|
|
1114 (cons "Move" (make-sparse-keymap "Move")))
|
|
1115
|
|
1116 (define-key rmail-mode-map [menu-bar move search-back]
|
10187
|
1117 '("Search Back..." . rmail-search-backwards))
|
3863
|
1118
|
|
1119 (define-key rmail-mode-map [menu-bar move search]
|
8423
|
1120 '("Search..." . rmail-search))
|
3863
|
1121
|
|
1122 (define-key rmail-mode-map [menu-bar move previous]
|
|
1123 '("Previous Nondeleted" . rmail-previous-undeleted-message))
|
|
1124
|
|
1125 (define-key rmail-mode-map [menu-bar move next]
|
|
1126 '("Next Nondeleted" . rmail-next-undeleted-message))
|
|
1127
|
|
1128 (define-key rmail-mode-map [menu-bar move last]
|
|
1129 '("Last" . rmail-last-message))
|
|
1130
|
|
1131 (define-key rmail-mode-map [menu-bar move first]
|
|
1132 '("First" . rmail-first-message))
|
|
1133
|
|
1134 (define-key rmail-mode-map [menu-bar move previous]
|
|
1135 '("Previous" . rmail-previous-message))
|
|
1136
|
|
1137 (define-key rmail-mode-map [menu-bar move next]
|
|
1138 '("Next" . rmail-next-message))
|
69676
|
1139
|
|
1140 ;; Rmail toolbar
|
|
1141 (defvar rmail-tool-bar-map
|
|
1142 (if (display-graphic-p)
|
|
1143 (let ((map (make-sparse-keymap)))
|
|
1144 (tool-bar-local-item-from-menu 'rmail-get-new-mail "mail/inbox"
|
|
1145 map rmail-mode-map)
|
|
1146 (tool-bar-local-item-from-menu 'rmail-next-undeleted-message "right-arrow"
|
|
1147 map rmail-mode-map)
|
|
1148 (tool-bar-local-item-from-menu 'rmail-previous-undeleted-message "left-arrow"
|
|
1149 map rmail-mode-map)
|
|
1150 (tool-bar-local-item-from-menu 'rmail-search "search"
|
|
1151 map rmail-mode-map)
|
|
1152 (tool-bar-local-item-from-menu 'rmail-input "open"
|
|
1153 map rmail-mode-map)
|
|
1154 (tool-bar-local-item-from-menu 'rmail-mail "mail/compose"
|
|
1155 map rmail-mode-map)
|
|
1156 (tool-bar-local-item-from-menu 'rmail-reply "mail/reply-all"
|
|
1157 map rmail-mode-map)
|
|
1158 (tool-bar-local-item-from-menu 'rmail-forward "mail/forward"
|
|
1159 map rmail-mode-map)
|
|
1160 (tool-bar-local-item-from-menu 'rmail-delete-forward "close"
|
|
1161 map rmail-mode-map)
|
|
1162 (tool-bar-local-item-from-menu 'rmail-output "mail/move"
|
|
1163 map rmail-mode-map)
|
|
1164 (tool-bar-local-item-from-menu 'rmail-output-body-to-file "mail/save"
|
|
1165 map rmail-mode-map)
|
|
1166 (tool-bar-local-item-from-menu 'rmail-expunge "delete"
|
|
1167 map rmail-mode-map)
|
|
1168 map)))
|
|
1169
|
|
1170
|
3863
|
1171
|
270
|
1172 ;; Rmail mode is suitable only for specially formatted data.
|
|
1173 (put 'rmail-mode 'mode-class 'special)
|
|
1174
|
8963
|
1175 (defun rmail-mode-kill-summary ()
|
|
1176 (if rmail-summary-buffer (kill-buffer rmail-summary-buffer)))
|
|
1177
|
1382
|
1178 ;;;###autoload
|
270
|
1179 (defun rmail-mode ()
|
|
1180 "Rmail Mode is used by \\<rmail-mode-map>\\[rmail] for editing Rmail files.
|
|
1181 All normal editing commands are turned off.
|
|
1182 Instead, these commands are available:
|
|
1183
|
64928
|
1184 \\[rmail-beginning-of-message] Move point to front of this message.
|
|
1185 \\[rmail-end-of-message] Move point to bottom of this message.
|
270
|
1186 \\[scroll-up] Scroll to next screen of this message.
|
|
1187 \\[scroll-down] Scroll to previous screen of this message.
|
|
1188 \\[rmail-next-undeleted-message] Move to Next non-deleted message.
|
|
1189 \\[rmail-previous-undeleted-message] Move to Previous non-deleted message.
|
|
1190 \\[rmail-next-message] Move to Next message whether deleted or not.
|
|
1191 \\[rmail-previous-message] Move to Previous message whether deleted or not.
|
|
1192 \\[rmail-first-message] Move to the first message in Rmail file.
|
|
1193 \\[rmail-last-message] Move to the last message in Rmail file.
|
|
1194 \\[rmail-show-message] Jump to message specified by numeric position in file.
|
|
1195 \\[rmail-search] Search for string and show message it is found in.
|
|
1196 \\[rmail-delete-forward] Delete this message, move to next nondeleted.
|
|
1197 \\[rmail-delete-backward] Delete this message, move to previous nondeleted.
|
|
1198 \\[rmail-undelete-previous-message] Undelete message. Tries current message, then earlier messages
|
|
1199 till a deleted message is found.
|
2076
|
1200 \\[rmail-edit-current-message] Edit the current message. \\[rmail-cease-edit] to return to Rmail.
|
270
|
1201 \\[rmail-expunge] Expunge deleted messages.
|
|
1202 \\[rmail-expunge-and-save] Expunge and save the file.
|
|
1203 \\[rmail-quit] Quit Rmail: expunge, save, then switch to another buffer.
|
|
1204 \\[save-buffer] Save without expunging.
|
2423
|
1205 \\[rmail-get-new-mail] Move new mail from system spool directory into this file.
|
270
|
1206 \\[rmail-mail] Mail a message (same as \\[mail-other-window]).
|
|
1207 \\[rmail-continue] Continue composing outgoing message started before.
|
2076
|
1208 \\[rmail-reply] Reply to this message. Like \\[rmail-mail] but initializes some fields.
|
|
1209 \\[rmail-retry-failure] Send this message again. Used on a mailer failure message.
|
270
|
1210 \\[rmail-forward] Forward this message to another user.
|
|
1211 \\[rmail-output-to-rmail-file] Output this message to an Rmail file (append it).
|
|
1212 \\[rmail-output] Output this message to a Unix-format mail file (append it).
|
21405
|
1213 \\[rmail-output-body-to-file] Save message body to a file. Default filename comes from Subject line.
|
270
|
1214 \\[rmail-input] Input Rmail file. Run Rmail on that file.
|
|
1215 \\[rmail-add-label] Add label to message. It will be displayed in the mode line.
|
|
1216 \\[rmail-kill-label] Kill label. Remove a label from current message.
|
|
1217 \\[rmail-next-labeled-message] Move to Next message with specified label
|
|
1218 (label defaults to last one specified).
|
|
1219 Standard labels: filed, unseen, answered, forwarded, deleted.
|
2076
|
1220 Any other label is present only if you add it with \\[rmail-add-label].
|
270
|
1221 \\[rmail-previous-labeled-message] Move to Previous message with specified label
|
|
1222 \\[rmail-summary] Show headers buffer, with a one line summary of each message.
|
2076
|
1223 \\[rmail-summary-by-labels] Summarize only messages with particular label(s).
|
|
1224 \\[rmail-summary-by-recipients] Summarize only messages with particular recipient(s).
|
|
1225 \\[rmail-summary-by-regexp] Summarize only messages with particular regexp(s).
|
|
1226 \\[rmail-summary-by-topic] Summarize only messages with subject line regexp(s).
|
|
1227 \\[rmail-toggle-header] Toggle display of complete header."
|
270
|
1228 (interactive)
|
37787
|
1229 (let ((finding-rmail-file (not (eq major-mode 'rmail-mode))))
|
|
1230 (rmail-mode-2)
|
|
1231 (when (and finding-rmail-file
|
|
1232 (null coding-system-for-read)
|
|
1233 default-enable-multibyte-characters)
|
|
1234 (let ((rmail-enable-multibyte t))
|
|
1235 (rmail-require-mime-maybe)
|
|
1236 (rmail-convert-file)
|
|
1237 (goto-char (point-max))
|
|
1238 (set-buffer-multibyte t)))
|
|
1239 (rmail-set-message-counters)
|
|
1240 (rmail-show-message rmail-total-messages)
|
|
1241 (when finding-rmail-file
|
|
1242 (when rmail-display-summary
|
|
1243 (rmail-summary))
|
|
1244 (rmail-construct-io-menu))
|
62762
|
1245 (run-mode-hooks 'rmail-mode-hook)))
|
270
|
1246
|
|
1247 (defun rmail-mode-2 ()
|
|
1248 (kill-all-local-variables)
|
|
1249 (rmail-mode-1)
|
21435
|
1250 (rmail-perm-variables)
|
16431
|
1251 (rmail-variables))
|
270
|
1252
|
|
1253 (defun rmail-mode-1 ()
|
|
1254 (setq major-mode 'rmail-mode)
|
|
1255 (setq mode-name "RMAIL")
|
|
1256 (setq buffer-read-only t)
|
5330
|
1257 ;; No need to auto save RMAIL files in normal circumstances
|
|
1258 ;; because they contain no info except attribute changes
|
|
1259 ;; and deletion of messages.
|
|
1260 ;; The one exception is when messages are copied into an Rmail mode buffer.
|
|
1261 ;; rmail-output-to-rmail-file enables auto save when you do that.
|
270
|
1262 (setq buffer-auto-save-file-name nil)
|
19536
|
1263 (setq mode-line-modified "--")
|
270
|
1264 (use-local-map rmail-mode-map)
|
|
1265 (set-syntax-table text-mode-syntax-table)
|
|
1266 (setq local-abbrev-table text-mode-abbrev-table))
|
|
1267
|
21435
|
1268 ;; Set up the permanent locals associated with an Rmail file.
|
|
1269 (defun rmail-perm-variables ()
|
270
|
1270 (make-local-variable 'rmail-last-label)
|
2076
|
1271 (make-local-variable 'rmail-last-regexp)
|
270
|
1272 (make-local-variable 'rmail-deleted-vector)
|
17093
|
1273 (make-local-variable 'rmail-buffer)
|
|
1274 (setq rmail-buffer (current-buffer))
|
|
1275 (make-local-variable 'rmail-view-buffer)
|
|
1276 (setq rmail-view-buffer rmail-buffer)
|
270
|
1277 (make-local-variable 'rmail-summary-buffer)
|
|
1278 (make-local-variable 'rmail-summary-vector)
|
|
1279 (make-local-variable 'rmail-current-message)
|
|
1280 (make-local-variable 'rmail-total-messages)
|
7061
|
1281 (make-local-variable 'rmail-overlay-list)
|
|
1282 (setq rmail-overlay-list nil)
|
270
|
1283 (make-local-variable 'rmail-message-vector)
|
17620
|
1284 (make-local-variable 'rmail-msgref-vector)
|
270
|
1285 (make-local-variable 'rmail-inbox-list)
|
|
1286 (setq rmail-inbox-list (rmail-parse-file-inboxes))
|
3540
|
1287 ;; Provide default set of inboxes for primary mail file ~/RMAIL.
|
|
1288 (and (null rmail-inbox-list)
|
4010
|
1289 (or (equal buffer-file-name (expand-file-name rmail-file-name))
|
5192
|
1290 (equal buffer-file-truename
|
|
1291 (abbreviate-file-name (file-truename rmail-file-name))))
|
3540
|
1292 (setq rmail-inbox-list
|
|
1293 (or rmail-primary-inbox-list
|
|
1294 (list (or (getenv "MAIL")
|
|
1295 (concat rmail-spool-directory
|
5913
3d155c2636bf
(rmail-variables, rmail-insert-inbox-text): Change user-original-login-name to
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
1296 (user-login-name)))))))
|
270
|
1297 (make-local-variable 'rmail-keywords)
|
69676
|
1298 (set (make-local-variable 'tool-bar-map) rmail-tool-bar-map)
|
270
|
1299 ;; this gets generated as needed
|
7563
|
1300 (setq rmail-keywords nil))
|
270
|
1301
|
21435
|
1302 ;; Set up the non-permanent locals associated with Rmail mode.
|
|
1303 (defun rmail-variables ()
|
22045
|
1304 (make-local-variable 'save-buffer-coding-system)
|
|
1305 ;; If we don't already have a value for save-buffer-coding-system,
|
|
1306 ;; get it from buffer-file-coding-system, and clear that
|
|
1307 ;; because it should be determined in rmail-show-message.
|
|
1308 (unless save-buffer-coding-system
|
|
1309 (setq save-buffer-coding-system (or buffer-file-coding-system 'undecided))
|
|
1310 (setq buffer-file-coding-system nil))
|
21435
|
1311 ;; Don't let a local variables list in a message cause confusion.
|
22474
|
1312 (make-local-variable 'local-enable-local-variables)
|
|
1313 (setq local-enable-local-variables nil)
|
21435
|
1314 (make-local-variable 'revert-buffer-function)
|
|
1315 (setq revert-buffer-function 'rmail-revert)
|
|
1316 (make-local-variable 'font-lock-defaults)
|
|
1317 (setq font-lock-defaults
|
22045
|
1318 '(rmail-font-lock-keywords
|
49064
|
1319 t t nil nil
|
22045
|
1320 (font-lock-maximum-size . nil)
|
|
1321 (font-lock-fontify-buffer-function . rmail-fontify-buffer-function)
|
|
1322 (font-lock-unfontify-buffer-function . rmail-unfontify-buffer-function)
|
|
1323 (font-lock-inhibit-thing-lock . (lazy-lock-mode fast-lock-mode))))
|
21435
|
1324 (make-local-variable 'require-final-newline)
|
|
1325 (setq require-final-newline nil)
|
|
1326 (make-local-variable 'version-control)
|
|
1327 (setq version-control 'never)
|
|
1328 (make-local-variable 'kill-buffer-hook)
|
|
1329 (add-hook 'kill-buffer-hook 'rmail-mode-kill-summary)
|
|
1330 (make-local-variable 'file-precious-flag)
|
55152
|
1331 (setq file-precious-flag t)
|
|
1332 (make-local-variable 'desktop-save-buffer)
|
|
1333 (setq desktop-save-buffer t))
|
21435
|
1334
|
270
|
1335 ;; Handle M-x revert-buffer done in an rmail-mode buffer.
|
|
1336 (defun rmail-revert (arg noconfirm)
|
37956
|
1337 (set-buffer rmail-buffer)
|
22724
|
1338 (let* ((revert-buffer-function (default-value 'revert-buffer-function))
|
|
1339 (rmail-enable-multibyte enable-multibyte-characters)
|
|
1340 ;; See similar code in `rmail'.
|
|
1341 (coding-system-for-read (and rmail-enable-multibyte 'raw-text)))
|
270
|
1342 ;; Call our caller again, but this time it does the default thing.
|
|
1343 (if (revert-buffer arg noconfirm)
|
|
1344 ;; If the user said "yes", and we changed something,
|
|
1345 ;; reparse the messages.
|
20681
|
1346 (progn
|
37956
|
1347 (set-buffer rmail-buffer)
|
|
1348 (rmail-mode-2)
|
22724
|
1349 ;; Convert all or part to Babyl file if possible.
|
270
|
1350 (rmail-convert-file)
|
22724
|
1351 ;; We have read the file as raw-text, so the buffer is set to
|
|
1352 ;; unibyte. Make it multibyte if necessary.
|
|
1353 (if (and rmail-enable-multibyte
|
|
1354 (not enable-multibyte-characters))
|
|
1355 (set-buffer-multibyte t))
|
270
|
1356 (goto-char (point-max))
|
22724
|
1357 (rmail-set-message-counters)
|
|
1358 (rmail-show-message rmail-total-messages)
|
|
1359 (run-hooks 'rmail-mode-hook)))))
|
270
|
1360
|
|
1361 ;; Return a list of files from this buffer's Mail: option.
|
|
1362 ;; Does not assume that messages have been parsed.
|
|
1363 ;; Just returns nil if buffer does not look like Babyl format.
|
|
1364 (defun rmail-parse-file-inboxes ()
|
|
1365 (save-excursion
|
|
1366 (save-restriction
|
|
1367 (widen)
|
|
1368 (goto-char 1)
|
|
1369 (cond ((looking-at "BABYL OPTIONS:")
|
|
1370 (search-forward "\n\^_" nil 'move)
|
|
1371 (narrow-to-region 1 (point))
|
|
1372 (goto-char 1)
|
|
1373 (if (search-forward "\nMail:" nil t)
|
|
1374 (progn
|
|
1375 (narrow-to-region (point) (progn (end-of-line) (point)))
|
|
1376 (goto-char (point-min))
|
|
1377 (mail-parse-comma-list))))))))
|
|
1378
|
|
1379 (defun rmail-expunge-and-save ()
|
|
1380 "Expunge and save RMAIL file."
|
|
1381 (interactive)
|
|
1382 (rmail-expunge)
|
37611
|
1383 (set-buffer rmail-buffer)
|
5860
|
1384 (save-buffer)
|
|
1385 (if (rmail-summary-exists)
|
|
1386 (rmail-select-summary (set-buffer-modified-p nil))))
|
270
|
1387
|
|
1388 (defun rmail-quit ()
|
24110
|
1389 "Quit out of RMAIL.
|
|
1390 Hook `rmail-quit-hook' is run after expunging."
|
270
|
1391 (interactive)
|
|
1392 (rmail-expunge-and-save)
|
24110
|
1393 (when (boundp 'rmail-quit-hook)
|
|
1394 (run-hooks 'rmail-quit-hook))
|
270
|
1395 ;; Don't switch to the summary buffer even if it was recently visible.
|
21100
|
1396 (when rmail-summary-buffer
|
|
1397 (replace-buffer-in-windows rmail-summary-buffer)
|
|
1398 (bury-buffer rmail-summary-buffer))
|
37611
|
1399 (if rmail-enable-mime
|
|
1400 (let ((obuf rmail-buffer)
|
|
1401 (ovbuf rmail-view-buffer))
|
|
1402 (set-buffer rmail-view-buffer)
|
|
1403 (quit-window)
|
|
1404 (replace-buffer-in-windows ovbuf)
|
|
1405 (replace-buffer-in-windows obuf)
|
|
1406 (bury-buffer obuf))
|
|
1407 (let ((obuf (current-buffer)))
|
|
1408 (quit-window)
|
|
1409 (replace-buffer-in-windows obuf))))
|
270
|
1410
|
10970
|
1411 (defun rmail-bury ()
|
|
1412 "Bury current Rmail buffer and its summary buffer."
|
|
1413 (interactive)
|
|
1414 ;; This let var was called rmail-buffer, but that interfered
|
|
1415 ;; with the buffer-local var used in summary buffers.
|
|
1416 (let ((buffer-to-bury (current-buffer)))
|
|
1417 (if (rmail-summary-exists)
|
|
1418 (let (window)
|
|
1419 (while (setq window (get-buffer-window rmail-summary-buffer))
|
21100
|
1420 (quit-window nil window))
|
10970
|
1421 (bury-buffer rmail-summary-buffer)))
|
21100
|
1422 (quit-window)))
|
10970
|
1423
|
|
1424 (defun rmail-duplicate-message ()
|
|
1425 "Create a duplicated copy of the current message.
|
|
1426 The duplicate copy goes into the Rmail file just after the
|
|
1427 original copy."
|
|
1428 (interactive)
|
|
1429 (widen)
|
|
1430 (let ((buffer-read-only nil)
|
|
1431 (number rmail-current-message)
|
|
1432 (string (buffer-substring (rmail-msgbeg rmail-current-message)
|
|
1433 (rmail-msgend rmail-current-message))))
|
|
1434 (goto-char (rmail-msgend rmail-current-message))
|
|
1435 (insert string)
|
|
1436 (rmail-forget-messages)
|
|
1437 (rmail-show-message number)
|
|
1438 (message "Message duplicated")))
|
|
1439
|
270
|
1440 ;;;###autoload
|
|
1441 (defun rmail-input (filename)
|
2076
|
1442 "Run Rmail on file FILENAME."
|
270
|
1443 (interactive "FRun rmail on RMAIL file: ")
|
|
1444 (rmail filename))
|
|
1445
|
16241
|
1446
|
|
1447 ;; This used to scan subdirectories recursively, but someone pointed out
|
|
1448 ;; that if the user wants that, person can put all the files in one dir.
|
|
1449 ;; And the recursive scan was slow. So I took it out.
|
|
1450 ;; rms, Sep 1996.
|
8909
d9c10eb46ce9
Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1451 (defun rmail-find-all-files (start)
|
16241
|
1452 "Return list of file in dir START that match `rmail-secondary-file-regexp'."
|
8909
d9c10eb46ce9
Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1453 (if (file-accessible-directory-p start)
|
9449
|
1454 ;; Don't sort here.
|
16241
|
1455 (let* ((case-fold-search t)
|
|
1456 (files (directory-files start t rmail-secondary-file-regexp)))
|
9449
|
1457 ;; Sort here instead of in directory-files
|
|
1458 ;; because this list is usually much shorter.
|
16241
|
1459 (sort files 'string<))))
|
7321
|
1460
|
8909
d9c10eb46ce9
Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1461 (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>
diff
changeset
|
1462 (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>
diff
changeset
|
1463 (mapcar
|
d9c10eb46ce9
Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1464 (function (lambda (item)
|
10971
|
1465 (let (command)
|
|
1466 (if (consp item)
|
|
1467 (progn
|
|
1468 (setq command
|
45144
|
1469 (rmail-list-to-menu (car item) (cdr item)
|
|
1470 action
|
10971
|
1471 (if full-name
|
|
1472 (concat full-name "/"
|
|
1473 (car item))
|
|
1474 (car item))))
|
|
1475 (setq name (car item)))
|
8909
d9c10eb46ce9
Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1476 (progn
|
10971
|
1477 (setq name item)
|
45144
|
1478 (setq command
|
10971
|
1479 (list 'lambda () '(interactive)
|
|
1480 (list action
|
45144
|
1481 (expand-file-name
|
10971
|
1482 (if full-name
|
|
1483 (concat full-name "/" item)
|
|
1484 item)
|
|
1485 rmail-secondary-file-directory))))))
|
|
1486 (define-key menu (vector (intern name))
|
|
1487 (cons name command)))))
|
9449
|
1488 (reverse l))
|
8909
d9c10eb46ce9
Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1489 menu))
|
45144
|
1490
|
9449
|
1491 ;; This command is always "disabled" when it appears in a menu.
|
|
1492 (put 'rmail-disable-menu 'menu-enable ''nil)
|
|
1493
|
8909
d9c10eb46ce9
Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1494 (defun rmail-construct-io-menu ()
|
d9c10eb46ce9
Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1495 (let ((files (rmail-find-all-files rmail-secondary-file-directory)))
|
9449
|
1496 (if files
|
8909
d9c10eb46ce9
Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1497 (progn
|
d9c10eb46ce9
Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1498 (define-key rmail-mode-map [menu-bar classify input-menu]
|
45144
|
1499 (cons "Input Rmail File"
|
|
1500 (rmail-list-to-menu "Input Rmail File"
|
9449
|
1501 files
|
8909
d9c10eb46ce9
Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1502 'rmail-input)))
|
d9c10eb46ce9
Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1503 (define-key rmail-mode-map [menu-bar classify output-menu]
|
45144
|
1504 (cons "Output Rmail File"
|
|
1505 (rmail-list-to-menu "Output Rmail File"
|
9449
|
1506 files
|
|
1507 'rmail-output-to-rmail-file))))
|
|
1508
|
|
1509 (define-key rmail-mode-map [menu-bar classify input-menu]
|
|
1510 '("Input Rmail File" . rmail-disable-menu))
|
|
1511 (define-key rmail-mode-map [menu-bar classify output-menu]
|
|
1512 '("Output Rmail File" . rmail-disable-menu)))))
|
6408
|
1513
|
270
|
1514
|
|
1515 ;;;; *** Rmail input ***
|
|
1516
|
|
1517 ;; RLK feature not added in this version:
|
|
1518 ;; argument specifies inbox file or files in various ways.
|
|
1519
|
|
1520 (defun rmail-get-new-mail (&optional file-name)
|
|
1521 "Move any new mail from this RMAIL file's inbox files.
|
|
1522 The inbox files can be specified with the file's Mail: option. The
|
|
1523 variable `rmail-primary-inbox-list' specifies the inboxes for your
|
2423
|
1524 primary RMAIL file if it has no Mail: option. By default, this is
|
|
1525 your /usr/spool/mail/$USER.
|
270
|
1526
|
|
1527 You can also specify the file to get new mail from. In this case, the
|
|
1528 file of new mail is not changed or deleted. Noninteractively, you can
|
|
1529 pass the inbox file name as an argument. Interactively, a prefix
|
8701
|
1530 argument causes us to read a file name and use that file as the inbox.
|
|
1531
|
16908
|
1532 If the variable `rmail-preserve-inbox' is non-nil, new mail will
|
|
1533 always be left in inbox files rather than deleted.
|
|
1534
|
10103
|
1535 This function runs `rmail-get-new-mail-hook' before saving the updated file.
|
|
1536 It returns t if it got any new messages."
|
270
|
1537 (interactive
|
|
1538 (list (if current-prefix-arg
|
|
1539 (read-file-name "Get new mail from file: "))))
|
15549
|
1540 (run-hooks 'rmail-before-get-new-mail-hook)
|
11533
|
1541 ;; If the disk file has been changed from under us,
|
|
1542 ;; revert to it before we get new mail.
|
270
|
1543 (or (verify-visited-file-modtime (current-buffer))
|
11533
|
1544 (find-file (buffer-file-name)))
|
37611
|
1545 (set-buffer rmail-buffer)
|
270
|
1546 (rmail-maybe-set-message-counters)
|
|
1547 (widen)
|
|
1548 ;; Get rid of all undo records for this buffer.
|
|
1549 (or (eq buffer-undo-list t)
|
|
1550 (setq buffer-undo-list nil))
|
16241
|
1551 (let ((all-files (if file-name (list file-name)
|
20053
|
1552 rmail-inbox-list))
|
20943
|
1553 (rmail-enable-multibyte (default-value 'enable-multibyte-characters))
|
20053
|
1554 found)
|
16241
|
1555 (unwind-protect
|
20053
|
1556 (progn
|
16928
|
1557 (while all-files
|
|
1558 (let ((opoint (point))
|
|
1559 (new-messages 0)
|
53598
|
1560 (rsf-number-of-spam 0)
|
16928
|
1561 (delete-files ())
|
|
1562 ;; If buffer has not changed yet, and has not been saved yet,
|
|
1563 ;; don't replace the old backup file now.
|
|
1564 (make-backup-files (and make-backup-files (buffer-modified-p)))
|
|
1565 (buffer-read-only nil)
|
|
1566 ;; Don't make undo records for what we do in getting mail.
|
|
1567 (buffer-undo-list t)
|
|
1568 success
|
|
1569 ;; Files to insert this time around.
|
|
1570 files
|
|
1571 ;; Last names of those files.
|
|
1572 file-last-names)
|
|
1573 ;; Pull files off all-files onto files
|
|
1574 ;; as long as there is no name conflict.
|
|
1575 ;; A conflict happens when two inbox file names
|
|
1576 ;; have the same last component.
|
|
1577 (while (and all-files
|
|
1578 (not (member (file-name-nondirectory (car all-files))
|
|
1579 file-last-names)))
|
|
1580 (setq files (cons (car all-files) files)
|
|
1581 file-last-names
|
|
1582 (cons (file-name-nondirectory (car all-files)) files))
|
|
1583 (setq all-files (cdr all-files)))
|
|
1584 ;; Put them back in their original order.
|
|
1585 (setq files (nreverse files))
|
16241
|
1586
|
16928
|
1587 (goto-char (point-max))
|
|
1588 (skip-chars-backward " \t\n") ; just in case of brain damage
|
|
1589 (delete-region (point) (point-max)) ; caused by require-final-newline
|
|
1590 (save-excursion
|
|
1591 (save-restriction
|
|
1592 (narrow-to-region (point) (point))
|
|
1593 ;; Read in the contents of the inbox files,
|
|
1594 ;; renaming them as necessary,
|
|
1595 ;; and adding to the list of files to delete eventually.
|
|
1596 (if file-name
|
|
1597 (rmail-insert-inbox-text files nil)
|
|
1598 (setq delete-files (rmail-insert-inbox-text files t)))
|
|
1599 ;; Scan the new text and convert each message to babyl format.
|
|
1600 (goto-char (point-min))
|
|
1601 (unwind-protect
|
|
1602 (save-excursion
|
|
1603 (setq new-messages (rmail-convert-to-babyl-format)
|
|
1604 success t))
|
23530
|
1605 ;; Try to delete the garbage just inserted.
|
|
1606 (or success (delete-region (point-min) (point-max)))
|
16928
|
1607 ;; If we could not convert the file's inboxes,
|
|
1608 ;; rename the files we tried to read
|
|
1609 ;; so we won't over and over again.
|
|
1610 (if (and (not file-name) (not success))
|
|
1611 (let ((delfiles delete-files)
|
|
1612 (count 0))
|
|
1613 (while delfiles
|
|
1614 (while (file-exists-p (format "RMAILOSE.%d" count))
|
|
1615 (setq count (1+ count)))
|
|
1616 (rename-file (car delfiles)
|
|
1617 (format "RMAILOSE.%d" count))
|
|
1618 (setq delfiles (cdr delfiles))))))
|
|
1619 (or (zerop new-messages)
|
|
1620 (let (success)
|
|
1621 (widen)
|
|
1622 (search-backward "\n\^_" nil t)
|
|
1623 (narrow-to-region (point) (point-max))
|
|
1624 (goto-char (1+ (point-min)))
|
|
1625 (rmail-count-new-messages)
|
|
1626 (run-hooks 'rmail-get-new-mail-hook)
|
|
1627 (save-buffer)))
|
|
1628 ;; Delete the old files, now that babyl file is saved.
|
|
1629 (while delete-files
|
|
1630 (condition-case ()
|
|
1631 ;; First, try deleting.
|
|
1632 (condition-case ()
|
|
1633 (delete-file (car delete-files))
|
|
1634 (file-error
|
|
1635 ;; If we can't delete it, truncate it.
|
|
1636 (write-region (point) (point) (car delete-files))))
|
|
1637 (file-error nil))
|
|
1638 (setq delete-files (cdr delete-files)))))
|
|
1639 (if (= new-messages 0)
|
|
1640 (progn (goto-char opoint)
|
|
1641 (if (or file-name rmail-inbox-list)
|
|
1642 (message "(No new mail has arrived)")))
|
53598
|
1643 ;; check new messages to see if any of them is spam:
|
54049
|
1644 (if (and (featurep 'rmail-spam-filter)
|
|
1645 rmail-use-spam-filter)
|
53598
|
1646 (let*
|
|
1647 ((old-messages (- rmail-total-messages new-messages))
|
|
1648 (rsf-scanned-message-number (1+ old-messages))
|
|
1649 ;; save deletion flags of old messages: vector starts
|
|
1650 ;; at zero (is one longer that no of messages),
|
|
1651 ;; therefore take 1+ old-messages
|
|
1652 (save-deleted
|
|
1653 (substring rmail-deleted-vector 0 (1+
|
|
1654 old-messages))))
|
|
1655 ;; set all messages to undeleted
|
|
1656 (setq rmail-deleted-vector
|
|
1657 (make-string (1+ rmail-total-messages) ?\ ))
|
|
1658 (while (<= rsf-scanned-message-number
|
|
1659 rmail-total-messages)
|
|
1660 (progn
|
|
1661 (if (not (rmail-spam-filter rsf-scanned-message-number))
|
|
1662 (progn (setq rsf-number-of-spam (1+ rsf-number-of-spam)))
|
|
1663 )
|
|
1664 (setq rsf-scanned-message-number (1+ rsf-scanned-message-number))
|
|
1665 ))
|
|
1666 (if (> rsf-number-of-spam 0)
|
|
1667 (progn
|
|
1668 (when (rmail-expunge-confirmed)
|
|
1669 (rmail-only-expunge t))
|
|
1670 ))
|
|
1671 (setq rmail-deleted-vector
|
|
1672 (concat
|
|
1673 save-deleted
|
|
1674 (make-string (- rmail-total-messages old-messages)
|
|
1675 ?\ )))
|
|
1676 ))
|
|
1677 (if (rmail-summary-exists)
|
16928
|
1678 (rmail-select-summary
|
|
1679 (rmail-update-summary)))
|
53598
|
1680 (message "%d new message%s read%s"
|
|
1681 new-messages (if (= 1 new-messages) "" "s")
|
|
1682 ;; print out a message on number of spam messages found:
|
54049
|
1683 (if (and (featurep 'rmail-spam-filter)
|
|
1684 rmail-use-spam-filter
|
|
1685 (> rsf-number-of-spam 0))
|
72721
|
1686 (cond ((= 1 new-messages)
|
|
1687 ", and appears to be spam")
|
|
1688 ((= rsf-number-of-spam new-messages)
|
|
1689 ", and all appear to be spam")
|
|
1690 ((> rsf-number-of-spam 1)
|
|
1691 (format ", and %d appear to be spam"
|
|
1692 rsf-number-of-spam))
|
|
1693 (t
|
|
1694 ", and 1 appears to be spam"))
|
53598
|
1695 ""))
|
54049
|
1696 (if (and (featurep 'rmail-spam-filter)
|
|
1697 rmail-use-spam-filter
|
|
1698 (> rsf-number-of-spam 0))
|
58184
|
1699 (progn (if rsf-beep (beep t))
|
|
1700 (sleep-for rsf-sleep-after-message)))
|
53598
|
1701
|
16928
|
1702 ;; Move to the first new message
|
|
1703 ;; unless we have other unseen messages before it.
|
|
1704 (rmail-show-message (rmail-first-unseen-message))
|
|
1705 (run-hooks 'rmail-after-get-new-mail-hook)
|
|
1706 (setq found t))))
|
|
1707 found)
|
16241
|
1708 ;; Don't leave the buffer screwed up if we get a disk-full error.
|
20053
|
1709 (or found (rmail-show-message)))))
|
270
|
1710
|
59561
|
1711 (defun rmail-parse-url (file)
|
|
1712 "Parse the supplied URL. Return (list MAILBOX-NAME REMOTE PASSWORD GOT-PASSWORD)
|
|
1713 WHERE MAILBOX-NAME is the name of the mailbox suitable as argument to the
|
|
1714 actual version of `movemail', REMOTE is non-nil if MAILBOX-NAME refers to
|
|
1715 a remote mailbox, PASSWORD is the password if it should be
|
|
1716 supplied as a separate argument to `movemail' or nil otherwise, GOT-PASSWORD
|
|
1717 is non-nil if the user has supplied the password interactively.
|
|
1718 "
|
61223
|
1719 (cond
|
|
1720 ((string-match "^\\([^:]+\\)://\\(\\([^:@]+\\)\\(:\\([^@]+\\)\\)?@\\)?.*" file)
|
59996
|
1721 (let (got-password supplied-password
|
59561
|
1722 (proto (match-string 1 file))
|
|
1723 (user (match-string 3 file))
|
|
1724 (pass (match-string 5 file))
|
|
1725 (host (substring file (or (match-end 2)
|
|
1726 (+ 3 (match-end 1))))))
|
64754
|
1727
|
59561
|
1728 (if (not pass)
|
|
1729 (when rmail-remote-password-required
|
|
1730 (setq got-password (not (rmail-have-password)))
|
|
1731 (setq supplied-password (rmail-get-remote-password
|
|
1732 (string-equal proto "imap")))))
|
59996
|
1733
|
59561
|
1734 (if (rmail-movemail-variant-p 'emacs)
|
|
1735 (if (string-equal proto "pop")
|
|
1736 (list (concat "po:" user ":" host)
|
|
1737 t
|
|
1738 (or pass supplied-password)
|
|
1739 got-password)
|
|
1740 (error "Emacs movemail does not support %s protocol" proto))
|
|
1741 (list file
|
|
1742 (or (string-equal proto "pop") (string-equal proto "imap"))
|
|
1743 supplied-password
|
61223
|
1744 got-password))))
|
64754
|
1745
|
61223
|
1746 ((string-match "^po:\\([^:]+\\)\\(:\\(.*\\)\\)?" file)
|
|
1747 (let (got-password supplied-password
|
|
1748 (proto "pop")
|
|
1749 (user (match-string 1 file))
|
|
1750 (host (match-string 3 file)))
|
64754
|
1751
|
61223
|
1752 (when rmail-remote-password-required
|
|
1753 (setq got-password (not (rmail-have-password)))
|
|
1754 (setq supplied-password (rmail-get-remote-password nil)))
|
|
1755
|
|
1756 (list file "pop" supplied-password got-password)))
|
64754
|
1757
|
61223
|
1758 (t
|
|
1759 (list file nil nil nil))))
|
59561
|
1760
|
270
|
1761 (defun rmail-insert-inbox-text (files renamep)
|
16241
|
1762 ;; Detect a locked file now, so that we avoid moving mail
|
|
1763 ;; out of the real inbox file. (That could scare people.)
|
|
1764 (or (memq (file-locked-p buffer-file-name) '(nil t))
|
|
1765 (error "RMAIL file %s is locked"
|
|
1766 (file-name-nondirectory buffer-file-name)))
|
22838
|
1767 (let (file tofile delete-files movemail popmail got-password password)
|
270
|
1768 (while files
|
59561
|
1769 ;; Handle remote mailbox names specially; don't expand as filenames
|
24220
|
1770 ;; in case the userid contains a directory separator.
|
|
1771 (setq file (car files))
|
59561
|
1772 (let ((url-data (rmail-parse-url file)))
|
|
1773 (setq file (nth 0 url-data))
|
|
1774 (setq popmail (nth 1 url-data))
|
|
1775 (setq password (nth 2 url-data))
|
|
1776 (setq got-password (nth 3 url-data)))
|
|
1777
|
24220
|
1778 (if popmail
|
|
1779 (setq renamep t)
|
|
1780 (setq file (file-truename
|
36830
|
1781 (substitute-in-file-name (expand-file-name file)))))
|
24220
|
1782 (setq tofile (expand-file-name
|
12650
6f4785fee5cc
(rmail-insert-inbox-text): Always use movemail when renaming a file.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1783 ;; 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>
diff
changeset
|
1784 ;; in case of multiple inboxes that need moving.
|
59561
|
1785 (concat ".newmail-"
|
59996
|
1786 (file-name-nondirectory
|
59561
|
1787 (if (memq system-type '(windows-nt cygwin))
|
|
1788 ;; cannot have "po:" in file name
|
|
1789 (substring file 3)
|
|
1790 file)))
|
12650
6f4785fee5cc
(rmail-insert-inbox-text): Always use movemail when renaming a file.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1791 ;; 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>
diff
changeset
|
1792 ;; 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>
diff
changeset
|
1793 ;; 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>
diff
changeset
|
1794 ;; file isn't.
|
6f4785fee5cc
(rmail-insert-inbox-text): Always use movemail when renaming a file.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1795 (file-name-directory
|
6f4785fee5cc
(rmail-insert-inbox-text): Always use movemail when renaming a file.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1796 (expand-file-name buffer-file-name))))
|
6f4785fee5cc
(rmail-insert-inbox-text): Always use movemail when renaming a file.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1797 ;; 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>
diff
changeset
|
1798 ;; since there can be mailboxes in various directories.
|
61223
|
1799 (if (not popmail)
|
270
|
1800 (progn
|
|
1801 ;; On some systems, /usr/spool/mail/foo is a directory
|
|
1802 ;; and the actual inbox is /usr/spool/mail/foo/foo.
|
|
1803 (if (file-directory-p file)
|
5913
3d155c2636bf
(rmail-variables, rmail-insert-inbox-text): Change user-original-login-name to
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
1804 (setq file (expand-file-name (user-login-name)
|
270
|
1805 file)))))
|
11452
|
1806 (cond (popmail
|
59561
|
1807 (message "Getting mail from the remote server ..."))
|
11452
|
1808 ((and (file-exists-p tofile)
|
|
1809 (/= 0 (nth 7 (file-attributes tofile))))
|
|
1810 (message "Getting mail from %s..." tofile))
|
|
1811 ((and (file-exists-p file)
|
|
1812 (/= 0 (nth 7 (file-attributes file))))
|
|
1813 (message "Getting mail from %s..." file)))
|
270
|
1814 ;; Set TOFILE if have not already done so, and
|
|
1815 ;; rename or copy the file FILE to TOFILE if and as appropriate.
|
|
1816 (cond ((not renamep)
|
|
1817 (setq tofile file))
|
2076
|
1818 ((or (file-exists-p tofile) (and (not popmail)
|
|
1819 (not (file-exists-p file))))
|
270
|
1820 nil)
|
|
1821 (t
|
59561
|
1822 (with-temp-buffer
|
|
1823 (let ((errors (current-buffer)))
|
|
1824 (buffer-disable-undo errors)
|
|
1825 (let ((args
|
|
1826 (append
|
78605
58298f7fd671
(rmail-movemail-variant-p): Call on load to set movemail related variables.
Glenn Morris <rgm@gnu.org>
diff
changeset
|
1827 (list rmail-movemail-program nil errors nil)
|
59561
|
1828 (if rmail-preserve-inbox
|
|
1829 (list "-p")
|
|
1830 nil)
|
|
1831 (if (rmail-movemail-variant-p 'mailutils)
|
|
1832 (append (list "--emacs") rmail-movemail-flags)
|
|
1833 rmail-movemail-flags)
|
|
1834 (list file tofile)
|
|
1835 (if password (list password) nil))))
|
|
1836 (apply 'call-process args))
|
|
1837 (if (not (buffer-modified-p errors))
|
|
1838 ;; No output => movemail won
|
|
1839 nil
|
|
1840 (set-buffer errors)
|
|
1841 (subst-char-in-region (point-min) (point-max)
|
|
1842 ?\n ?\ )
|
|
1843 (goto-char (point-max))
|
|
1844 (skip-chars-backward " \t")
|
|
1845 (delete-region (point) (point-max))
|
|
1846 (goto-char (point-min))
|
|
1847 (if (looking-at "movemail: ")
|
|
1848 (delete-region (point-min) (match-end 0)))
|
|
1849 (beep t)
|
|
1850 ;; If we just read the password, most likely it is
|
|
1851 ;; wrong. Otherwise, see if there is a specific
|
|
1852 ;; reason to think that the problem is a wrong passwd.
|
|
1853 (if (or got-password
|
|
1854 (re-search-forward rmail-remote-password-error
|
|
1855 nil t))
|
|
1856 (rmail-set-remote-password nil))
|
|
1857
|
|
1858 ;; If using Mailutils, remove initial error code
|
|
1859 ;; abbreviation
|
|
1860 (when (rmail-movemail-variant-p 'mailutils)
|
|
1861 (goto-char (point-min))
|
|
1862 (when (looking-at "[A-Z][A-Z0-9_]*:")
|
|
1863 (delete-region (point-min) (match-end 0))))
|
59996
|
1864
|
59561
|
1865 (message "movemail: %s"
|
|
1866 (buffer-substring (point-min)
|
|
1867 (point-max)))
|
59996
|
1868
|
59561
|
1869 (sit-for 3)
|
|
1870 nil)))))
|
59996
|
1871
|
270
|
1872 ;; At this point, TOFILE contains the name to read:
|
|
1873 ;; Either the alternate name (if we renamed)
|
|
1874 ;; or the actual inbox (if not renaming).
|
|
1875 (if (file-exists-p tofile)
|
17093
|
1876 (let ((coding-system-for-read 'no-conversion)
|
|
1877 size)
|
270
|
1878 (goto-char (point-max))
|
17093
|
1879 (setq size (nth 1 (insert-file-contents tofile)))
|
270
|
1880 (goto-char (point-max))
|
|
1881 (or (= (preceding-char) ?\n)
|
|
1882 (zerop size)
|
|
1883 (insert ?\n))
|
16908
|
1884 (if (not (and rmail-preserve-inbox (string= file tofile)))
|
|
1885 (setq delete-files (cons tofile delete-files)))))
|
270
|
1886 (message "")
|
|
1887 (setq files (cdr files)))
|
|
1888 delete-files))
|
|
1889
|
24209
|
1890 ;; Decode the region specified by FROM and TO by CODING.
|
|
1891 ;; If CODING is nil or an invalid coding system, decode by `undecided'.
|
|
1892 (defun rmail-decode-region (from to coding)
|
|
1893 (if (or (not coding) (not (coding-system-p coding)))
|
|
1894 (setq coding 'undecided))
|
55114
|
1895 ;; Use -dos decoding, to remove ^M characters left from base64 or
|
|
1896 ;; rogue qp-encoded text.
|
|
1897 (decode-coding-region from to
|
|
1898 (coding-system-change-eol-conversion coding 1))
|
|
1899 ;; Don't reveal the fact we used -dos decoding, as users generally
|
|
1900 ;; will not expect the RMAIL buffer to use DOS EOL format.
|
|
1901 (setq buffer-file-coding-system
|
|
1902 (setq last-coding-system-used
|
|
1903 (coding-system-change-eol-conversion coding 0))))
|
24209
|
1904
|
270
|
1905 ;; the rmail-break-forwarded-messages feature is not implemented
|
|
1906 (defun rmail-convert-to-babyl-format ()
|
|
1907 (let ((count 0) start
|
402
|
1908 (case-fold-search nil)
|
72721
|
1909 (buffer-undo-list t)
|
402
|
1910 (invalid-input-resync
|
|
1911 (function (lambda ()
|
|
1912 (message "Invalid Babyl format in inbox!")
|
16241
|
1913 (sit-for 3)
|
402
|
1914 ;; Try to get back in sync with a real message.
|
|
1915 (if (re-search-forward
|
18091
|
1916 (concat rmail-mmdf-delim1 "\\|^From") nil t)
|
402
|
1917 (beginning-of-line)
|
|
1918 (goto-char (point-max)))))))
|
270
|
1919 (goto-char (point-min))
|
|
1920 (save-restriction
|
|
1921 (while (not (eobp))
|
17093
|
1922 (setq start (point))
|
270
|
1923 (cond ((looking-at "BABYL OPTIONS:");Babyl header
|
402
|
1924 (if (search-forward "\n\^_" nil t)
|
|
1925 ;; If we find the proper terminator, delete through there.
|
|
1926 (delete-region (point-min) (point))
|
|
1927 (funcall invalid-input-resync)
|
405
|
1928 (delete-region (point-min) (point))))
|
270
|
1929 ;; Babyl format message
|
|
1930 ((looking-at "\^L")
|
|
1931 (or (search-forward "\n\^_" nil t)
|
402
|
1932 (funcall invalid-input-resync))
|
270
|
1933 (setq count (1+ count))
|
|
1934 ;; Make sure there is no extra white space after the ^_
|
|
1935 ;; at the end of the message.
|
|
1936 ;; Narrowing will make sure that whatever follows the junk
|
|
1937 ;; will be treated properly.
|
|
1938 (delete-region (point)
|
|
1939 (save-excursion
|
|
1940 (skip-chars-forward " \t\n")
|
|
1941 (point)))
|
52358
|
1942 (save-excursion
|
|
1943 (let* ((header-end
|
|
1944 (progn
|
|
1945 (save-excursion
|
|
1946 (goto-char start)
|
|
1947 (forward-line 1)
|
|
1948 (if (looking-at "0")
|
|
1949 (forward-line 1)
|
|
1950 (forward-line 2))
|
|
1951 (save-restriction
|
|
1952 (narrow-to-region (point) (point-max))
|
|
1953 (rfc822-goto-eoh)
|
|
1954 (point)))))
|
|
1955 (case-fold-search t)
|
|
1956 (quoted-printable-header-field-end
|
|
1957 (save-excursion
|
|
1958 (goto-char start)
|
|
1959 (re-search-forward
|
|
1960 "^content-transfer-encoding:\\(\n?[\t ]\\)*quoted-printable\\(\n?[\t ]\\)*"
|
|
1961 header-end t)))
|
|
1962 (base64-header-field-end
|
|
1963 (save-excursion
|
|
1964 (goto-char start)
|
77699
1608babbc1ce
(rmail-convert-to-babyl-format): Check content-transfer-encoding _last_,
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
1965 ;; Don't try to decode non-text data.
|
76916
31c4e5bc7e74
(rmail-convert-to-babyl-format): Don't try to decode base-64 encoded body
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
1966 (and (re-search-forward
|
77699
1608babbc1ce
(rmail-convert-to-babyl-format): Check content-transfer-encoding _last_,
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
1967 "^content-type:\\(\n?[\t ]\\)\\(text\\|message\\)/"
|
76916
31c4e5bc7e74
(rmail-convert-to-babyl-format): Don't try to decode base-64 encoded body
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
1968 header-end t)
|
77699
1608babbc1ce
(rmail-convert-to-babyl-format): Check content-transfer-encoding _last_,
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
1969 (goto-char start)
|
76916
31c4e5bc7e74
(rmail-convert-to-babyl-format): Don't try to decode base-64 encoded body
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
1970 (re-search-forward
|
77699
1608babbc1ce
(rmail-convert-to-babyl-format): Check content-transfer-encoding _last_,
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
1971 "^content-transfer-encoding:\\(\n?[\t ]\\)*base64\\(\n?[\t ]\\)*"
|
76916
31c4e5bc7e74
(rmail-convert-to-babyl-format): Don't try to decode base-64 encoded body
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
1972 header-end t)))))
|
52358
|
1973 (if quoted-printable-header-field-end
|
|
1974 (save-excursion
|
53570
8e83b9e560f0
(rmail-convert-to-babyl-format): Use mail-unquote-printable-region.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1975 (unless
|
54262
|
1976 (mail-unquote-printable-region header-end (point) nil t t)
|
53570
8e83b9e560f0
(rmail-convert-to-babyl-format): Use mail-unquote-printable-region.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1977 (message "Malformed MIME quoted-printable message"))
|
52358
|
1978 ;; Change "quoted-printable" to "8bit",
|
|
1979 ;; to reflect the decoding we just did.
|
|
1980 (goto-char quoted-printable-header-field-end)
|
|
1981 (delete-region (point) (search-backward ":"))
|
|
1982 (insert ": 8bit")))
|
|
1983 (if base64-header-field-end
|
53445
|
1984 (save-excursion
|
|
1985 (when
|
|
1986 (condition-case nil
|
|
1987 (progn
|
|
1988 (base64-decode-region (1+ header-end)
|
|
1989 (- (point) 2))
|
|
1990 t)
|
|
1991 (error nil))
|
|
1992 ;; Change "base64" to "8bit", to reflect the
|
|
1993 ;; decoding we just did.
|
|
1994 (goto-char base64-header-field-end)
|
|
1995 (delete-region (point) (search-backward ":"))
|
|
1996 (insert ": 8bit"))))
|
52358
|
1997 (setq last-coding-system-used nil)
|
|
1998 (or rmail-enable-mime
|
|
1999 (not rmail-enable-multibyte)
|
|
2000 (let ((mime-charset
|
|
2001 (if (and rmail-decode-mime-charset
|
|
2002 (save-excursion
|
|
2003 (goto-char start)
|
|
2004 (search-forward "\n\n" nil t)
|
|
2005 (let ((case-fold-search t))
|
|
2006 (re-search-backward
|
|
2007 rmail-mime-charset-pattern
|
|
2008 start t))))
|
70771
|
2009 (intern (downcase (match-string 1))))))
|
52358
|
2010 (rmail-decode-region start (point) mime-charset)))))
|
22045
|
2011 ;; Add an X-Coding-System: header if we don't have one.
|
|
2012 (save-excursion
|
|
2013 (goto-char start)
|
|
2014 (forward-line 1)
|
|
2015 (if (looking-at "0")
|
|
2016 (forward-line 1)
|
|
2017 (forward-line 2))
|
|
2018 (or (save-restriction
|
|
2019 (narrow-to-region (point) (point-max))
|
|
2020 (rfc822-goto-eoh)
|
|
2021 (goto-char (point-min))
|
|
2022 (re-search-forward "^X-Coding-System:" nil t))
|
|
2023 (insert "X-Coding-System: "
|
|
2024 (symbol-name last-coding-system-used)
|
|
2025 "\n")))
|
52864
6cb616f8963b
(rmail-convert-to-babyl-format): Display a message while converting to Babyl.
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
2026 (narrow-to-region (point) (point-max))
|
6cb616f8963b
(rmail-convert-to-babyl-format): Display a message while converting to Babyl.
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
2027 (and (= 0 (% count 10))
|
52866
|
2028 (message "Converting to Babyl format...%d" count)))
|
270
|
2029 ;;*** MMDF format
|
|
2030 ((let ((case-fold-search t))
|
18091
|
2031 (looking-at rmail-mmdf-delim1))
|
270
|
2032 (let ((case-fold-search t))
|
|
2033 (replace-match "\^L\n0, unseen,,\n*** EOOH ***\n")
|
18091
|
2034 (re-search-forward rmail-mmdf-delim2 nil t)
|
270
|
2035 (replace-match "\^_"))
|
|
2036 (save-excursion
|
|
2037 (save-restriction
|
|
2038 (narrow-to-region start (1- (point)))
|
|
2039 (goto-char (point-min))
|
|
2040 (while (search-forward "\n\^_" nil t); single char "\^_"
|
|
2041 (replace-match "\n^_")))); 2 chars: "^" and "_"
|
22045
|
2042 (setq last-coding-system-used nil)
|
17093
|
2043 (or rmail-enable-mime
|
20943
|
2044 (not rmail-enable-multibyte)
|
17839
|
2045 (decode-coding-region start (point) 'undecided))
|
22045
|
2046 (save-excursion
|
|
2047 (goto-char start)
|
|
2048 (forward-line 3)
|
|
2049 (insert "X-Coding-System: "
|
|
2050 (symbol-name last-coding-system-used)
|
|
2051 "\n"))
|
270
|
2052 (narrow-to-region (point) (point-max))
|
52864
6cb616f8963b
(rmail-convert-to-babyl-format): Display a message while converting to Babyl.
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
2053 (setq count (1+ count))
|
6cb616f8963b
(rmail-convert-to-babyl-format): Display a message while converting to Babyl.
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
2054 (and (= 0 (% count 10))
|
52866
|
2055 (message "Converting to Babyl format...%d" count)))
|
270
|
2056 ;;*** Mail format
|
|
2057 ((looking-at "^From ")
|
|
2058 (insert "\^L\n0, unseen,,\n*** EOOH ***\n")
|
|
2059 (rmail-nuke-pinhead-header)
|
2076
|
2060 ;; If this message has a Content-Length field,
|
|
2061 ;; skip to the end of the contents.
|
|
2062 (let* ((header-end (save-excursion
|
|
2063 (and (re-search-forward "\n\n" nil t)
|
5466
|
2064 (1- (point)))))
|
2076
|
2065 (case-fold-search t)
|
20273
|
2066 (quoted-printable-header-field-end
|
|
2067 (save-excursion
|
|
2068 (re-search-forward
|
20274
|
2069 "^content-transfer-encoding:\\(\n?[\t ]\\)*quoted-printable\\(\n?[\t ]\\)*"
|
20273
|
2070 header-end t)))
|
52358
|
2071 (base64-header-field-end
|
76916
31c4e5bc7e74
(rmail-convert-to-babyl-format): Don't try to decode base-64 encoded body
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
2072 (and
|
31c4e5bc7e74
(rmail-convert-to-babyl-format): Don't try to decode base-64 encoded body
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
2073 ;; Don't decode non-text data.
|
31c4e5bc7e74
(rmail-convert-to-babyl-format): Don't try to decode base-64 encoded body
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
2074 (save-excursion
|
31c4e5bc7e74
(rmail-convert-to-babyl-format): Don't try to decode base-64 encoded body
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
2075 (re-search-forward
|
31c4e5bc7e74
(rmail-convert-to-babyl-format): Don't try to decode base-64 encoded body
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
2076 "^content-type:\\(\n?[\t ]\\)\\(text\\|message\\)/"
|
77699
1608babbc1ce
(rmail-convert-to-babyl-format): Check content-transfer-encoding _last_,
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
2077 header-end t))
|
1608babbc1ce
(rmail-convert-to-babyl-format): Check content-transfer-encoding _last_,
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
2078 (save-excursion
|
1608babbc1ce
(rmail-convert-to-babyl-format): Check content-transfer-encoding _last_,
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
2079 (re-search-forward
|
1608babbc1ce
(rmail-convert-to-babyl-format): Check content-transfer-encoding _last_,
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
2080 "^content-transfer-encoding:\\(\n?[\t ]\\)*base64\\(\n?[\t ]\\)*"
|
76916
31c4e5bc7e74
(rmail-convert-to-babyl-format): Don't try to decode base-64 encoded body
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
2081 header-end t))))
|
2076
|
2082 (size
|
|
2083 ;; Get the numeric value from the Content-Length field.
|
|
2084 (save-excursion
|
|
2085 ;; Back up to end of prev line,
|
|
2086 ;; in case the Content-Length field comes first.
|
|
2087 (forward-char -1)
|
|
2088 (and (search-forward "\ncontent-length: "
|
|
2089 header-end t)
|
|
2090 (let ((beg (point))
|
|
2091 (eol (progn (end-of-line) (point))))
|
62402
|
2092 (string-to-number (buffer-substring beg eol)))))))
|
6389
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2093 (and size
|
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2094 (if (and (natnump size)
|
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2095 (<= (+ header-end size) (point-max))
|
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2096 ;; 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>
diff
changeset
|
2097 ;; that we could continue from.
|
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2098 (save-excursion
|
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2099 (goto-char (+ header-end size))
|
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2100 (skip-chars-forward "\n")
|
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2101 (or (eobp)
|
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2102 (and (looking-at "BABYL OPTIONS:")
|
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2103 (search-forward "\n\^_" nil t))
|
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2104 (and (looking-at "\^L")
|
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2105 (search-forward "\n\^_" nil t))
|
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2106 (let ((case-fold-search t))
|
18091
|
2107 (looking-at rmail-mmdf-delim1))
|
6389
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2108 (looking-at "From "))))
|
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2109 (goto-char (+ header-end size))
|
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2110 (message "Ignoring invalid Content-Length field")
|
20273
|
2111 (sit-for 1 0 t)))
|
48584
|
2112 (if (let ((case-fold-search nil))
|
|
2113 (re-search-forward
|
|
2114 (concat "^[\^_]?\\("
|
|
2115 rmail-unix-mail-delimiter
|
|
2116 "\\|"
|
|
2117 rmail-mmdf-delim1 "\\|"
|
|
2118 "^BABYL OPTIONS:\\|"
|
|
2119 "\^L\n[01],\\)") nil t))
|
20273
|
2120 (goto-char (match-beginning 1))
|
|
2121 (goto-char (point-max)))
|
|
2122 (setq count (1+ count))
|
|
2123 (if quoted-printable-header-field-end
|
|
2124 (save-excursion
|
53570
8e83b9e560f0
(rmail-convert-to-babyl-format): Use mail-unquote-printable-region.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
2125 (unless
|
54262
|
2126 (mail-unquote-printable-region header-end (point) nil t t)
|
53570
8e83b9e560f0
(rmail-convert-to-babyl-format): Use mail-unquote-printable-region.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
2127 (message "Malformed MIME quoted-printable message"))
|
20273
|
2128 ;; Change "quoted-printable" to "8bit",
|
|
2129 ;; to reflect the decoding we just did.
|
|
2130 (goto-char quoted-printable-header-field-end)
|
20274
|
2131 (delete-region (point) (search-backward ":"))
|
52358
|
2132 (insert ": 8bit")))
|
|
2133 (if base64-header-field-end
|
53445
|
2134 (save-excursion
|
|
2135 (when
|
|
2136 (condition-case nil
|
|
2137 (progn
|
53666
0a56d6bd40da
(rmail-convert-to-babyl-format): Avoid deleting trailing white space
Markus Rost <rost@math.uni-bielefeld.de>
diff
changeset
|
2138 (base64-decode-region
|
0a56d6bd40da
(rmail-convert-to-babyl-format): Avoid deleting trailing white space
Markus Rost <rost@math.uni-bielefeld.de>
diff
changeset
|
2139 (1+ header-end)
|
0a56d6bd40da
(rmail-convert-to-babyl-format): Avoid deleting trailing white space
Markus Rost <rost@math.uni-bielefeld.de>
diff
changeset
|
2140 (save-excursion
|
0a56d6bd40da
(rmail-convert-to-babyl-format): Avoid deleting trailing white space
Markus Rost <rost@math.uni-bielefeld.de>
diff
changeset
|
2141 ;; Prevent base64-decode-region
|
0a56d6bd40da
(rmail-convert-to-babyl-format): Avoid deleting trailing white space
Markus Rost <rost@math.uni-bielefeld.de>
diff
changeset
|
2142 ;; from removing newline characters.
|
0a56d6bd40da
(rmail-convert-to-babyl-format): Avoid deleting trailing white space
Markus Rost <rost@math.uni-bielefeld.de>
diff
changeset
|
2143 (skip-chars-backward "\n\t ")
|
0a56d6bd40da
(rmail-convert-to-babyl-format): Avoid deleting trailing white space
Markus Rost <rost@math.uni-bielefeld.de>
diff
changeset
|
2144 (point)))
|
53445
|
2145 t)
|
|
2146 (error nil))
|
|
2147 ;; Change "base64" to "8bit", to reflect the
|
|
2148 ;; decoding we just did.
|
|
2149 (goto-char base64-header-field-end)
|
|
2150 (delete-region (point) (search-backward ":"))
|
|
2151 (insert ": 8bit")))))
|
2076
|
2152
|
270
|
2153 (save-excursion
|
|
2154 (save-restriction
|
|
2155 (narrow-to-region start (point))
|
|
2156 (goto-char (point-min))
|
|
2157 (while (search-forward "\n\^_" nil t); single char
|
|
2158 (replace-match "\n^_")))); 2 chars: "^" and "_"
|
54262
|
2159 ;; This is for malformed messages that don't end in newline.
|
|
2160 ;; There shouldn't be any, but some users say occasionally
|
|
2161 ;; there are some.
|
|
2162 (or (bolp) (newline))
|
270
|
2163 (insert ?\^_)
|
22045
|
2164 (setq last-coding-system-used nil)
|
17093
|
2165 (or rmail-enable-mime
|
20943
|
2166 (not rmail-enable-multibyte)
|
24209
|
2167 (let ((mime-charset
|
|
2168 (if (and rmail-decode-mime-charset
|
|
2169 (save-excursion
|
|
2170 (goto-char start)
|
|
2171 (search-forward "\n\n" nil t)
|
|
2172 (let ((case-fold-search t))
|
|
2173 (re-search-backward
|
|
2174 rmail-mime-charset-pattern
|
|
2175 start t))))
|
70771
|
2176 (intern (downcase (match-string 1))))))
|
24209
|
2177 (rmail-decode-region start (point) mime-charset)))
|
22045
|
2178 (save-excursion
|
|
2179 (goto-char start)
|
|
2180 (forward-line 3)
|
|
2181 (insert "X-Coding-System: "
|
|
2182 (symbol-name last-coding-system-used)
|
|
2183 "\n"))
|
52864
6cb616f8963b
(rmail-convert-to-babyl-format): Display a message while converting to Babyl.
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
2184 (narrow-to-region (point) (point-max))
|
6cb616f8963b
(rmail-convert-to-babyl-format): Display a message while converting to Babyl.
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
2185 (and (= 0 (% count 10))
|
52866
|
2186 (message "Converting to Babyl format...%d" count)))
|
270
|
2187 ;;
|
2700
|
2188 ;; This kludge is because some versions of sendmail.el
|
|
2189 ;; insert an extra newline at the beginning that shouldn't
|
|
2190 ;; be there. sendmail.el has been fixed, but old versions
|
|
2191 ;; may still be in use. -- rms, 7 May 1993.
|
|
2192 ((eolp) (delete-char 1))
|
405
|
2193 (t (error "Cannot convert to babyl format")))))
|
72721
|
2194 (setq buffer-undo-list nil)
|
270
|
2195 count))
|
|
2196
|
|
2197 ;; Delete the "From ..." line, creating various other headers with
|
|
2198 ;; information from it if they don't already exist. Now puts the
|
4838
|
2199 ;; original line into a mail-from: header line for debugging and for
|
|
2200 ;; use by the rmail-output function.
|
270
|
2201 (defun rmail-nuke-pinhead-header ()
|
|
2202 (save-excursion
|
|
2203 (save-restriction
|
|
2204 (let ((start (point))
|
|
2205 (end (progn
|
|
2206 (condition-case ()
|
|
2207 (search-forward "\n\n")
|
|
2208 (error
|
|
2209 (goto-char (point-max))
|
|
2210 (insert "\n\n")))
|
|
2211 (point)))
|
|
2212 has-from has-date)
|
|
2213 (narrow-to-region start end)
|
|
2214 (let ((case-fold-search t))
|
|
2215 (goto-char start)
|
|
2216 (setq has-from (search-forward "\nFrom:" nil t))
|
|
2217 (goto-char start)
|
|
2218 (setq has-date (and (search-forward "\nDate:" nil t) (point)))
|
|
2219 (goto-char start))
|
|
2220 (let ((case-fold-search nil))
|
617
|
2221 (if (re-search-forward (concat "^" rmail-unix-mail-delimiter) nil t)
|
270
|
2222 (replace-match
|
|
2223 (concat
|
|
2224 "Mail-from: \\&"
|
|
2225 ;; Keep and reformat the date if we don't
|
|
2226 ;; have a Date: field.
|
|
2227 (if has-date
|
|
2228 ""
|
1112
|
2229 (concat
|
15534
|
2230 "Date: \\2, \\4 \\3 \\9 \\5 "
|
45144
|
2231
|
1112
|
2232 ;; The timezone could be matched by group 7 or group 10.
|
|
2233 ;; If neither of them matched, assume EST, since only
|
|
2234 ;; Easterners would be so sloppy.
|
|
2235 ;; It's a shame the substitution can't use "\\10".
|
|
2236 (cond
|
|
2237 ((/= (match-beginning 7) (match-end 7)) "\\7")
|
|
2238 ((/= (match-beginning 10) (match-end 10))
|
|
2239 (buffer-substring (match-beginning 10)
|
|
2240 (match-end 10)))
|
|
2241 (t "EST"))
|
|
2242 "\n"))
|
270
|
2243 ;; Keep and reformat the sender if we don't
|
|
2244 ;; have a From: field.
|
|
2245 (if has-from
|
|
2246 ""
|
4340
505fb5222dea
(rmail-nuke-pinhead-header): Tell replace-match not to alter the case.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
2247 "From: \\1\n"))
|
505fb5222dea
(rmail-nuke-pinhead-header): Tell replace-match not to alter the case.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
2248 t)))))))
|
270
|
2249
|
|
2250 ;;;; *** Rmail Message Formatting and Header Manipulation ***
|
|
2251
|
|
2252 (defun rmail-reformat-message (beg end)
|
|
2253 (goto-char beg)
|
|
2254 (forward-line 1)
|
|
2255 (if (/= (following-char) ?0)
|
38412
|
2256 (error "Bad format in RMAIL file"))
|
38228
|
2257 (let ((inhibit-read-only t)
|
270
|
2258 (delta (- (buffer-size) end)))
|
|
2259 (delete-char 1)
|
|
2260 (insert ?1)
|
|
2261 (forward-line 1)
|
4340
505fb5222dea
(rmail-nuke-pinhead-header): Tell replace-match not to alter the case.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
2262 (let ((case-fold-search t))
|
4838
|
2263 (while (looking-at "Summary-line:\\|Mail-From:")
|
|
2264 (forward-line 1)))
|
270
|
2265 (if (looking-at "\\*\\*\\* EOOH \\*\\*\\*\n")
|
|
2266 (delete-region (point)
|
|
2267 (progn (forward-line 1) (point))))
|
|
2268 (let ((str (buffer-substring (point)
|
|
2269 (save-excursion (search-forward "\n\n" end 'move)
|
|
2270 (point)))))
|
|
2271 (insert str "*** EOOH ***\n")
|
|
2272 (narrow-to-region (point) (- (buffer-size) delta)))
|
|
2273 (goto-char (point-min))
|
9062
|
2274 (if rmail-message-filter (funcall rmail-message-filter))
|
11452
|
2275 (if (or rmail-displayed-headers rmail-ignored-headers)
|
|
2276 (rmail-clear-headers))))
|
270
|
2277
|
9010
9d48b6752dbf
(rmail-retry-failure): Copy the whole block of headers from the message
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
2278 (defun rmail-clear-headers (&optional ignored-headers)
|
11452
|
2279 "Delete all header fields that Rmail should not show.
|
|
2280 If the optional argument IGNORED-HEADERS is non-nil,
|
|
2281 delete all header fields whose names match that regexp.
|
|
2282 Otherwise, if `rmail-displayed-headers' is non-nil,
|
|
2283 delete all header fields *except* those whose names match that regexp.
|
64972
|
2284 Otherwise, delete all header fields whose names match `rmail-ignored-headers'
|
|
2285 unless they also match `rmail-nonignored-headers'."
|
21195
|
2286 (when (search-forward "\n\n" nil t)
|
|
2287 (forward-char -1)
|
|
2288 (let ((case-fold-search t)
|
|
2289 (buffer-read-only nil))
|
|
2290 (if (and rmail-displayed-headers (null ignored-headers))
|
21293
|
2291 (save-restriction
|
|
2292 (narrow-to-region (point-min) (point))
|
|
2293 (let (lim next)
|
|
2294 (goto-char (point-min))
|
|
2295 (while (and (not (eobp))
|
|
2296 (save-excursion
|
|
2297 (if (re-search-forward "\n[^ \t]" nil t)
|
|
2298 (setq lim (match-beginning 0)
|
|
2299 next (1+ lim))
|
|
2300 (setq lim nil next (point-max)))))
|
|
2301 (if (save-excursion
|
|
2302 (re-search-forward rmail-displayed-headers lim t))
|
|
2303 (goto-char next)
|
|
2304 (delete-region (point) next))))
|
|
2305 (goto-char (point-min)))
|
21195
|
2306 (or ignored-headers (setq ignored-headers rmail-ignored-headers))
|
|
2307 (save-restriction
|
|
2308 (narrow-to-region (point-min) (point))
|
64972
|
2309 (goto-char (point-min))
|
30112
|
2310 (while (and ignored-headers
|
64972
|
2311 (re-search-forward ignored-headers nil t))
|
21195
|
2312 (beginning-of-line)
|
64972
|
2313 (if (looking-at rmail-nonignored-headers)
|
|
2314 (forward-line 1)
|
|
2315 (delete-region (point)
|
|
2316 (save-excursion
|
|
2317 (if (re-search-forward "\n[^ \t]" nil t)
|
|
2318 (1- (point))
|
|
2319 (point-max)))))))))))
|
270
|
2320
|
16772
|
2321 (defun rmail-msg-is-pruned ()
|
270
|
2322 (rmail-maybe-set-message-counters)
|
16772
|
2323 (save-restriction
|
22263
|
2324 (narrow-to-region (rmail-msgbeg rmail-current-message) (point-max))
|
16772
|
2325 (save-excursion
|
22263
|
2326 (goto-char (point-min))
|
|
2327 (forward-line 1)
|
16772
|
2328 (= (following-char) ?1))))
|
|
2329
|
38191
|
2330 (defun rmail-msg-restore-non-pruned-header ()
|
38228
|
2331 (let ((old-point (point))
|
|
2332 new-point
|
|
2333 new-start
|
|
2334 (inhibit-read-only t))
|
|
2335 (save-excursion
|
|
2336 (narrow-to-region (rmail-msgbeg rmail-current-message) (point-max))
|
38191
|
2337 (goto-char (point-min))
|
|
2338 (forward-line 1)
|
|
2339 ;; Change 1 to 0.
|
|
2340 (delete-char 1)
|
|
2341 (insert ?0)
|
|
2342 ;; Insert new EOOH line at the proper place.
|
|
2343 (forward-line 1)
|
|
2344 (let ((case-fold-search t))
|
|
2345 (while (looking-at "Summary-Line:\\|Mail-From:")
|
|
2346 (forward-line 1)))
|
|
2347 (insert "*** EOOH ***\n")
|
|
2348 (setq new-start (point))
|
|
2349 ;; Delete the old reformatted header.
|
|
2350 (forward-char -1)
|
|
2351 (search-forward "\n*** EOOH ***\n")
|
|
2352 (forward-line -1)
|
|
2353 (let ((start (point)))
|
|
2354 (search-forward "\n\n")
|
38228
|
2355 (if (and (<= start old-point)
|
|
2356 (<= old-point (point)))
|
|
2357 (setq new-point new-start))
|
38191
|
2358 (delete-region start (point)))
|
|
2359 ;; Narrow to after the new EOOH line.
|
38228
|
2360 (narrow-to-region new-start (point-max)))
|
|
2361 (if new-point
|
|
2362 (goto-char new-point))))
|
38191
|
2363
|
|
2364 (defun rmail-msg-prune-header ()
|
38228
|
2365 (let ((new-point
|
|
2366 (= (point) (point-min))))
|
|
2367 (save-excursion
|
|
2368 (narrow-to-region (rmail-msgbeg rmail-current-message) (point-max))
|
|
2369 (rmail-reformat-message (point-min) (point-max)))
|
|
2370 (if new-point
|
|
2371 (goto-char (point-min)))))
|
38191
|
2372
|
16772
|
2373 (defun rmail-toggle-header (&optional arg)
|
|
2374 "Show original message header if pruned header currently shown, or vice versa.
|
|
2375 With argument ARG, show the message header pruned if ARG is greater than zero;
|
|
2376 otherwise, show it in full."
|
|
2377 (interactive "P")
|
38191
|
2378 (let* ((pruned (with-current-buffer rmail-buffer
|
|
2379 (rmail-msg-is-pruned)))
|
22351
|
2380 (prune (if arg
|
|
2381 (> (prefix-numeric-value arg) 0)
|
|
2382 (not pruned))))
|
|
2383 (if (eq pruned prune)
|
|
2384 t
|
38191
|
2385 (set-buffer rmail-buffer)
|
22351
|
2386 (rmail-maybe-set-message-counters)
|
38191
|
2387 (if rmail-enable-mime
|
|
2388 (let ((buffer-read-only nil))
|
|
2389 (if pruned
|
|
2390 (rmail-msg-restore-non-pruned-header)
|
|
2391 (rmail-msg-prune-header))
|
|
2392 (funcall rmail-show-mime-function))
|
|
2393 (let* ((buffer-read-only nil)
|
|
2394 (window (get-buffer-window (current-buffer)))
|
|
2395 (at-point-min (= (point) (point-min)))
|
|
2396 (all-headers-visible (= (window-start window) (point-min)))
|
|
2397 (on-header
|
|
2398 (save-excursion
|
|
2399 (and (not (search-backward "\n\n" nil t))
|
|
2400 (progn
|
|
2401 (end-of-line)
|
|
2402 (re-search-backward "^[-A-Za-z0-9]+:" nil t))
|
|
2403 (match-string 0))))
|
|
2404 (old-screen-line
|
|
2405 (rmail-count-screen-lines (window-start window) (point))))
|
22435
|
2406 (if pruned
|
38191
|
2407 (rmail-msg-restore-non-pruned-header)
|
|
2408 (rmail-msg-prune-header))
|
|
2409 (cond (at-point-min
|
|
2410 (goto-char (point-min)))
|
|
2411 (on-header
|
|
2412 (goto-char (point-min))
|
|
2413 (search-forward "\n\n")
|
|
2414 (or (re-search-backward
|
|
2415 (concat "^" (regexp-quote on-header)) nil t)
|
|
2416 (goto-char (point-min))))
|
|
2417 (t
|
|
2418 (save-selected-window
|
|
2419 (select-window window)
|
|
2420 (recenter old-screen-line)
|
|
2421 (if (and all-headers-visible
|
|
2422 (not (= (window-start) (point-min))))
|
43124
|
2423 (recenter (- (window-height) 2))))))))
|
22351
|
2424 (rmail-highlight-headers))))
|
|
2425
|
38228
|
2426 (defun rmail-narrow-to-non-pruned-header ()
|
|
2427 "Narrow to the whole (original) header of the current message."
|
|
2428 (let (start end)
|
|
2429 (narrow-to-region (rmail-msgbeg rmail-current-message) (point-max))
|
|
2430 (goto-char (point-min))
|
|
2431 (forward-line 1)
|
|
2432 (if (= (following-char) ?1)
|
|
2433 (progn
|
|
2434 (forward-line 1)
|
|
2435 (setq start (point))
|
|
2436 (search-forward "*** EOOH ***\n")
|
|
2437 (setq end (match-beginning 0)))
|
|
2438 (forward-line 2)
|
|
2439 (setq start (point))
|
|
2440 (search-forward "\n\n")
|
|
2441 (setq end (1- (point))))
|
|
2442 (narrow-to-region start end)
|
|
2443 (goto-char start)))
|
|
2444
|
22351
|
2445 ;; Lifted from repos-count-screen-lines.
|
|
2446 ;; Return number of screen lines between START and END.
|
|
2447 (defun rmail-count-screen-lines (start end)
|
22330
|
2448 (save-excursion
|
22351
|
2449 (save-restriction
|
|
2450 (narrow-to-region start end)
|
|
2451 (goto-char (point-min))
|
|
2452 (vertical-motion (- (point-max) (point-min))))))
|
270
|
2453
|
|
2454 ;;;; *** Rmail Attributes and Keywords ***
|
|
2455
|
|
2456 ;; Make a string describing current message's attributes and keywords
|
|
2457 ;; and set it up as the name of a minor mode
|
|
2458 ;; so it will appear in the mode line.
|
|
2459 (defun rmail-display-labels ()
|
|
2460 (let ((blurb "") (beg (point-min-marker)) (end (point-max-marker)))
|
|
2461 (save-excursion
|
|
2462 (unwind-protect
|
|
2463 (progn
|
|
2464 (widen)
|
|
2465 (goto-char (rmail-msgbeg rmail-current-message))
|
|
2466 (forward-line 1)
|
|
2467 (if (looking-at "[01],")
|
|
2468 (progn
|
|
2469 (narrow-to-region (point) (progn (end-of-line) (point)))
|
|
2470 ;; Truly valid BABYL format requires a space before each
|
|
2471 ;; attribute or keyword name. Put them in if missing.
|
|
2472 (let (buffer-read-only)
|
|
2473 (goto-char (point-min))
|
|
2474 (while (search-forward "," nil t)
|
|
2475 (or (looking-at "[ ,]") (eobp)
|
|
2476 (insert " "))))
|
|
2477 (goto-char (point-max))
|
|
2478 (if (search-backward ",," nil 'move)
|
|
2479 (progn
|
|
2480 (if (> (point) (1+ (point-min)))
|
|
2481 (setq blurb (buffer-substring (+ 1 (point-min)) (point))))
|
|
2482 (if (> (- (point-max) (point)) 2)
|
|
2483 (setq blurb
|
|
2484 (concat blurb
|
|
2485 ";"
|
|
2486 (buffer-substring (+ (point) 3)
|
|
2487 (1- (point-max)))))))))))
|
|
2488 ;; Note: we don't use save-restriction because that does not work right
|
|
2489 ;; if changes are made outside the saved restriction
|
|
2490 ;; before that restriction is restored.
|
|
2491 (narrow-to-region beg end)
|
|
2492 (set-marker beg nil)
|
|
2493 (set-marker end nil)))
|
|
2494 (while (string-match " +," blurb)
|
|
2495 (setq blurb (concat (substring blurb 0 (match-beginning 0)) ","
|
|
2496 (substring blurb (match-end 0)))))
|
|
2497 (while (string-match ", +" blurb)
|
|
2498 (setq blurb (concat (substring blurb 0 (match-beginning 0)) ","
|
|
2499 (substring blurb (match-end 0)))))
|
|
2500 (setq mode-line-process
|
11452
|
2501 (format " %d/%d%s"
|
37611
|
2502 rmail-current-message rmail-total-messages blurb))
|
|
2503 ;; If rmail-enable-mime is non-nil, we may have to update
|
|
2504 ;; `mode-line-process' of rmail-view-buffer too.
|
|
2505 (if (and rmail-enable-mime
|
|
2506 (not (eq (current-buffer) rmail-view-buffer))
|
|
2507 (buffer-live-p rmail-view-buffer))
|
|
2508 (let ((mlp mode-line-process))
|
|
2509 (with-current-buffer rmail-view-buffer
|
|
2510 (setq mode-line-process mlp))))))
|
270
|
2511
|
|
2512 ;; Turn an attribute of a message on or off according to STATE.
|
|
2513 ;; ATTR is the name of the attribute, as a string.
|
|
2514 ;; MSGNUM is message number to change; nil means current message.
|
|
2515 (defun rmail-set-attribute (attr state &optional msgnum)
|
37611
|
2516 (set-buffer rmail-buffer)
|
270
|
2517 (let ((omax (point-max-marker))
|
|
2518 (omin (point-min-marker))
|
|
2519 (buffer-read-only nil))
|
|
2520 (or msgnum (setq msgnum rmail-current-message))
|
5047
|
2521 (if (> msgnum 0)
|
|
2522 (unwind-protect
|
|
2523 (save-excursion
|
|
2524 (widen)
|
|
2525 (goto-char (+ 3 (rmail-msgbeg msgnum)))
|
|
2526 (let ((curstate
|
|
2527 (not
|
|
2528 (null (search-backward (concat ", " attr ",")
|
|
2529 (prog1 (point) (end-of-line)) t)))))
|
|
2530 (or (eq curstate (not (not state)))
|
|
2531 (if curstate
|
|
2532 (delete-region (point) (1- (match-end 0)))
|
|
2533 (beginning-of-line)
|
|
2534 (forward-char 2)
|
|
2535 (insert " " attr ","))))
|
|
2536 (if (string= attr "deleted")
|
|
2537 (rmail-set-message-deleted-p msgnum state)))
|
|
2538 ;; Note: we don't use save-restriction because that does not work right
|
|
2539 ;; if changes are made outside the saved restriction
|
|
2540 ;; before that restriction is restored.
|
|
2541 (narrow-to-region omin omax)
|
|
2542 (set-marker omin nil)
|
|
2543 (set-marker omax nil)
|
|
2544 (if (= msgnum rmail-current-message)
|
|
2545 (rmail-display-labels))))))
|
270
|
2546
|
|
2547 ;; Return t if the attributes/keywords line of msg number MSG
|
|
2548 ;; contains a match for the regexp LABELS.
|
|
2549 (defun rmail-message-labels-p (msg labels)
|
|
2550 (save-excursion
|
|
2551 (save-restriction
|
|
2552 (widen)
|
|
2553 (goto-char (rmail-msgbeg msg))
|
|
2554 (forward-char 3)
|
|
2555 (re-search-backward labels (prog1 (point) (end-of-line)) t))))
|
|
2556
|
|
2557 ;;;; *** Rmail Message Selection And Support ***
|
|
2558
|
|
2559 (defun rmail-msgend (n)
|
|
2560 (marker-position (aref rmail-message-vector (1+ n))))
|
|
2561
|
|
2562 (defun rmail-msgbeg (n)
|
|
2563 (marker-position (aref rmail-message-vector n)))
|
|
2564
|
|
2565 (defun rmail-widen-to-current-msgbeg (function)
|
|
2566 "Call FUNCTION with point at start of internal data of current message.
|
|
2567 Assumes that bounds were previously narrowed to display the message in Rmail.
|
|
2568 The bounds are widened enough to move point where desired, then narrowed
|
|
2569 again afterward.
|
|
2570
|
|
2571 FUNCTION may not change the visible text of the message, but it may
|
|
2572 change the invisible header text."
|
|
2573 (save-excursion
|
29301
|
2574 (unwind-protect
|
|
2575 (progn
|
|
2576 (narrow-to-region (rmail-msgbeg rmail-current-message)
|
|
2577 (point-max))
|
|
2578 (goto-char (point-min))
|
|
2579 (funcall function))
|
270
|
2580 ;; Note: we don't use save-restriction because that does not work right
|
|
2581 ;; if changes are made outside the saved restriction
|
|
2582 ;; before that restriction is restored.
|
29301
|
2583 (narrow-to-region (rmail-msgbeg rmail-current-message)
|
|
2584 (rmail-msgend rmail-current-message)))))
|
270
|
2585
|
|
2586 (defun rmail-forget-messages ()
|
|
2587 (unwind-protect
|
|
2588 (if (vectorp rmail-message-vector)
|
|
2589 (let* ((i 0)
|
|
2590 (v rmail-message-vector)
|
|
2591 (n (length v)))
|
|
2592 (while (< i n)
|
|
2593 (move-marker (aref v i) nil)
|
|
2594 (setq i (1+ i)))))
|
|
2595 (setq rmail-message-vector nil)
|
17620
|
2596 (setq rmail-msgref-vector nil)
|
270
|
2597 (setq rmail-deleted-vector nil)))
|
|
2598
|
|
2599 (defun rmail-maybe-set-message-counters ()
|
|
2600 (if (not (and rmail-deleted-vector
|
|
2601 rmail-message-vector
|
|
2602 rmail-current-message
|
|
2603 rmail-total-messages))
|
|
2604 (rmail-set-message-counters)))
|
|
2605
|
|
2606 (defun rmail-count-new-messages (&optional nomsg)
|
|
2607 (let* ((case-fold-search nil)
|
|
2608 (total-messages 0)
|
|
2609 (messages-head nil)
|
|
2610 (deleted-head nil))
|
|
2611 (or nomsg (message "Counting new messages..."))
|
|
2612 (goto-char (point-max))
|
|
2613 ;; Put at the end of messages-head
|
|
2614 ;; the entry for message N+1, which marks
|
|
2615 ;; the end of message N. (N = number of messages).
|
|
2616 (search-backward "\n\^_")
|
|
2617 (forward-char 1)
|
|
2618 (setq messages-head (list (point-marker)))
|
|
2619 (rmail-set-message-counters-counter (point-min))
|
|
2620 (setq rmail-current-message (1+ rmail-total-messages))
|
|
2621 (setq rmail-total-messages
|
|
2622 (+ rmail-total-messages total-messages))
|
|
2623 (setq rmail-message-vector
|
|
2624 (vconcat rmail-message-vector (cdr messages-head)))
|
|
2625 (aset rmail-message-vector
|
|
2626 rmail-current-message (car messages-head))
|
|
2627 (setq rmail-deleted-vector
|
|
2628 (concat rmail-deleted-vector deleted-head))
|
|
2629 (setq rmail-summary-vector
|
|
2630 (vconcat rmail-summary-vector (make-vector total-messages nil)))
|
17620
|
2631 (setq rmail-msgref-vector
|
|
2632 (vconcat rmail-msgref-vector (make-vector total-messages nil)))
|
|
2633 ;; Fill in the new elements of rmail-msgref-vector.
|
17640
|
2634 (let ((i (1+ (- rmail-total-messages total-messages))))
|
17620
|
2635 (while (<= i rmail-total-messages)
|
|
2636 (aset rmail-msgref-vector i (list i))
|
|
2637 (setq i (1+ i))))
|
270
|
2638 (goto-char (point-min))
|
|
2639 (or nomsg (message "Counting new messages...done (%d)" total-messages))))
|
|
2640
|
|
2641 (defun rmail-set-message-counters ()
|
|
2642 (rmail-forget-messages)
|
|
2643 (save-excursion
|
|
2644 (save-restriction
|
|
2645 (widen)
|
|
2646 (let* ((point-save (point))
|
|
2647 (total-messages 0)
|
|
2648 (messages-after-point)
|
|
2649 (case-fold-search nil)
|
|
2650 (messages-head nil)
|
|
2651 (deleted-head nil))
|
|
2652 (message "Counting messages...")
|
|
2653 (goto-char (point-max))
|
|
2654 ;; Put at the end of messages-head
|
|
2655 ;; the entry for message N+1, which marks
|
|
2656 ;; the end of message N. (N = number of messages).
|
5586
|
2657 (search-backward "\n\^_" nil t)
|
|
2658 (if (/= (point) (point-max)) (forward-char 1))
|
270
|
2659 (setq messages-head (list (point-marker)))
|
|
2660 (rmail-set-message-counters-counter (min (point) point-save))
|
|
2661 (setq messages-after-point total-messages)
|
|
2662 (rmail-set-message-counters-counter)
|
|
2663 (setq rmail-total-messages total-messages)
|
|
2664 (setq rmail-current-message
|
|
2665 (min total-messages
|
|
2666 (max 1 (- total-messages messages-after-point))))
|
|
2667 (setq rmail-message-vector
|
|
2668 (apply 'vector (cons (point-min-marker) messages-head))
|
34055
|
2669 rmail-deleted-vector (concat "0" deleted-head)
|
17620
|
2670 rmail-summary-vector (make-vector rmail-total-messages nil)
|
|
2671 rmail-msgref-vector (make-vector (1+ rmail-total-messages) nil))
|
|
2672 (let ((i 0))
|
|
2673 (while (<= i rmail-total-messages)
|
|
2674 (aset rmail-msgref-vector i (list i))
|
|
2675 (setq i (1+ i))))
|
270
|
2676 (message "Counting messages...done")))))
|
45144
|
2677
|
270
|
2678 (defun rmail-set-message-counters-counter (&optional stop)
|
23750
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
diff
changeset
|
2679 (let ((start (point))
|
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
diff
changeset
|
2680 next)
|
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
diff
changeset
|
2681 (while (search-backward "\n\^_\^L" stop t)
|
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
diff
changeset
|
2682 ;; Detect messages that have been added with DOS line endings and
|
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
diff
changeset
|
2683 ;; convert the line endings for such messages.
|
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
diff
changeset
|
2684 (setq next (point))
|
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
diff
changeset
|
2685 (if (looking-at "\n\^_\^L\r\n")
|
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
diff
changeset
|
2686 (let ((buffer-read-only nil)
|
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
diff
changeset
|
2687 (buffer-undo t))
|
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
diff
changeset
|
2688 (message "Counting messages...(converting line endings)")
|
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
diff
changeset
|
2689 (save-excursion
|
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
diff
changeset
|
2690 (goto-char start)
|
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
diff
changeset
|
2691 (while (search-backward "\r\n" next t)
|
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
diff
changeset
|
2692 (delete-char 1)))))
|
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
diff
changeset
|
2693 (setq start next)
|
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
diff
changeset
|
2694 (forward-char 1)
|
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
diff
changeset
|
2695 (setq messages-head (cons (point-marker) messages-head))
|
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
diff
changeset
|
2696 (save-excursion
|
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
diff
changeset
|
2697 (setq deleted-head
|
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
diff
changeset
|
2698 (cons (if (search-backward ", deleted,"
|
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
diff
changeset
|
2699 (prog1 (point)
|
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
diff
changeset
|
2700 (forward-line 2))
|
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
diff
changeset
|
2701 t)
|
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
diff
changeset
|
2702 ?D ?\ )
|
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
diff
changeset
|
2703 deleted-head)))
|
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
diff
changeset
|
2704 (if (zerop (% (setq total-messages (1+ total-messages)) 20))
|
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
diff
changeset
|
2705 (message "Counting messages...%d" total-messages)))))
|
270
|
2706
|
|
2707 (defun rmail-beginning-of-message ()
|
|
2708 "Show current message starting from the beginning."
|
|
2709 (interactive)
|
64928
|
2710 (let ((rmail-show-message-hook
|
|
2711 (list (function (lambda ()
|
|
2712 (goto-char (point-min)))))))
|
|
2713 (rmail-show-message rmail-current-message)))
|
|
2714
|
|
2715 (defun rmail-end-of-message ()
|
|
2716 "Show bottom of current message."
|
|
2717 (interactive)
|
|
2718 (let ((rmail-show-message-hook
|
|
2719 (list (function (lambda ()
|
|
2720 (goto-char (point-max))
|
|
2721 (recenter (1- (window-height))))))))
|
|
2722 (rmail-show-message rmail-current-message)))
|
270
|
2723
|
60692
|
2724 (defun rmail-unknown-mail-followup-to ()
|
|
2725 "Handle a \"Mail-Followup-To\" header field with an unknown mailing list.
|
|
2726 Ask the user whether to add that list name to `mail-mailing-lists'."
|
|
2727 (save-restriction
|
|
2728 (rmail-narrow-to-non-pruned-header)
|
|
2729 (let ((mail-followup-to (mail-fetch-field "mail-followup-to" nil t)))
|
|
2730 (when mail-followup-to
|
|
2731 (let ((addresses
|
64754
|
2732 (split-string
|
60692
|
2733 (mail-strip-quoted-names mail-followup-to)
|
|
2734 ",[[:space:]]+" t)))
|
|
2735 (dolist (addr addresses)
|
|
2736 (when (and (not (member addr mail-mailing-lists))
|
|
2737 (not
|
|
2738 ;; taken from rmailsum.el
|
|
2739 (string-match
|
|
2740 (or rmail-user-mail-address-regexp
|
|
2741 (concat "^\\("
|
|
2742 (regexp-quote (user-login-name))
|
|
2743 "\\($\\|@\\)\\|"
|
|
2744 (regexp-quote
|
|
2745 (or user-mail-address
|
|
2746 (concat (user-login-name) "@"
|
|
2747 (or mail-host-address
|
|
2748 (system-name)))))
|
|
2749 "\\>\\)"))
|
|
2750 addr))
|
|
2751 (y-or-n-p
|
|
2752 (format "Add `%s' to `mail-mailing-lists'? "
|
|
2753 addr)))
|
|
2754 (customize-save-variable 'mail-mailing-lists
|
|
2755 (cons addr mail-mailing-lists)))))))))
|
|
2756
|
9431
|
2757 (defun rmail-show-message (&optional n no-summary)
|
2076
|
2758 "Show message number N (prefix argument), counting from start of file.
|
|
2759 If summary buffer is currently displayed, update current message there also."
|
270
|
2760 (interactive "p")
|
17093
|
2761 (or (eq major-mode 'rmail-mode)
|
|
2762 (switch-to-buffer rmail-buffer))
|
270
|
2763 (rmail-maybe-set-message-counters)
|
|
2764 (widen)
|
|
2765 (if (zerop rmail-total-messages)
|
|
2766 (progn (narrow-to-region (point-min) (1- (point-max)))
|
|
2767 (goto-char (point-min))
|
|
2768 (setq mode-line-process nil))
|
22045
|
2769 (let (blurb coding-system)
|
270
|
2770 (if (not n)
|
|
2771 (setq n rmail-current-message)
|
|
2772 (cond ((<= n 0)
|
|
2773 (setq n 1
|
|
2774 rmail-current-message 1
|
|
2775 blurb "No previous message"))
|
|
2776 ((> n rmail-total-messages)
|
|
2777 (setq n rmail-total-messages
|
|
2778 rmail-current-message rmail-total-messages
|
|
2779 blurb "No following message"))
|
|
2780 (t
|
|
2781 (setq rmail-current-message n))))
|
16241
|
2782 (let ((beg (rmail-msgbeg n)))
|
270
|
2783 (goto-char beg)
|
|
2784 (forward-line 1)
|
22045
|
2785 (save-excursion
|
|
2786 (let ((end (rmail-msgend n)))
|
|
2787 (save-restriction
|
|
2788 (if (prog1 (= (following-char) ?0)
|
|
2789 (forward-line 2)
|
24323
|
2790 ;; If there's a Summary-line in the (otherwise empty)
|
|
2791 ;; header, we didn't yet get past the EOOH line.
|
|
2792 (if (looking-at "^\\*\\*\\* EOOH \\*\\*\\*\n")
|
|
2793 (forward-line 1))
|
22045
|
2794 (narrow-to-region (point) end))
|
|
2795 (rfc822-goto-eoh)
|
|
2796 (search-forward "\n*** EOOH ***\n" end t))
|
|
2797 (narrow-to-region beg (point))
|
|
2798 (goto-char (point-min))
|
|
2799 (if (re-search-forward "^X-Coding-System: *\\(.*\\)$" nil t)
|
|
2800 (let ((coding-system (intern (match-string 1))))
|
45218
|
2801 (condition-case nil
|
|
2802 (progn
|
|
2803 (check-coding-system coding-system)
|
|
2804 (setq buffer-file-coding-system coding-system))
|
49082
|
2805 (error
|
45218
|
2806 (setq buffer-file-coding-system nil))))
|
22045
|
2807 (setq buffer-file-coding-system nil)))))
|
16241
|
2808 ;; Clear the "unseen" attribute when we show a message.
|
|
2809 (rmail-set-attribute "unseen" nil)
|
|
2810 (let ((end (rmail-msgend n)))
|
22045
|
2811 ;; Reformat the header, or else find the reformatted header.
|
16241
|
2812 (if (= (following-char) ?0)
|
270
|
2813 (rmail-reformat-message beg end)
|
16241
|
2814 (search-forward "\n*** EOOH ***\n" end t)
|
|
2815 (narrow-to-region (point) end)))
|
270
|
2816 (goto-char (point-min))
|
38352
|
2817 (walk-windows
|
|
2818 (function (lambda (window)
|
|
2819 (if (eq (window-buffer window) (current-buffer))
|
|
2820 (set-window-point window (point)))))
|
|
2821 nil t)
|
270
|
2822 (rmail-display-labels)
|
17093
|
2823 (if (eq rmail-enable-mime t)
|
|
2824 (funcall rmail-show-mime-function)
|
60692
|
2825 (setq rmail-view-buffer rmail-buffer))
|
|
2826 (when mail-mailing-lists
|
|
2827 (rmail-unknown-mail-followup-to))
|
7084
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2828 (rmail-highlight-headers)
|
7696
ebcefadd2e1b
(rmail-show-message): If transient-mark-mode, deactivate the mark.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
2829 (if transient-mark-mode (deactivate-mark))
|
270
|
2830 (run-hooks 'rmail-show-message-hook)
|
2076
|
2831 ;; If there is a summary buffer, try to move to this message
|
|
2832 ;; in that buffer. But don't complain if this message
|
|
2833 ;; is not mentioned in the summary.
|
9431
|
2834 ;; Don't do this at all if we were called on behalf
|
|
2835 ;; of cursor motion in the summary buffer.
|
|
2836 (and (rmail-summary-exists) (not no-summary)
|
|
2837 (let ((curr-msg rmail-current-message))
|
|
2838 (rmail-select-summary
|
|
2839 (rmail-summary-goto-msg curr-msg t t))))
|
37611
|
2840 (with-current-buffer rmail-buffer
|
|
2841 (rmail-auto-file))
|
270
|
2842 (if blurb
|
|
2843 (message blurb))))))
|
|
2844
|
73681
|
2845 (defun rmail-redecode-body (coding &optional raw)
|
35471
|
2846 "Decode the body of the current message using coding system CODING.
|
|
2847 This is useful with mail messages that have malformed or missing
|
|
2848 charset= headers.
|
|
2849
|
|
2850 This function assumes that the current message is already decoded
|
|
2851 and displayed in the RMAIL buffer, but the coding system used to
|
|
2852 decode it was incorrect. It then encodes the message back to its
|
35548
|
2853 original form, and decodes it again, using the coding system CODING.
|
35471
|
2854
|
73681
|
2855 Optional argument RAW, if non-nil, means don't encode the message
|
|
2856 before decoding it with the new CODING. This is useful if the current
|
|
2857 message text was produced by some function which invokes `insert',
|
|
2858 since `insert' leaves unibyte character codes 128 through 255 unconverted
|
|
2859 to multibyte. One example of such a situation is when the text was
|
|
2860 produced by `base64-decode-region'.
|
|
2861
|
|
2862 Interactively, invoke the function with a prefix argument to set RAW
|
|
2863 non-nil.
|
|
2864
|
35471
|
2865 Note that if Emacs erroneously auto-detected one of the iso-2022
|
|
2866 encodings in the message, this function might fail because the escape
|
|
2867 sequences that switch between character sets and also single-shift and
|
|
2868 locking-shift codes are impossible to recover. This function is meant
|
|
2869 to be used to fix messages encoded with 8-bit encodings, such as
|
|
2870 iso-8859, koi8-r, etc."
|
|
2871 (interactive "zCoding system for re-decoding this message: ")
|
|
2872 (when (not rmail-enable-mime)
|
|
2873 (or (eq major-mode 'rmail-mode)
|
|
2874 (switch-to-buffer rmail-buffer))
|
|
2875 (save-excursion
|
73681
|
2876 (let ((pruned (rmail-msg-is-pruned))
|
|
2877 (raw (or raw current-prefix-arg)))
|
43066
|
2878 (unwind-protect
|
|
2879 (let ((msgbeg (rmail-msgbeg rmail-current-message))
|
|
2880 (msgend (rmail-msgend rmail-current-message))
|
|
2881 x-coding-header)
|
|
2882 ;; We need the message headers pruned (we later restore
|
|
2883 ;; the pruned stat to what it was, see the end of
|
|
2884 ;; unwind-protect form).
|
|
2885 (or pruned
|
|
2886 (rmail-toggle-header 1))
|
|
2887 (narrow-to-region msgbeg msgend)
|
|
2888 (goto-char (point-min))
|
|
2889 (when (search-forward "\n*** EOOH ***\n" (point-max) t)
|
|
2890 (narrow-to-region msgbeg (point)))
|
|
2891 (goto-char (point-min))
|
|
2892 (if (re-search-forward "^X-Coding-System: *\\(.*\\)$" nil t)
|
|
2893 (let ((old-coding (intern (match-string 1)))
|
|
2894 (buffer-read-only nil))
|
|
2895 (check-coding-system old-coding)
|
|
2896 ;; Make sure the new coding system uses the same EOL
|
|
2897 ;; conversion, to prevent ^M characters from popping
|
|
2898 ;; up all over the place.
|
|
2899 (setq coding
|
|
2900 (coding-system-change-eol-conversion
|
|
2901 coding
|
|
2902 (coding-system-eol-type old-coding)))
|
73279
|
2903 ;; If old-coding is `undecided', encode-coding-region
|
|
2904 ;; will not encode the text at all. Find a proper
|
|
2905 ;; non-trivial encoding to use.
|
|
2906 (if (memq (coding-system-base old-coding) '(nil undecided))
|
|
2907 (setq old-coding
|
|
2908 (car (find-coding-systems-region msgbeg msgend))))
|
43066
|
2909 (setq x-coding-header (point-marker))
|
|
2910 (narrow-to-region msgbeg msgend)
|
73681
|
2911 (and (null raw)
|
|
2912 ;; If old and new encoding are the same, it
|
|
2913 ;; clearly doesn't make sense to encode.
|
|
2914 (not (coding-system-equal
|
|
2915 (coding-system-base old-coding)
|
|
2916 (coding-system-base coding)))
|
|
2917 ;; If the body includes only eight-bit-*
|
|
2918 ;; characters, encoding might fail, e.g. with
|
|
2919 ;; UTF-8, and isn't needed anyway.
|
|
2920 (> (length (delq 'ascii
|
|
2921 (delq 'eight-bit-graphic
|
|
2922 (delq 'eight-bit-control
|
|
2923 (find-charset-region
|
|
2924 msgbeg msgend)))))
|
|
2925 0)
|
|
2926 (encode-coding-region (point) msgend old-coding))
|
43066
|
2927 (decode-coding-region (point) msgend coding)
|
|
2928 (setq last-coding-system-used coding)
|
|
2929 ;; Rewrite the coding-system header according
|
|
2930 ;; to what we did.
|
|
2931 (goto-char x-coding-header)
|
|
2932 (delete-region (point)
|
|
2933 (save-excursion
|
|
2934 (beginning-of-line)
|
|
2935 (point)))
|
|
2936 (insert "X-Coding-System: "
|
|
2937 (symbol-name last-coding-system-used))
|
|
2938 (set-marker x-coding-header nil)
|
|
2939 (rmail-show-message))
|
|
2940 (error "No X-Coding-System header found")))
|
|
2941 (or pruned
|
|
2942 (rmail-toggle-header 0)))))))
|
35471
|
2943
|
7084
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2944 ;; 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>
diff
changeset
|
2945 (defun rmail-highlight-headers ()
|
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2946 ;; Do this only if the system supports faces.
|
8094
|
2947 (if (and (fboundp 'internal-find-face)
|
|
2948 rmail-highlighted-headers)
|
7084
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2949 (save-excursion
|
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2950 (search-forward "\n\n" nil 'move)
|
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2951 (save-restriction
|
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2952 (narrow-to-region (point-min) (point))
|
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2953 (let ((case-fold-search t)
|
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2954 (inhibit-read-only t)
|
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2955 ;; Highlight with boldface if that is available.
|
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2956 ;; Otherwise use the `highlight' face.
|
8383
|
2957 (face (or rmail-highlight-face
|
|
2958 (if (face-differs-from-default-p 'bold)
|
|
2959 'bold 'highlight)))
|
7084
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2960 ;; List of overlays to reuse.
|
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2961 (overlays rmail-overlay-list))
|
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2962 (goto-char (point-min))
|
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2963 (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>
diff
changeset
|
2964 (skip-chars-forward " \t")
|
7084
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2965 (let ((beg (point))
|
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2966 overlay)
|
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2967 (while (progn (forward-line 1)
|
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2968 (looking-at "[ \t]")))
|
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2969 ;; 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>
diff
changeset
|
2970 (forward-char -1)
|
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2971 (while (member (preceding-char) '(? ?\t))
|
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2972 (forward-char -1))
|
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2973 (if overlays
|
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2974 ;; Reuse an overlay we already have.
|
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2975 (progn
|
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2976 (setq overlay (car overlays)
|
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2977 overlays (cdr overlays))
|
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2978 (overlay-put overlay 'face face)
|
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2979 (move-overlay overlay beg (point)))
|
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2980 ;; 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>
diff
changeset
|
2981 ;; rmail-overlay-list.
|
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2982 (setq overlay (make-overlay beg (point)))
|
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2983 (overlay-put overlay 'face face)
|
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2984 (setq rmail-overlay-list
|
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2985 (cons overlay rmail-overlay-list))))))))))
|
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
diff
changeset
|
2986
|
29160
|
2987 (defun rmail-auto-file ()
|
|
2988 "Automatically move a message into a sub-folder based on criteria.
|
|
2989 Called when a new message is displayed."
|
|
2990 (if (or (rmail-message-labels-p rmail-current-message "filed")
|
|
2991 (not (string= (buffer-file-name)
|
|
2992 (expand-file-name rmail-file-name))))
|
|
2993 ;; Do nothing if it's already been filed.
|
|
2994 nil
|
|
2995 ;; Find out some basics (common fields)
|
|
2996 (let ((from (mail-fetch-field "from"))
|
|
2997 (subj (mail-fetch-field "subject"))
|
|
2998 (to (concat (mail-fetch-field "to") "," (mail-fetch-field "cc")))
|
|
2999 (d rmail-automatic-folder-directives)
|
|
3000 (directive-loop nil)
|
|
3001 (folder nil))
|
|
3002 (while d
|
|
3003 (setq folder (car (car d))
|
|
3004 directive-loop (cdr (car d)))
|
|
3005 (while (and (car directive-loop)
|
|
3006 (let ((f (cond
|
|
3007 ((string= (car directive-loop) "from") from)
|
|
3008 ((string= (car directive-loop) "to") to)
|
|
3009 ((string= (car directive-loop) "subject") subj)
|
|
3010 (t (mail-fetch-field (car directive-loop))))))
|
|
3011 (and f (string-match (car (cdr directive-loop)) f))))
|
|
3012 (setq directive-loop (cdr (cdr directive-loop))))
|
|
3013 ;; If there are no directives left, then it was a complete match.
|
|
3014 (if (null directive-loop)
|
|
3015 (if (null folder)
|
|
3016 (rmail-delete-forward)
|
|
3017 (if (string= "/dev/null" folder)
|
|
3018 (rmail-delete-message)
|
|
3019 (rmail-output-to-rmail-file folder 1 t)
|
|
3020 (setq d nil))))
|
|
3021 (setq d (cdr d))))))
|
|
3022
|
270
|
3023 (defun rmail-next-message (n)
|
|
3024 "Show following message whether deleted or not.
|
|
3025 With prefix arg N, moves forward N messages, or backward if N is negative."
|
|
3026 (interactive "p")
|
37611
|
3027 (set-buffer rmail-buffer)
|
270
|
3028 (rmail-maybe-set-message-counters)
|
|
3029 (rmail-show-message (+ rmail-current-message n)))
|
|
3030
|
|
3031 (defun rmail-previous-message (n)
|
|
3032 "Show previous message whether deleted or not.
|
|
3033 With prefix arg N, moves backward N messages, or forward if N is negative."
|
|
3034 (interactive "p")
|
45144
|
3035 (rmail-next-message (- n)))
|
270
|
3036
|
|
3037 (defun rmail-next-undeleted-message (n)
|
|
3038 "Show following non-deleted message.
|
|
3039 With prefix arg N, moves forward N non-deleted messages,
|
4838
|
3040 or backward if N is negative.
|
|
3041
|
|
3042 Returns t if a new message is being shown, nil otherwise."
|
270
|
3043 (interactive "p")
|
37611
|
3044 (set-buffer rmail-buffer)
|
270
|
3045 (rmail-maybe-set-message-counters)
|
|
3046 (let ((lastwin rmail-current-message)
|
|
3047 (current rmail-current-message))
|
|
3048 (while (and (> n 0) (< current rmail-total-messages))
|
|
3049 (setq current (1+ current))
|
|
3050 (if (not (rmail-message-deleted-p current))
|
|
3051 (setq lastwin current n (1- n))))
|
|
3052 (while (and (< n 0) (> current 1))
|
|
3053 (setq current (1- current))
|
|
3054 (if (not (rmail-message-deleted-p current))
|
|
3055 (setq lastwin current n (1+ n))))
|
|
3056 (if (/= lastwin rmail-current-message)
|
4838
|
3057 (progn (rmail-show-message lastwin)
|
|
3058 t)
|
|
3059 (if (< n 0)
|
|
3060 (message "No previous nondeleted message"))
|
|
3061 (if (> n 0)
|
|
3062 (message "No following nondeleted message"))
|
|
3063 nil)))
|
270
|
3064
|
|
3065 (defun rmail-previous-undeleted-message (n)
|
|
3066 "Show previous non-deleted message.
|
|
3067 With prefix argument N, moves backward N non-deleted messages,
|
|
3068 or forward if N is negative."
|
|
3069 (interactive "p")
|
|
3070 (rmail-next-undeleted-message (- n)))
|
|
3071
|
|
3072 (defun rmail-first-message ()
|
|
3073 "Show first message in file."
|
|
3074 (interactive)
|
|
3075 (rmail-maybe-set-message-counters)
|
|
3076 (rmail-show-message 1))
|
|
3077
|
|
3078 (defun rmail-last-message ()
|
|
3079 "Show last message in file."
|
|
3080 (interactive)
|
|
3081 (rmail-maybe-set-message-counters)
|
|
3082 (rmail-show-message rmail-total-messages))
|
|
3083
|
|
3084 (defun rmail-what-message ()
|
|
3085 (let ((where (point))
|
|
3086 (low 1)
|
|
3087 (high rmail-total-messages)
|
|
3088 (mid (/ rmail-total-messages 2)))
|
|
3089 (while (> (- high low) 1)
|
|
3090 (if (>= where (rmail-msgbeg mid))
|
|
3091 (setq low mid)
|
|
3092 (setq high mid))
|
|
3093 (setq mid (+ low (/ (- high low) 2))))
|
|
3094 (if (>= where (rmail-msgbeg high)) high low)))
|
|
3095
|
2076
|
3096 (defun rmail-message-recipients-p (msg recipients &optional primary-only)
|
|
3097 (save-restriction
|
|
3098 (goto-char (rmail-msgbeg msg))
|
21640
|
3099 (search-forward "\n*** EOOH ***\n")
|
2076
|
3100 (narrow-to-region (point) (progn (search-forward "\n\n") (point)))
|
|
3101 (or (string-match recipients (or (mail-fetch-field "To") ""))
|
|
3102 (string-match recipients (or (mail-fetch-field "From") ""))
|
|
3103 (if (not primary-only)
|
|
3104 (string-match recipients (or (mail-fetch-field "Cc") ""))))))
|
|
3105
|
37494
|
3106 (defun rmail-message-regexp-p (n regexp)
|
|
3107 "Return t, if for message number N, regexp REGEXP matches in the header."
|
|
3108 (let ((beg (rmail-msgbeg n))
|
|
3109 (end (rmail-msgend n)))
|
|
3110 (goto-char beg)
|
|
3111 (forward-line 1)
|
|
3112 (save-excursion
|
|
3113 (save-restriction
|
|
3114 (if (prog1 (= (following-char) ?0)
|
|
3115 (forward-line 2)
|
|
3116 ;; If there's a Summary-line in the (otherwise empty)
|
|
3117 ;; header, we didn't yet get past the EOOH line.
|
37517
|
3118 (when (looking-at "^\\*\\*\\* EOOH \\*\\*\\*\n")
|
|
3119 (forward-line 1))
|
37500
|
3120 (setq beg (point))
|
37494
|
3121 (narrow-to-region (point) end))
|
45144
|
3122 (progn
|
37517
|
3123 (rfc822-goto-eoh)
|
|
3124 (setq end (point)))
|
37500
|
3125 (setq beg (point))
|
37517
|
3126 (search-forward "\n*** EOOH ***\n" end t)
|
|
3127 (setq end (1+ (match-beginning 0)))))
|
37500
|
3128 (goto-char beg)
|
37611
|
3129 (if rmail-enable-mime
|
|
3130 (funcall rmail-search-mime-header-function n regexp end)
|
|
3131 (re-search-forward regexp end t)))))
|
|
3132
|
|
3133 (defun rmail-search-message (msg regexp)
|
|
3134 "Return non-nil, if for message number MSG, regexp REGEXP matches."
|
|
3135 (goto-char (rmail-msgbeg msg))
|
|
3136 (if rmail-enable-mime
|
|
3137 (funcall rmail-search-mime-message-function msg regexp)
|
|
3138 (re-search-forward regexp (rmail-msgend msg) t)))
|
2076
|
3139
|
270
|
3140 (defvar rmail-search-last-regexp nil)
|
874
|
3141 (defun rmail-search (regexp &optional n)
|
13808
|
3142 "Show message containing next match for REGEXP (but not the current msg).
|
874
|
3143 Prefix argument gives repeat count; negative argument means search
|
|
3144 backwards (through earlier messages).
|
|
3145 Interactively, empty argument means use same regexp used last time."
|
270
|
3146 (interactive
|
|
3147 (let* ((reversep (< (prefix-numeric-value current-prefix-arg) 0))
|
|
3148 (prompt
|
65680
|
3149 (concat (if reversep "Reverse " "") "Rmail search (regexp"))
|
270
|
3150 regexp)
|
65680
|
3151 (setq prompt
|
|
3152 (concat prompt
|
|
3153 (if rmail-search-last-regexp
|
|
3154 (concat ", default "
|
|
3155 rmail-search-last-regexp "): ")
|
|
3156 "): ")))
|
270
|
3157 (setq regexp (read-string prompt))
|
|
3158 (cond ((not (equal regexp ""))
|
|
3159 (setq rmail-search-last-regexp regexp))
|
|
3160 ((not rmail-search-last-regexp)
|
|
3161 (error "No previous Rmail search string")))
|
874
|
3162 (list rmail-search-last-regexp
|
|
3163 (prefix-numeric-value current-prefix-arg))))
|
|
3164 (or n (setq n 1))
|
270
|
3165 (message "%sRmail search for %s..."
|
937
|
3166 (if (< n 0) "Reverse " "")
|
270
|
3167 regexp)
|
37611
|
3168 (set-buffer rmail-buffer)
|
270
|
3169 (rmail-maybe-set-message-counters)
|
|
3170 (let ((omin (point-min))
|
|
3171 (omax (point-max))
|
|
3172 (opoint (point))
|
|
3173 win
|
874
|
3174 (reversep (< n 0))
|
270
|
3175 (msg rmail-current-message))
|
|
3176 (unwind-protect
|
|
3177 (progn
|
|
3178 (widen)
|
874
|
3179 (while (/= n 0)
|
|
3180 ;; Check messages one by one, advancing message number up or down
|
|
3181 ;; but searching forward through each message.
|
|
3182 (if reversep
|
|
3183 (while (and (null win) (> msg 1))
|
37611
|
3184 (setq msg (1- msg)
|
|
3185 win (rmail-search-message msg regexp)))
|
874
|
3186 (while (and (null win) (< msg rmail-total-messages))
|
37611
|
3187 (setq msg (1+ msg)
|
|
3188 win (rmail-search-message msg regexp))))
|
937
|
3189 (setq n (+ n (if reversep 1 -1)))))
|
270
|
3190 (if win
|
|
3191 (progn
|
37611
|
3192 (rmail-show-message msg)
|
|
3193 ;; Search forward (if this is a normal search) or backward
|
|
3194 ;; (if this is a reverse search) through this message to
|
|
3195 ;; position point. This search may fail because REGEXP
|
|
3196 ;; was found in the hidden portion of this message. In
|
|
3197 ;; that case, move point to the beginning of visible
|
|
3198 ;; portion.
|
270
|
3199 (if reversep
|
|
3200 (progn
|
37611
|
3201 (goto-char (point-max))
|
|
3202 (re-search-backward regexp nil 'move))
|
|
3203 (goto-char (point-min))
|
|
3204 (re-search-forward regexp nil t))
|
270
|
3205 (message "%sRmail search for %s...done"
|
|
3206 (if reversep "Reverse " "")
|
37611
|
3207 regexp))
|
270
|
3208 (goto-char opoint)
|
|
3209 (narrow-to-region omin omax)
|
|
3210 (ding)
|
|
3211 (message "Search failed: %s" regexp)))))
|
|
3212
|
874
|
3213 (defun rmail-search-backwards (regexp &optional n)
|
|
3214 "Show message containing previous match for REGEXP.
|
|
3215 Prefix argument gives repeat count; negative argument means search
|
|
3216 forward (through later messages).
|
|
3217 Interactively, empty argument means use same regexp used last time."
|
|
3218 (interactive
|
937
|
3219 (let* ((reversep (>= (prefix-numeric-value current-prefix-arg) 0))
|
874
|
3220 (prompt
|
65680
|
3221 (concat (if reversep "Reverse " "") "Rmail search (regexp"))
|
874
|
3222 regexp)
|
65680
|
3223 (setq prompt
|
|
3224 (concat prompt
|
|
3225 (if rmail-search-last-regexp
|
|
3226 (concat ", default "
|
|
3227 rmail-search-last-regexp "): ")
|
|
3228 "): ")))
|
874
|
3229 (setq regexp (read-string prompt))
|
|
3230 (cond ((not (equal regexp ""))
|
|
3231 (setq rmail-search-last-regexp regexp))
|
|
3232 ((not rmail-search-last-regexp)
|
|
3233 (error "No previous Rmail search string")))
|
|
3234 (list rmail-search-last-regexp
|
|
3235 (prefix-numeric-value current-prefix-arg))))
|
12198
|
3236 (rmail-search regexp (- (or n 1))))
|
874
|
3237
|
270
|
3238 ;; Show the first message which has the `unseen' attribute.
|
|
3239 (defun rmail-first-unseen-message ()
|
1360
|
3240 (rmail-maybe-set-message-counters)
|
270
|
3241 (let ((current 1)
|
|
3242 found)
|
|
3243 (save-restriction
|
|
3244 (widen)
|
10191
|
3245 (while (and (not found) (<= current rmail-total-messages))
|
270
|
3246 (if (rmail-message-labels-p current ", ?\\(unseen\\),")
|
346
|
3247 (setq found current))
|
|
3248 (setq current (1+ current))))
|
1342
|
3249 ;; Let the caller show the message.
|
|
3250 ;; (if found
|
|
3251 ;; (rmail-show-message found))
|
|
3252 found))
|
10662
|
3253
|
68091
|
3254 (defun rmail-current-subject ()
|
|
3255 "Return the current subject.
|
|
3256 The subject is stripped of leading and trailing whitespace, and
|
|
3257 of typical reply prefixes such as Re:."
|
|
3258 (let ((subject (or (mail-fetch-field "Subject") "")))
|
21100
|
3259 (if (string-match "\\`[ \t]+" subject)
|
|
3260 (setq subject (substring subject (match-end 0))))
|
68091
|
3261 (if (string-match rmail-reply-regexp subject)
|
15746
|
3262 (setq subject (substring subject (match-end 0))))
|
21100
|
3263 (if (string-match "[ \t]+\\'" subject)
|
|
3264 (setq subject (substring subject 0 (match-beginning 0))))
|
68091
|
3265 subject))
|
|
3266
|
|
3267 (defun rmail-current-subject-regexp ()
|
|
3268 "Return a regular expression matching the current subject.
|
|
3269 The regular expression matches the subject header line of
|
|
3270 messages about the same subject. The subject itself is stripped
|
|
3271 of leading and trailing whitespace, of typical reply prefixes
|
|
3272 such as Re: and whitespace within the subject is replaced by a
|
|
3273 regular expression matching whitespace in general in order to
|
|
3274 take into account that subject header lines may include newlines
|
|
3275 and more whitespace. The returned regular expressions contains
|
|
3276 `rmail-reply-regexp' and ends with a newline."
|
|
3277 (let ((subject (rmail-current-subject)))
|
67469
b845fff9455c
(rmail-next-same-subject): Handle multiple "Re: " strings and long subject
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
3278 ;; If Subject is long, mailers will break it into several lines at
|
b845fff9455c
(rmail-next-same-subject): Handle multiple "Re: " strings and long subject
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
3279 ;; arbitrary places, so replace whitespace with a regexp that will
|
b845fff9455c
(rmail-next-same-subject): Handle multiple "Re: " strings and long subject
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
3280 ;; match any sequence of spaces, TABs, and newlines.
|
b845fff9455c
(rmail-next-same-subject): Handle multiple "Re: " strings and long subject
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
3281 (setq subject (regexp-quote subject))
|
b845fff9455c
(rmail-next-same-subject): Handle multiple "Re: " strings and long subject
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
3282 (setq subject
|
b845fff9455c
(rmail-next-same-subject): Handle multiple "Re: " strings and long subject
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
3283 (replace-regexp-in-string "[ \t\n]+" "[ \t\n]+" subject t t))
|
79439
b5d24ce5f8b7
(rmail-current-subject-regexp): Allow more than one space after "Subject:".
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
3284 ;; Some mailers insert extra spaces after "Subject:", so allow any
|
b5d24ce5f8b7
(rmail-current-subject-regexp): Allow more than one space after "Subject:".
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
3285 ;; amount of them.
|
b5d24ce5f8b7
(rmail-current-subject-regexp): Allow more than one space after "Subject:".
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
3286 (concat "^Subject:[ \t]+"
|
68091
|
3287 (if (string= "\\`" (substring rmail-reply-regexp 0 2))
|
|
3288 (substring rmail-reply-regexp 2)
|
|
3289 rmail-reply-regexp)
|
|
3290 subject "[ \t]*\n")))
|
|
3291
|
|
3292 (defun rmail-next-same-subject (n)
|
|
3293 "Go to the next mail message having the same subject header.
|
|
3294 With prefix argument N, do this N times.
|
|
3295 If N is negative, go backwards instead."
|
|
3296 (interactive "p")
|
|
3297 (let ((search-regexp (rmail-current-subject-regexp))
|
|
3298 (forward (> n 0))
|
|
3299 (i rmail-current-message)
|
|
3300 (case-fold-search t)
|
|
3301 found)
|
10662
|
3302 (save-excursion
|
|
3303 (save-restriction
|
|
3304 (widen)
|
|
3305 (while (and (/= n 0)
|
|
3306 (if forward
|
|
3307 (< i rmail-total-messages)
|
|
3308 (> i 1)))
|
|
3309 (let (done)
|
|
3310 (while (and (not done)
|
|
3311 (if forward
|
|
3312 (< i rmail-total-messages)
|
|
3313 (> i 1)))
|
|
3314 (setq i (if forward (1+ i) (1- i)))
|
|
3315 (goto-char (rmail-msgbeg i))
|
|
3316 (search-forward "\n*** EOOH ***\n")
|
|
3317 (let ((beg (point)) end)
|
|
3318 (search-forward "\n\n")
|
|
3319 (setq end (point))
|
|
3320 (goto-char beg)
|
|
3321 (setq done (re-search-forward search-regexp end t))))
|
|
3322 (if done (setq found i)))
|
|
3323 (setq n (if forward (1- n) (1+ n))))))
|
|
3324 (if found
|
|
3325 (rmail-show-message found)
|
|
3326 (error "No %s message with same subject"
|
|
3327 (if forward "following" "previous")))))
|
|
3328
|
|
3329 (defun rmail-previous-same-subject (n)
|
|
3330 "Go to the previous mail message having the same subject header.
|
|
3331 With prefix argument N, do this N times.
|
|
3332 If N is negative, go forwards instead."
|
|
3333 (interactive "p")
|
|
3334 (rmail-next-same-subject (- n)))
|
270
|
3335
|
|
3336 ;;;; *** Rmail Message Deletion Commands ***
|
|
3337
|
|
3338 (defun rmail-message-deleted-p (n)
|
|
3339 (= (aref rmail-deleted-vector n) ?D))
|
|
3340
|
|
3341 (defun rmail-set-message-deleted-p (n state)
|
|
3342 (aset rmail-deleted-vector n (if state ?D ?\ )))
|
|
3343
|
|
3344 (defun rmail-delete-message ()
|
|
3345 "Delete this message and stay on it."
|
|
3346 (interactive)
|
13477
|
3347 (rmail-set-attribute "deleted" t)
|
|
3348 (run-hooks 'rmail-delete-message-hook))
|
270
|
3349
|
|
3350 (defun rmail-undelete-previous-message ()
|
|
3351 "Back up to deleted message, select it, and undelete it."
|
|
3352 (interactive)
|
37611
|
3353 (set-buffer rmail-buffer)
|
270
|
3354 (let ((msg rmail-current-message))
|
|
3355 (while (and (> msg 0)
|
|
3356 (not (rmail-message-deleted-p msg)))
|
|
3357 (setq msg (1- msg)))
|
|
3358 (if (= msg 0)
|
|
3359 (error "No previous deleted message")
|
|
3360 (if (/= msg rmail-current-message)
|
|
3361 (rmail-show-message msg))
|
2076
|
3362 (rmail-set-attribute "deleted" nil)
|
|
3363 (if (rmail-summary-exists)
|
|
3364 (save-excursion
|
|
3365 (set-buffer rmail-summary-buffer)
|
|
3366 (rmail-summary-mark-undeleted msg)))
|
|
3367 (rmail-maybe-display-summary))))
|
270
|
3368
|
|
3369 (defun rmail-delete-forward (&optional backward)
|
|
3370 "Delete this message and move to next nondeleted one.
|
|
3371 Deleted messages stay in the file until the \\[rmail-expunge] command is given.
|
4838
|
3372 With prefix argument, delete and move backward.
|
|
3373
|
|
3374 Returns t if a new message is displayed after the delete, or nil otherwise."
|
270
|
3375 (interactive "P")
|
|
3376 (rmail-set-attribute "deleted" t)
|
13477
|
3377 (run-hooks 'rmail-delete-message-hook)
|
2076
|
3378 (let ((del-msg rmail-current-message))
|
|
3379 (if (rmail-summary-exists)
|
9394
|
3380 (rmail-select-summary
|
|
3381 (rmail-summary-mark-deleted del-msg)))
|
4838
|
3382 (prog1 (rmail-next-undeleted-message (if backward -1 1))
|
|
3383 (rmail-maybe-display-summary))))
|
270
|
3384
|
|
3385 (defun rmail-delete-backward ()
|
|
3386 "Delete this message and move to previous nondeleted one.
|
|
3387 Deleted messages stay in the file until the \\[rmail-expunge] command is given."
|
|
3388 (interactive)
|
|
3389 (rmail-delete-forward t))
|
|
3390
|
9153
|
3391 ;; Compute the message number a given message would have after expunging.
|
|
3392 ;; The present number of the message is OLDNUM.
|
|
3393 ;; DELETEDVEC should be rmail-deleted-vector.
|
|
3394 ;; The value is nil for a message that would be deleted.
|
|
3395 (defun rmail-msg-number-after-expunge (deletedvec oldnum)
|
|
3396 (if (or (null oldnum) (= (aref deletedvec oldnum) ?D))
|
|
3397 nil
|
|
3398 (let ((i 0)
|
|
3399 (newnum 0))
|
|
3400 (while (< i oldnum)
|
|
3401 (if (/= (aref deletedvec i) ?D)
|
|
3402 (setq newnum (1+ newnum)))
|
|
3403 (setq i (1+ i)))
|
|
3404 newnum)))
|
|
3405
|
34185
|
3406 (defun rmail-expunge-confirmed ()
|
|
3407 "Return t if deleted message should be expunged. If necessary, ask the user.
|
|
3408 See also user-option `rmail-confirm-expunge'."
|
37611
|
3409 (set-buffer rmail-buffer)
|
34185
|
3410 (or (not (stringp rmail-deleted-vector))
|
|
3411 (not (string-match "D" rmail-deleted-vector))
|
|
3412 (null rmail-confirm-expunge)
|
|
3413 (funcall rmail-confirm-expunge
|
|
3414 "Erase deleted messages from Rmail file? ")))
|
|
3415
|
53598
|
3416 (defun rmail-only-expunge (&optional dont-show)
|
270
|
3417 "Actually erase all deleted messages in the file."
|
|
3418 (interactive)
|
37611
|
3419 (set-buffer rmail-buffer)
|
270
|
3420 (message "Expunging deleted messages...")
|
|
3421 ;; Discard all undo records for this buffer.
|
|
3422 (or (eq buffer-undo-list t)
|
|
3423 (setq buffer-undo-list nil))
|
|
3424 (rmail-maybe-set-message-counters)
|
|
3425 (let* ((omax (- (buffer-size) (point-max)))
|
|
3426 (omin (- (buffer-size) (point-min)))
|
|
3427 (opoint (if (and (> rmail-current-message 0)
|
7037
|
3428 (rmail-message-deleted-p rmail-current-message))
|
|
3429 0
|
37611
|
3430 (if rmail-enable-mime
|
|
3431 (with-current-buffer rmail-view-buffer
|
|
3432 (- (point)(point-min)))
|
|
3433 (- (point) (point-min)))))
|
270
|
3434 (messages-head (cons (aref rmail-message-vector 0) nil))
|
|
3435 (messages-tail messages-head)
|
|
3436 ;; Don't make any undo records for the expunging.
|
|
3437 (buffer-undo-list t)
|
|
3438 (win))
|
|
3439 (unwind-protect
|
|
3440 (save-excursion
|
|
3441 (widen)
|
|
3442 (goto-char (point-min))
|
|
3443 (let ((counter 0)
|
|
3444 (number 1)
|
|
3445 (total rmail-total-messages)
|
|
3446 (new-message-number rmail-current-message)
|
|
3447 (new-summary nil)
|
17620
|
3448 (new-msgref (list (list 0)))
|
9153
|
3449 (rmailbuf (current-buffer))
|
270
|
3450 (buffer-read-only nil)
|
|
3451 (messages rmail-message-vector)
|
|
3452 (deleted rmail-deleted-vector)
|
|
3453 (summary rmail-summary-vector))
|
|
3454 (setq rmail-total-messages nil
|
|
3455 rmail-current-message nil
|
|
3456 rmail-message-vector nil
|
|
3457 rmail-deleted-vector nil
|
|
3458 rmail-summary-vector nil)
|
9153
|
3459
|
270
|
3460 (while (<= number total)
|
|
3461 (if (= (aref deleted number) ?D)
|
|
3462 (progn
|
|
3463 (delete-region
|
|
3464 (marker-position (aref messages number))
|
|
3465 (marker-position (aref messages (1+ number))))
|
|
3466 (move-marker (aref messages number) nil)
|
|
3467 (if (> new-message-number counter)
|
|
3468 (setq new-message-number (1- new-message-number))))
|
|
3469 (setq counter (1+ counter))
|
|
3470 (setq messages-tail
|
|
3471 (setcdr messages-tail
|
|
3472 (cons (aref messages number) nil)))
|
|
3473 (setq new-summary
|
|
3474 (cons (if (= counter number) (aref summary (1- number)))
|
17620
|
3475 new-summary))
|
|
3476 (setq new-msgref
|
|
3477 (cons (aref rmail-msgref-vector number)
|
|
3478 new-msgref))
|
|
3479 (setcar (car new-msgref) counter))
|
270
|
3480 (if (zerop (% (setq number (1+ number)) 20))
|
|
3481 (message "Expunging deleted messages...%d" number)))
|
|
3482 (setq messages-tail
|
|
3483 (setcdr messages-tail
|
|
3484 (cons (aref messages number) nil)))
|
|
3485 (setq rmail-current-message new-message-number
|
|
3486 rmail-total-messages counter
|
|
3487 rmail-message-vector (apply 'vector messages-head)
|
|
3488 rmail-deleted-vector (make-string (1+ counter) ?\ )
|
|
3489 rmail-summary-vector (vconcat (nreverse new-summary))
|
17620
|
3490 rmail-msgref-vector (apply 'vector (nreverse new-msgref))
|
270
|
3491 win t)))
|
|
3492 (message "Expunging deleted messages...done")
|
|
3493 (if (not win)
|
|
3494 (narrow-to-region (- (buffer-size) omin) (- (buffer-size) omax)))
|
53598
|
3495 (if (not dont-show)
|
|
3496 (rmail-show-message
|
64177
|
3497 (if (zerop rmail-current-message) 1 nil)))
|
|
3498 (if rmail-enable-mime
|
|
3499 (goto-char (+ (point-min) opoint))
|
|
3500 (goto-char (+ (point) opoint))))))
|
2076
|
3501
|
|
3502 (defun rmail-expunge ()
|
|
3503 "Erase deleted messages from Rmail file and summary buffer."
|
|
3504 (interactive)
|
34185
|
3505 (when (rmail-expunge-confirmed)
|
28290
|
3506 (rmail-only-expunge)
|
|
3507 (if (rmail-summary-exists)
|
34185
|
3508 (rmail-select-summary (rmail-update-summary)))))
|
270
|
3509
|
|
3510 ;;;; *** Rmail Mailing Commands ***
|
|
3511
|
16633
|
3512 (defun rmail-start-mail (&optional noerase to subject in-reply-to cc
|
|
3513 replybuffer sendactions same-window others)
|
|
3514 (let (yank-action)
|
|
3515 (if replybuffer
|
|
3516 (setq yank-action (list 'insert-buffer replybuffer)))
|
|
3517 (setq others (cons (cons "cc" cc) others))
|
|
3518 (setq others (cons (cons "in-reply-to" in-reply-to) others))
|
|
3519 (if same-window
|
|
3520 (compose-mail to subject others
|
|
3521 noerase nil
|
|
3522 yank-action sendactions)
|
55114
|
3523 (if rmail-mail-new-frame
|
16633
|
3524 (prog1
|
|
3525 (compose-mail to subject others
|
|
3526 noerase 'switch-to-buffer-other-frame
|
|
3527 yank-action sendactions)
|
|
3528 ;; This is not a standard frame parameter;
|
|
3529 ;; nothing except sendmail.el looks at it.
|
|
3530 (modify-frame-parameters (selected-frame)
|
|
3531 '((mail-dedicated-frame . t))))
|
|
3532 (compose-mail to subject others
|
|
3533 noerase 'switch-to-buffer-other-window
|
|
3534 yank-action sendactions)))))
|
4108
|
3535
|
270
|
3536 (defun rmail-mail ()
|
2076
|
3537 "Send mail in another window.
|
|
3538 While composing the message, use \\[mail-yank-original] to yank the
|
|
3539 original message into it."
|
270
|
3540 (interactive)
|
17093
|
3541 (rmail-start-mail nil nil nil nil nil rmail-view-buffer))
|
270
|
3542
|
|
3543 (defun rmail-continue ()
|
|
3544 "Continue composing outgoing message previously being composed."
|
|
3545 (interactive)
|
4108
|
3546 (rmail-start-mail t))
|
270
|
3547
|
|
3548 (defun rmail-reply (just-sender)
|
|
3549 "Reply to the current message.
|
|
3550 Normally include CC: to all other recipients of original message;
|
|
3551 prefix argument means ignore them. While composing the reply,
|
|
3552 use \\[mail-yank-original] to yank the original message into it."
|
|
3553 (interactive "P")
|
16953
|
3554 (let (from reply-to cc subject date to message-id references
|
16467
|
3555 resent-to resent-cc resent-reply-to
|
17093
|
3556 (msgnum rmail-current-message))
|
270
|
3557 (save-excursion
|
|
3558 (save-restriction
|
38305
|
3559 (if rmail-enable-mime
|
|
3560 (narrow-to-region
|
|
3561 (goto-char (point-min))
|
|
3562 (if (search-forward "\n\n" nil 'move)
|
|
3563 (1+ (match-beginning 0))
|
|
3564 (point)))
|
37611
|
3565 (widen)
|
|
3566 (goto-char (rmail-msgbeg rmail-current-message))
|
|
3567 (forward-line 1)
|
|
3568 (if (= (following-char) ?0)
|
|
3569 (narrow-to-region
|
|
3570 (progn (forward-line 2)
|
|
3571 (point))
|
|
3572 (progn (search-forward "\n\n" (rmail-msgend rmail-current-message)
|
|
3573 'move)
|
|
3574 (point)))
|
|
3575 (narrow-to-region (point)
|
|
3576 (progn (search-forward "\n*** EOOH ***\n")
|
|
3577 (beginning-of-line) (point)))))
|
16467
|
3578 (setq from (mail-fetch-field "from")
|
64972
|
3579 reply-to (or (mail-fetch-field "mail-reply-to" nil t)
|
60692
|
3580 (mail-fetch-field "reply-to" nil t)
|
270
|
3581 from)
|
16467
|
3582 subject (mail-fetch-field "subject")
|
|
3583 date (mail-fetch-field "date")
|
|
3584 message-id (mail-fetch-field "message-id")
|
16953
|
3585 references (mail-fetch-field "references" nil nil t)
|
|
3586 resent-reply-to (mail-fetch-field "resent-reply-to" nil t)
|
16467
|
3587 resent-cc (and (not just-sender)
|
|
3588 (mail-fetch-field "resent-cc" nil t))
|
|
3589 resent-to (or (mail-fetch-field "resent-to" nil t) "")
|
|
3590 ;;; resent-subject (mail-fetch-field "resent-subject")
|
|
3591 ;;; resent-date (mail-fetch-field "resent-date")
|
|
3592 ;;; resent-message-id (mail-fetch-field "resent-message-id")
|
64972
|
3593 )
|
|
3594 (unless just-sender
|
|
3595 (if (mail-fetch-field "mail-followup-to" nil t)
|
|
3596 ;; If this header field is present, use it instead of the To and CC fields.
|
|
3597 (setq to (mail-fetch-field "mail-followup-to" nil t))
|
|
3598 (setq cc (or (mail-fetch-field "cc" nil t) "")
|
|
3599 to (or (mail-fetch-field "to" nil t) ""))))
|
|
3600
|
|
3601 ))
|
|
3602
|
16467
|
3603 ;; Merge the resent-to and resent-cc into the to and cc.
|
|
3604 (if (and resent-to (not (equal resent-to "")))
|
|
3605 (if (not (equal to ""))
|
|
3606 (setq to (concat to ", " resent-to))
|
|
3607 (setq to resent-to)))
|
|
3608 (if (and resent-cc (not (equal resent-cc "")))
|
|
3609 (if (not (equal cc ""))
|
|
3610 (setq cc (concat cc ", " resent-cc))
|
|
3611 (setq cc resent-cc)))
|
|
3612 ;; Add `Re: ' to subject if not there already.
|
2076
|
3613 (and (stringp subject)
|
10640
|
3614 (setq subject
|
|
3615 (concat rmail-reply-prefix
|
17065
|
3616 (if (let ((case-fold-search t))
|
|
3617 (string-match rmail-reply-regexp subject))
|
10640
|
3618 (substring subject (match-end 0))
|
|
3619 subject))))
|
18091
|
3620 (rmail-start-mail
|
|
3621 nil
|
|
3622 ;; Using mail-strip-quoted-names is undesirable with newer mailers
|
|
3623 ;; since they can handle the names unstripped.
|
|
3624 ;; I don't know whether there are other mailers that still
|
|
3625 ;; need the names to be stripped.
|
49008
|
3626 ;;; (mail-strip-quoted-names reply-to)
|
62587
bb278282ddbc
(rmail-reply): Filter the list in reply-to through rmail-dont-reply-to.
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
3627 ;; Remove unwanted names from reply-to, since Mail-Followup-To
|
bb278282ddbc
(rmail-reply): Filter the list in reply-to through rmail-dont-reply-to.
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
3628 ;; header causes all the names in it to wind up in reply-to, not
|
bb278282ddbc
(rmail-reply): Filter the list in reply-to through rmail-dont-reply-to.
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
3629 ;; in cc. But if what's left is an empty list, use the original.
|
bb278282ddbc
(rmail-reply): Filter the list in reply-to through rmail-dont-reply-to.
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
3630 (let* ((reply-to-list (rmail-dont-reply-to reply-to)))
|
bb278282ddbc
(rmail-reply): Filter the list in reply-to through rmail-dont-reply-to.
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
3631 (if (string= reply-to-list "") reply-to reply-to-list))
|
18091
|
3632 subject
|
|
3633 (rmail-make-in-reply-to-field from date message-id)
|
|
3634 (if just-sender
|
|
3635 nil
|
|
3636 ;; mail-strip-quoted-names is NOT necessary for rmail-dont-reply-to
|
|
3637 ;; to do its job.
|
|
3638 (let* ((cc-list (rmail-dont-reply-to
|
|
3639 (mail-strip-quoted-names
|
|
3640 (if (null cc) to (concat to ", " cc))))))
|
|
3641 (if (string= cc-list "") nil cc-list)))
|
|
3642 rmail-view-buffer
|
|
3643 (list (list 'rmail-mark-message
|
37611
|
3644 rmail-buffer
|
|
3645 (with-current-buffer rmail-buffer
|
|
3646 (aref rmail-msgref-vector msgnum))
|
18091
|
3647 "answered"))
|
|
3648 nil
|
|
3649 (list (cons "References" (concat (mapconcat 'identity references " ")
|
|
3650 " " message-id))))))
|
17565
|
3651
|
17620
|
3652 (defun rmail-mark-message (buffer msgnum-list attribute)
|
|
3653 "Give BUFFER's message number in MSGNUM-LIST the attribute ATTRIBUTE.
|
|
3654 This is use in the send-actions for message buffers.
|
|
3655 MSGNUM-LIST is a list of the form (MSGNUM)
|
|
3656 which is an element of rmail-msgref-vector."
|
17565
|
3657 (save-excursion
|
|
3658 (set-buffer buffer)
|
17620
|
3659 (if (car msgnum-list)
|
|
3660 (rmail-set-attribute attribute t (car msgnum-list)))))
|
270
|
3661
|
|
3662 (defun rmail-make-in-reply-to-field (from date message-id)
|
|
3663 (cond ((not from)
|
|
3664 (if message-id
|
|
3665 message-id
|
|
3666 nil))
|
|
3667 (mail-use-rfc822
|
|
3668 (require 'rfc822)
|
|
3669 (let ((tem (car (rfc822-addresses from))))
|
|
3670 (if message-id
|
19315
|
3671 (if (or (not tem)
|
|
3672 (string-match
|
|
3673 (regexp-quote (if (string-match "@[^@]*\\'" tem)
|
|
3674 (substring tem 0
|
|
3675 (match-beginning 0))
|
|
3676 tem))
|
|
3677 message-id))
|
|
3678 ;; missing From, or Message-ID is sufficiently informative
|
270
|
3679 message-id
|
|
3680 (concat message-id " (" tem ")"))
|
5692
|
3681 ;; Copy TEM, discarding text properties.
|
|
3682 (setq tem (copy-sequence tem))
|
|
3683 (set-text-properties 0 (length tem) nil tem)
|
|
3684 (setq tem (copy-sequence tem))
|
|
3685 ;; Use prin1 to fake RFC822 quoting
|
|
3686 (let ((field (prin1-to-string tem)))
|
|
3687 (if date
|
|
3688 (concat field "'s message of " date)
|
|
3689 field)))))
|
20681
|
3690 ((let* ((foo "[^][\000-\037()<>@,;:\\\" ]+")
|
|
3691 (bar "[^][\000-\037()<>@,;:\\\"]+"))
|
|
3692 ;; These strings both match all non-ASCII characters.
|
270
|
3693 (or (string-match (concat "\\`[ \t]*\\(" bar
|
|
3694 "\\)\\(<" foo "@" foo ">\\)?[ \t]*\\'")
|
|
3695 ;; "Unix Loser <Foo@bar.edu>" => "Unix Loser"
|
|
3696 from)
|
|
3697 (string-match (concat "\\`[ \t]*<" foo "@" foo ">[ \t]*(\\("
|
|
3698 bar "\\))[ \t]*\\'")
|
|
3699 ;; "<Bugs@bar.edu>" (Losing Unix) => "Losing Unix"
|
|
3700 from)))
|
|
3701 (let ((start (match-beginning 1))
|
|
3702 (end (match-end 1)))
|
|
3703 ;; Trim whitespace which above regexp match allows
|
|
3704 (while (and (< start end)
|
|
3705 (memq (aref from start) '(?\t ?\ )))
|
|
3706 (setq start (1+ start)))
|
|
3707 (while (and (< start end)
|
|
3708 (memq (aref from (1- end)) '(?\t ?\ )))
|
|
3709 (setq end (1- end)))
|
|
3710 (let ((field (substring from start end)))
|
|
3711 (if date (setq field (concat "message from " field " on " date)))
|
|
3712 (if message-id
|
|
3713 ;; "<AA259@bar.edu> (message from Unix Loser on 1-Apr-89)"
|
|
3714 (concat message-id " (" field ")")
|
|
3715 field))))
|
|
3716 (t
|
|
3717 ;; If we can't kludge it simply, do it correctly
|
|
3718 (let ((mail-use-rfc822 t))
|
|
3719 (rmail-make-in-reply-to-field from date message-id)))))
|
10970
|
3720
|
2687
|
3721 (defun rmail-forward (resend)
|
|
3722 "Forward the current message to another user.
|
|
3723 With prefix argument, \"resend\" the message instead of forwarding it;
|
|
3724 see the documentation of `rmail-resend'."
|
|
3725 (interactive "P")
|
|
3726 (if resend
|
|
3727 (call-interactively 'rmail-resend)
|
37611
|
3728 (let ((forward-buffer rmail-buffer)
|
9153
|
3729 (msgnum rmail-current-message)
|
2687
|
3730 (subject (concat "["
|
|
3731 (let ((from (or (mail-fetch-field "From")
|
|
3732 (mail-fetch-field ">From"))))
|
|
3733 (if from
|
|
3734 (concat (mail-strip-quoted-names from) ": ")
|
|
3735 ""))
|
|
3736 (or (mail-fetch-field "Subject") "")
|
|
3737 "]")))
|
16633
|
3738 (if (rmail-start-mail
|
|
3739 nil nil subject nil nil nil
|
17565
|
3740 (list (list 'rmail-mark-message
|
17620
|
3741 forward-buffer
|
37611
|
3742 (with-current-buffer rmail-buffer
|
|
3743 (aref rmail-msgref-vector msgnum))
|
17565
|
3744 "forwarded"))
|
16633
|
3745 ;; If only one window, use it for the mail buffer.
|
|
3746 ;; Otherwise, use another window for the mail buffer
|
|
3747 ;; so that the Rmail buffer remains visible
|
|
3748 ;; and sending the mail will get back to it.
|
|
3749 (and (not rmail-mail-new-frame) (one-window-p t)))
|
9153
|
3750 ;; The mail buffer is now current.
|
4263
|
3751 (save-excursion
|
4724
04714985ce20
(rmail-forward): Insert the text right after the header separator.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
3752 ;; Insert after header separator--before signature if any.
|
21864
|
3753 (goto-char (mail-text-start))
|
41511
|
3754 (if (or rmail-enable-mime rmail-enable-mime-composing)
|
37611
|
3755 (funcall rmail-insert-mime-forwarded-message-function
|
|
3756 forward-buffer)
|
|
3757 (insert "------- Start of forwarded message -------\n")
|
|
3758 ;; Quote lines with `- ' if they start with `-'.
|
|
3759 (let ((beg (point)) end)
|
|
3760 (setq end (point-marker))
|
|
3761 (set-marker-insertion-type end t)
|
|
3762 (insert-buffer-substring forward-buffer)
|
|
3763 (goto-char beg)
|
|
3764 (while (re-search-forward "^-" end t)
|
|
3765 (beginning-of-line)
|
|
3766 (insert "- ")
|
|
3767 (forward-line 1))
|
|
3768 (goto-char end)
|
|
3769 (skip-chars-backward "\n")
|
|
3770 (if (< (point) end)
|
|
3771 (forward-char 1))
|
|
3772 (delete-region (point) end)
|
|
3773 (set-marker end nil))
|
|
3774 (insert "------- End of forwarded message -------\n"))
|
9153
|
3775 (push-mark))))))
|
10970
|
3776
|
270
|
3777 (defun rmail-resend (address &optional from comment mail-alias-file)
|
|
3778 "Resend current message to ADDRESSES.
|
5274
|
3779 ADDRESSES should be a single address, a string consisting of several
|
270
|
3780 addresses separated by commas, or a list of addresses.
|
|
3781
|
|
3782 Optional FROM is the address to resend the message from, and
|
19031
|
3783 defaults from the value of `user-mail-address'.
|
|
3784 Optional COMMENT is a string to insert as a comment in the resent message.
|
270
|
3785 Optional ALIAS-FILE is alternate aliases file to be used by sendmail,
|
|
3786 typically for purposes of moderating a list."
|
|
3787 (interactive "sResend to: ")
|
3484
|
3788 (require 'sendmail)
|
|
3789 (require 'mailalias)
|
37956
|
3790 (unless (or (eq rmail-view-buffer (current-buffer))
|
|
3791 (eq rmail-buffer (current-buffer)))
|
27871
|
3792 (error "Not an Rmail buffer"))
|
19031
|
3793 (if (not from) (setq from user-mail-address))
|
270
|
3794 (let ((tembuf (generate-new-buffer " sendmail temp"))
|
|
3795 (case-fold-search nil)
|
59118
a3caa12a673a
(rmail-resend): Let MAIL-ALIAS-FILE arg override mail-personal-alias-file.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
3796 (mail-personal-alias-file
|
a3caa12a673a
(rmail-resend): Let MAIL-ALIAS-FILE arg override mail-personal-alias-file.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
3797 (or mail-alias-file mail-personal-alias-file))
|
23298
|
3798 (mailbuf rmail-buffer))
|
270
|
3799 (unwind-protect
|
23298
|
3800 (with-current-buffer tembuf
|
270
|
3801 ;;>> Copy message into temp buffer
|
37956
|
3802 (if rmail-enable-mime
|
|
3803 (funcall rmail-insert-mime-resent-message-function mailbuf)
|
|
3804 (insert-buffer-substring mailbuf))
|
270
|
3805 (goto-char (point-min))
|
14033
|
3806 ;; Delete any Sender field, since that's not specifiable.
|
5274
|
3807 ; Only delete Sender fields in the actual header.
|
|
3808 (re-search-forward "^$" nil 'move)
|
|
3809 ; Using "while" here rather than "if" because some buggy mail
|
|
3810 ; software may have inserted multiple Sender fields.
|
|
3811 (while (re-search-backward "^Sender:" nil t)
|
|
3812 (let (beg)
|
|
3813 (setq beg (point))
|
|
3814 (forward-line 1)
|
|
3815 (while (looking-at "[ \t]")
|
|
3816 (forward-line 1))
|
|
3817 (delete-region beg (point))))
|
|
3818 ; Go back to the beginning of the buffer so the Resent- fields
|
|
3819 ; are inserted there.
|
|
3820 (goto-char (point-min))
|
270
|
3821 ;;>> Insert resent-from:
|
|
3822 (insert "Resent-From: " from "\n")
|
4020
|
3823 (insert "Resent-Date: " (mail-rfc822-date) "\n")
|
270
|
3824 ;;>> Insert resent-to: and bcc if need be.
|
|
3825 (let ((before (point)))
|
4838
|
3826 (if mail-self-blind
|
|
3827 (insert "Resent-Bcc: " (user-login-name) "\n"))
|
270
|
3828 (insert "Resent-To: " (if (stringp address)
|
|
3829 address
|
|
3830 (mapconcat 'identity address ",\n\t"))
|
|
3831 "\n")
|
11452
|
3832 ;; Expand abbrevs in the recipients.
|
8545
|
3833 (save-excursion
|
11452
|
3834 (if (featurep 'mailabbrev)
|
11533
|
3835 (let ((end (point-marker))
|
|
3836 (local-abbrev-table mail-abbrevs)
|
|
3837 (old-syntax-table (syntax-table)))
|
|
3838 (if (and (not (vectorp mail-abbrevs))
|
|
3839 (file-exists-p mail-personal-alias-file))
|
|
3840 (build-mail-abbrevs))
|
44141
|
3841 (unless mail-abbrev-syntax-table
|
|
3842 (mail-abbrev-make-syntax-table))
|
11533
|
3843 (set-syntax-table mail-abbrev-syntax-table)
|
|
3844 (goto-char before)
|
|
3845 (while (and (< (point) end)
|
|
3846 (progn (forward-word 1)
|
|
3847 (<= (point) end)))
|
|
3848 (expand-abbrev))
|
|
3849 (set-syntax-table old-syntax-table))
|
11452
|
3850 (expand-mail-aliases before (point)))))
|
270
|
3851 ;;>> Set up comment, if any.
|
|
3852 (if (and (sequencep comment) (not (zerop (length comment))))
|
|
3853 (let ((before (point))
|
|
3854 after)
|
|
3855 (insert comment)
|
|
3856 (or (eolp) (insert "\n"))
|
|
3857 (setq after (point))
|
|
3858 (goto-char before)
|
|
3859 (while (< (point) after)
|
|
3860 (insert "Resent-Comment: ")
|
|
3861 (forward-line 1))))
|
|
3862 ;; Don't expand aliases in the destination fields
|
|
3863 ;; of the original message.
|
|
3864 (let (mail-aliases)
|
5470
|
3865 (funcall send-mail-function)))
|
2687
|
3866 (kill-buffer tembuf))
|
23298
|
3867 (with-current-buffer rmail-buffer
|
|
3868 (rmail-set-attribute "resent" t rmail-current-message))))
|
10970
|
3869
|
1267
|
3870 (defvar mail-unsent-separator
|
1370
c017b62c8073
(mail-unsent-separator): Allow "original message" as alternative.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
3871 (concat "^ *---+ +Unsent message follows +---+ *$\\|"
|
c017b62c8073
(mail-unsent-separator): Allow "original message" as alternative.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
3872 "^ *---+ +Returned message +---+ *$\\|"
|
22158
|
3873 "^ *---+ *Returned mail follows *---+ *$\\|"
|
10815
|
3874 "^Start of returned message$\\|"
|
22610
|
3875 "^---+ Below this line is a copy of the message.$\\|"
|
1372
|
3876 "^ *---+ +Original message +---+ *$\\|"
|
1757
|
3877 "^ *--+ +begin message +--+ *$\\|"
|
4838
|
3878 "^ *---+ +Original message follows +---+ *$\\|"
|
20984
|
3879 "^ *---+ +Your message follows +---+ *$\\|"
|
24929
|
3880 "^|? *---+ +Message text follows: +---+ *|?$\\|"
|
30100
|
3881 "^ *---+ +This is a copy of \\w+ message, including all the headers.*---+ *$")
|
8572
|
3882 "A regexp that matches the separator before the text of a failed message.")
|
270
|
3883
|
17197
|
3884 (defvar mail-mime-unsent-header "^Content-Type: message/rfc822 *$"
|
|
3885 "A regexp that matches the header of a MIME body part with a failed message.")
|
|
3886
|
270
|
3887 (defun rmail-retry-failure ()
|
|
3888 "Edit a mail message which is based on the contents of the current message.
|
|
3889 For a message rejected by the mail system, extract the interesting headers and
|
8572
|
3890 the body of the original message.
|
17197
|
3891 If the failed message is a MIME multipart message, it is searched for a
|
|
3892 body part with a header which matches the variable `mail-mime-unsent-header'.
|
|
3893 Otherwise, 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>
diff
changeset
|
3894 delimits the returned original message.
|
9d48b6752dbf
(rmail-retry-failure): Copy the whole block of headers from the message
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
3895 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>
diff
changeset
|
3896 specifying headers which should not be copied into the new message."
|
270
|
3897 (interactive)
|
|
3898 (require 'mail-utils)
|
17821
|
3899 (let ((rmail-this-buffer (current-buffer))
|
13808
|
3900 (msgnum rmail-current-message)
|
38228
|
3901 bounce-start bounce-end bounce-indent resending
|
|
3902 ;; Fetch any content-type header in current message
|
|
3903 ;; Must search thru the whole unpruned header.
|
|
3904 (content-type
|
|
3905 (save-excursion
|
|
3906 (save-restriction
|
|
3907 (rmail-narrow-to-non-pruned-header)
|
|
3908 (mail-fetch-field "Content-Type") ))))
|
|
3909 (save-excursion
|
|
3910 (goto-char (point-min))
|
|
3911 (let ((case-fold-search t))
|
45144
|
3912 (if (and content-type
|
|
3913 (string-match
|
|
3914 ";[\n\t ]*boundary=\"?\\([-0-9a-z'()+_,./:=? ]+\\)\"?"
|
38228
|
3915 content-type))
|
|
3916 ;; Handle a MIME multipart bounce message.
|
|
3917 (let ((codestring
|
|
3918 (concat "\n--"
|
45144
|
3919 (substring content-type (match-beginning 1)
|
38228
|
3920 (match-end 1)))))
|
|
3921 (unless (re-search-forward mail-mime-unsent-header nil t)
|
|
3922 (error "Cannot find beginning of header in failed message"))
|
|
3923 (unless (search-forward "\n\n" nil t)
|
|
3924 (error "Cannot find start of Mime data in failed message"))
|
|
3925 (setq bounce-start (point))
|
|
3926 (if (search-forward codestring nil t)
|
|
3927 (setq bounce-end (match-beginning 0))
|
|
3928 (setq bounce-end (point-max))))
|
|
3929 ;; Non-MIME bounce.
|
|
3930 (or (re-search-forward mail-unsent-separator nil t)
|
|
3931 (error "Cannot parse this as a failure message"))
|
|
3932 (skip-chars-forward "\n")
|
|
3933 ;; Support a style of failure message in which the original
|
|
3934 ;; message is indented, and included within lines saying
|
|
3935 ;; `Start of returned message' and `End of returned message'.
|
|
3936 (if (looking-at " +Received:")
|
|
3937 (progn
|
|
3938 (setq bounce-start (point))
|
|
3939 (skip-chars-forward " ")
|
|
3940 (setq bounce-indent (- (current-column)))
|
|
3941 (goto-char (point-max))
|
|
3942 (re-search-backward "^End of returned message$" nil t)
|
|
3943 (setq bounce-end (point)))
|
|
3944 ;; One message contained a few random lines before
|
|
3945 ;; the old message header. The first line of the
|
|
3946 ;; message started with two hyphens. A blank line
|
|
3947 ;; followed these random lines. The same line
|
|
3948 ;; beginning with two hyphens was possibly marking
|
|
3949 ;; the end of the message.
|
|
3950 (if (looking-at "^--")
|
|
3951 (let ((boundary (buffer-substring-no-properties
|
|
3952 (point)
|
|
3953 (progn (end-of-line) (point)))))
|
|
3954 (search-forward "\n\n")
|
|
3955 (skip-chars-forward "\n")
|
|
3956 (setq bounce-start (point))
|
|
3957 (goto-char (point-max))
|
|
3958 (search-backward (concat "\n\n" boundary) bounce-start t)
|
|
3959 (setq bounce-end (point)))
|
|
3960 (setq bounce-start (point)
|
|
3961 bounce-end (point-max)))
|
|
3962 (unless (search-forward "\n\n" nil t)
|
|
3963 (error "Cannot find end of header in failed message"))))))
|
|
3964 ;; We have found the message that bounced, within the current message.
|
|
3965 ;; Now start sending new message; default header fields from original.
|
|
3966 ;; Turn off the usual actions for initializing the message body
|
|
3967 ;; because we want to get only the text from the failure message.
|
|
3968 (let (mail-signature mail-setup-hook)
|
|
3969 (if (rmail-start-mail nil nil nil nil nil rmail-this-buffer
|
|
3970 (list (list 'rmail-mark-message
|
|
3971 rmail-this-buffer
|
|
3972 (aref rmail-msgref-vector msgnum)
|
|
3973 "retried")))
|
|
3974 ;; Insert original text as initial text of new draft message.
|
|
3975 ;; Bind inhibit-read-only since the header delimiter
|
|
3976 ;; of the previous message was probably read-only.
|
|
3977 (let ((inhibit-read-only t)
|
|
3978 rmail-displayed-headers
|
|
3979 rmail-ignored-headers)
|
|
3980 (erase-buffer)
|
|
3981 (insert-buffer-substring rmail-this-buffer
|
|
3982 bounce-start bounce-end)
|
|
3983 (goto-char (point-min))
|
|
3984 (if bounce-indent
|
|
3985 (indent-rigidly (point-min) (point-max) bounce-indent))
|
|
3986 (rmail-clear-headers rmail-retry-ignored-headers)
|
|
3987 (rmail-clear-headers "^sender:\\|^return-path:\\|^received:")
|
|
3988 (mail-sendmail-delimit-header)
|
|
3989 (save-restriction
|
|
3990 (narrow-to-region (point-min) (mail-header-end))
|
|
3991 (setq resending (mail-fetch-field "resent-to"))
|
|
3992 (if mail-self-blind
|
|
3993 (if resending
|
|
3994 (insert "Resent-Bcc: " (user-login-name) "\n")
|
|
3995 (insert "BCC: " (user-login-name) "\n"))))
|
|
3996 (goto-char (point-min))
|
|
3997 (mail-position-on-field (if resending "Resent-To" "To") t))))))
|
10970
|
3998
|
2076
|
3999 (defun rmail-summary-exists ()
|
78477
|
4000 "Non-nil if in an RMAIL buffer and an associated summary buffer exists.
|
6408
|
4001 In fact, the non-nil value returned is the summary buffer itself."
|
2076
|
4002 (and rmail-summary-buffer (buffer-name rmail-summary-buffer)
|
|
4003 rmail-summary-buffer))
|
|
4004
|
|
4005 (defun rmail-summary-displayed ()
|
78477
|
4006 "t if in RMAIL buffer and an associated summary buffer is displayed."
|
2076
|
4007 (and rmail-summary-buffer (get-buffer-window rmail-summary-buffer)))
|
|
4008
|
17630
|
4009 (defcustom rmail-redisplay-summary nil
|
2076
|
4010 "*Non-nil means Rmail should show the summary when it changes.
|
17630
|
4011 This has an effect only if a summary buffer exists."
|
|
4012 :type 'boolean
|
|
4013 :group 'rmail-summary)
|
2076
|
4014
|
17630
|
4015 (defcustom rmail-summary-window-size nil
|
|
4016 "*Non-nil means specify the height for an Rmail summary window."
|
20261
|
4017 :type '(choice (const :tag "Disabled" nil) integer)
|
17630
|
4018 :group 'rmail-summary)
|
6408
|
4019
|
2076
|
4020 ;; Put the summary buffer back on the screen, if user wants that.
|
|
4021 (defun rmail-maybe-display-summary ()
|
6408
|
4022 (let ((selected (selected-window))
|
|
4023 window)
|
|
4024 ;; If requested, make sure the summary is displayed.
|
|
4025 (and rmail-summary-buffer (buffer-name rmail-summary-buffer)
|
|
4026 rmail-redisplay-summary
|
8533
|
4027 (if (get-buffer-window rmail-summary-buffer 0)
|
|
4028 ;; It's already in some frame; show that one.
|
|
4029 (let ((frame (window-frame
|
|
4030 (get-buffer-window rmail-summary-buffer 0))))
|
|
4031 (make-frame-visible frame)
|
|
4032 (raise-frame frame))
|
|
4033 (display-buffer rmail-summary-buffer)))
|
6408
|
4034 ;; If requested, set the height of the summary window.
|
|
4035 (and rmail-summary-buffer (buffer-name rmail-summary-buffer)
|
|
4036 rmail-summary-window-size
|
|
4037 (setq window (get-buffer-window rmail-summary-buffer))
|
8533
|
4038 ;; Don't try to change the size if just one window in frame.
|
|
4039 (not (eq window (frame-root-window (window-frame window))))
|
45144
|
4040 (unwind-protect
|
6408
|
4041 (progn
|
|
4042 (select-window window)
|
14779
|
4043 (enlarge-window (- rmail-summary-window-size (window-height))))
|
6408
|
4044 (select-window selected)))))
|
270
|
4045
|
14374
|
4046 ;;;; *** Rmail Local Fontification ***
|
|
4047
|
|
4048 (defun rmail-fontify-buffer-function ()
|
|
4049 ;; This function's symbol is bound to font-lock-fontify-buffer-function.
|
14467
|
4050 (add-hook 'rmail-show-message-hook 'rmail-fontify-message nil t)
|
14779
|
4051 ;; If we're already showing a message, fontify it now.
|
|
4052 (if rmail-current-message (rmail-fontify-message))
|
|
4053 ;; Prevent Font Lock mode from kicking in.
|
14467
|
4054 (setq font-lock-fontified t))
|
14374
|
4055
|
|
4056 (defun rmail-unfontify-buffer-function ()
|
|
4057 ;; This function's symbol is bound to font-lock-fontify-unbuffer-function.
|
14467
|
4058 (let ((modified (buffer-modified-p))
|
|
4059 (buffer-undo-list t) (inhibit-read-only t)
|
|
4060 before-change-functions after-change-functions
|
|
4061 buffer-file-name buffer-file-truename)
|
|
4062 (save-restriction
|
|
4063 (widen)
|
|
4064 (remove-hook 'rmail-show-message-hook 'rmail-fontify-message t)
|
|
4065 (remove-text-properties (point-min) (point-max) '(rmail-fontified nil))
|
14898
|
4066 (font-lock-default-unfontify-buffer)
|
|
4067 (and (not modified) (buffer-modified-p) (set-buffer-modified-p nil)))))
|
14374
|
4068
|
|
4069 (defun rmail-fontify-message ()
|
|
4070 ;; Fontify the current message if it is not already fontified.
|
|
4071 (if (text-property-any (point-min) (point-max) 'rmail-fontified nil)
|
|
4072 (let ((modified (buffer-modified-p))
|
|
4073 (buffer-undo-list t) (inhibit-read-only t)
|
|
4074 before-change-functions after-change-functions
|
|
4075 buffer-file-name buffer-file-truename)
|
|
4076 (save-excursion
|
|
4077 (save-match-data
|
|
4078 (add-text-properties (point-min) (point-max) '(rmail-fontified t))
|
14898
|
4079 (font-lock-fontify-region (point-min) (point-max))
|
|
4080 (and (not modified) (buffer-modified-p) (set-buffer-modified-p nil)))))))
|
22732
|
4081
|
20757
|
4082 ;;; Speedbar support for RMAIL files.
|
22732
|
4083 (eval-when-compile (require 'speedbar))
|
|
4084
|
|
4085 (defvar rmail-speedbar-match-folder-regexp "^[A-Z0-9]+\\(\\.[A-Z0-9]+\\)?$"
|
47024
15430c8d0eaa
* startup.el (normal-splash-screen): Ensure splash buffer is
John Paul Wallington <jpw@pobox.com>
diff
changeset
|
4086 "*This regex is used to match folder names to be displayed in speedbar.
|
22732
|
4087 Enabling this will permit speedbar to display your folders for easy
|
|
4088 browsing, and moving of messages.")
|
20757
|
4089
|
|
4090 (defvar rmail-speedbar-last-user nil
|
|
4091 "The last user to be displayed in the speedbar.")
|
|
4092
|
22732
|
4093 (defvar rmail-speedbar-key-map nil
|
|
4094 "Keymap used when in rmail display mode.")
|
|
4095
|
|
4096 (defun rmail-install-speedbar-variables ()
|
|
4097 "Install those variables used by speedbar to enhance rmail."
|
|
4098 (if rmail-speedbar-key-map
|
|
4099 nil
|
|
4100 (setq rmail-speedbar-key-map (speedbar-make-specialized-keymap))
|
|
4101
|
|
4102 (define-key rmail-speedbar-key-map "e" 'speedbar-edit-line)
|
|
4103 (define-key rmail-speedbar-key-map "r" 'speedbar-edit-line)
|
|
4104 (define-key rmail-speedbar-key-map "\C-m" 'speedbar-edit-line)
|
|
4105 (define-key rmail-speedbar-key-map "M"
|
|
4106 'rmail-speedbar-move-message-to-folder-on-line)))
|
|
4107
|
20757
|
4108 (defvar rmail-speedbar-menu-items
|
22732
|
4109 '(["Read Folder" speedbar-edit-line t]
|
|
4110 ["Move message to folder" rmail-speedbar-move-message-to-folder-on-line
|
20757
|
4111 (save-excursion (beginning-of-line)
|
|
4112 (looking-at "<M> "))])
|
|
4113 "Additional menu-items to add to speedbar frame.")
|
|
4114
|
22732
|
4115 ;; Make sure our special speedbar major mode is loaded
|
|
4116 (if (featurep 'speedbar)
|
|
4117 (rmail-install-speedbar-variables)
|
|
4118 (add-hook 'speedbar-load-hook 'rmail-install-speedbar-variables))
|
|
4119
|
20757
|
4120 (defun rmail-speedbar-buttons (buffer)
|
|
4121 "Create buttons for BUFFER containing rmail messages.
|
|
4122 Click on the address under Reply to: to reply to this person.
|
|
4123 Under Folders: Click a name to read it, or on the <M> to move the
|
|
4124 current message into that RMAIL folder."
|
|
4125 (let ((from nil))
|
|
4126 (save-excursion
|
|
4127 (set-buffer buffer)
|
|
4128 (goto-char (point-min))
|
|
4129 (if (not (re-search-forward "^Reply-To: " nil t))
|
|
4130 (if (not (re-search-forward "^From:? " nil t))
|
|
4131 (setq from t)))
|
|
4132 (if from
|
|
4133 nil
|
|
4134 (setq from (buffer-substring (point) (save-excursion
|
|
4135 (end-of-line)
|
|
4136 (point))))))
|
|
4137 (goto-char (point-min))
|
|
4138 (if (and (looking-at "Reply to:")
|
|
4139 (equal from rmail-speedbar-last-user))
|
|
4140 nil
|
|
4141 (setq rmail-speedbar-last-user from)
|
|
4142 (erase-buffer)
|
|
4143 (insert "Reply To:\n")
|
|
4144 (if (stringp from)
|
|
4145 (speedbar-insert-button from 'speedbar-directory-face 'highlight
|
|
4146 'rmail-speedbar-button 'rmail-reply))
|
|
4147 (insert "Folders:\n")
|
|
4148 (let* ((case-fold-search nil)
|
|
4149 (df (directory-files (save-excursion (set-buffer buffer)
|
|
4150 default-directory)
|
22732
|
4151 nil rmail-speedbar-match-folder-regexp)))
|
20757
|
4152 (while df
|
|
4153 (speedbar-insert-button "<M>" 'speedbar-button-face 'highlight
|
|
4154 'rmail-speedbar-move-message (car df))
|
|
4155 (speedbar-insert-button (car df) 'speedbar-file-face 'highlight
|
|
4156 'rmail-speedbar-find-file nil t)
|
|
4157 (setq df (cdr df)))))))
|
|
4158
|
|
4159 (defun rmail-speedbar-button (text token indent)
|
|
4160 "Execute an rmail command specified by TEXT.
|
|
4161 The command used is TOKEN. INDENT is not used."
|
|
4162 (speedbar-with-attached-buffer
|
|
4163 (funcall token t)))
|
|
4164
|
|
4165 (defun rmail-speedbar-find-file (text token indent)
|
|
4166 "Load in the rmail file TEXT.
|
|
4167 TOKEN and INDENT are not used."
|
|
4168 (speedbar-with-attached-buffer
|
|
4169 (message "Loading in RMAIL file %s..." text)
|
|
4170 (find-file text)))
|
|
4171
|
22732
|
4172 (defun rmail-speedbar-move-message-to-folder-on-line ()
|
20757
|
4173 "If the current line is a folder, move current message to it."
|
|
4174 (interactive)
|
|
4175 (save-excursion
|
|
4176 (beginning-of-line)
|
|
4177 (if (re-search-forward "<M> " (save-excursion (end-of-line) (point)) t)
|
|
4178 (progn
|
|
4179 (forward-char -2)
|
|
4180 (speedbar-do-function-pointer)))))
|
|
4181
|
|
4182 (defun rmail-speedbar-move-message (text token indent)
|
|
4183 "From button TEXT, copy current message to the rmail file specified by TOKEN.
|
|
4184 TEXT and INDENT are not used."
|
|
4185 (speedbar-with-attached-buffer
|
|
4186 (message "Moving message to %s" token)
|
|
4187 (rmail-output-to-rmail-file token)))
|
|
4188
|
22838
|
4189 ; Functions for setting, getting and encoding the POP password.
|
|
4190 ; The password is encoded to prevent it from being easily accessible
|
|
4191 ; to "prying eyes." Obviously, this encoding isn't "real security,"
|
|
4192 ; nor is it meant to be.
|
|
4193
|
|
4194 ;;;###autoload
|
59561
|
4195 (defun rmail-set-remote-password (password)
|
|
4196 "Set PASSWORD to be used for retrieving mail from a POP or IMAP server."
|
22838
|
4197 (interactive "sPassword: ")
|
|
4198 (if password
|
59561
|
4199 (setq rmail-encoded-remote-password
|
22838
|
4200 (rmail-encode-string password (emacs-pid)))
|
59561
|
4201 (setq rmail-remote-password nil)
|
|
4202 (setq rmail-encoded-remote-password nil)))
|
|
4203
|
|
4204 (defun rmail-get-remote-password (imap)
|
|
4205 "Get the password for retrieving mail from a POP or IMAP server. If none
|
22838
|
4206 has been set, then prompt the user for one."
|
59561
|
4207 (when (not rmail-encoded-remote-password)
|
|
4208 (if (not rmail-remote-password)
|
|
4209 (setq rmail-remote-password
|
|
4210 (read-passwd (if imap
|
|
4211 "IMAP password: "
|
|
4212 "POP password: "))))
|
|
4213 (rmail-set-remote-password rmail-remote-password)
|
|
4214 (setq rmail-remote-password nil))
|
|
4215 (rmail-encode-string rmail-encoded-remote-password (emacs-pid)))
|
22838
|
4216
|
|
4217 (defun rmail-have-password ()
|
59561
|
4218 (or rmail-remote-password rmail-encoded-remote-password))
|
22838
|
4219
|
|
4220 (defun rmail-encode-string (string mask)
|
|
4221 "Encode STRING with integer MASK, by taking the exclusive OR of the
|
|
4222 lowest byte in the mask with the first character of string, the
|
|
4223 second-lowest-byte with the second character of the string, etc.,
|
|
4224 restarting at the lowest byte of the mask whenever it runs out.
|
|
4225 Returns the encoded string. Calling the function again with an
|
|
4226 encoded string (and the same mask) will decode the string."
|
23969
|
4227 (setq mask (abs mask)) ; doesn't work if negative
|
45144
|
4228 (let* ((string-vector (string-to-vector string)) (i 0)
|
22838
|
4229 (len (length string-vector)) (curmask mask) charmask)
|
|
4230 (while (< i len)
|
|
4231 (if (= curmask 0)
|
|
4232 (setq curmask mask))
|
|
4233 (setq charmask (% curmask 256))
|
|
4234 (setq curmask (lsh curmask -8))
|
|
4235 (aset string-vector i (logxor charmask (aref string-vector i)))
|
|
4236 (setq i (1+ i)))
|
|
4237 (concat string-vector)))
|
20757
|
4238
|
55056
c7ded215e268
(rmail-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
diff
changeset
|
4239 ;;;; Desktop support
|
c7ded215e268
(rmail-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
diff
changeset
|
4240
|
c7ded215e268
(rmail-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
diff
changeset
|
4241 (defun rmail-restore-desktop-buffer (desktop-buffer-file-name
|
c7ded215e268
(rmail-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
diff
changeset
|
4242 desktop-buffer-name
|
c7ded215e268
(rmail-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
diff
changeset
|
4243 desktop-buffer-misc)
|
c7ded215e268
(rmail-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
diff
changeset
|
4244 "Restore an rmail buffer specified in a desktop file."
|
c7ded215e268
(rmail-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
diff
changeset
|
4245 (condition-case error
|
c7ded215e268
(rmail-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
diff
changeset
|
4246 (progn
|
c7ded215e268
(rmail-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
diff
changeset
|
4247 (rmail-input desktop-buffer-file-name)
|
c7ded215e268
(rmail-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
diff
changeset
|
4248 (if (eq major-mode 'rmail-mode)
|
c7ded215e268
(rmail-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
diff
changeset
|
4249 (current-buffer)
|
c7ded215e268
(rmail-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
diff
changeset
|
4250 rmail-buffer))
|
c7ded215e268
(rmail-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
diff
changeset
|
4251 (file-locked
|
c7ded215e268
(rmail-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
diff
changeset
|
4252 (kill-buffer (current-buffer))
|
c7ded215e268
(rmail-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
diff
changeset
|
4253 nil)))
|
c7ded215e268
(rmail-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
diff
changeset
|
4254
|
64961
|
4255 (add-to-list 'desktop-buffer-mode-handlers
|
|
4256 '(rmail-mode . rmail-restore-desktop-buffer))
|
64897
|
4257
|
584
|
4258 (provide 'rmail)
|
|
4259
|
52401
|
4260 ;;; arch-tag: cff0a950-57fe-4f73-a86e-91ff75afd06c
|
658
|
4261 ;;; rmail.el ends here
|