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