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