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