(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
[emacs.git] / lisp / mail / rmail.el
blobb61fd65b698d15d09b8ea5c61ff6599f9dab48ea
1 ;;; rmail.el --- main code of "RMAIL" mail reader for Emacs.
3 ;; Copyright (C) 1985, 1986, 1987, 1988, 1993 Free Software Foundation, Inc.
5 ;; Maintainer: FSF
6 ;; Keywords: mail
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24 ;;; Code:
26 ;; Souped up by shane@mit-ajax based on ideas of rlk@athena.mit.edu
27 ;; New features include attribute and keyword support, message
28 ;; selection by dispatch table, summary by attributes and keywords,
29 ;; expunging by dispatch table, sticky options for file commands.
31 ;; Extended by Bob Weiner of Motorola
32 ;; New features include: rmail and rmail-summary buffers remain
33 ;; synchronized and key bindings basically operate the same way in both
34 ;; buffers, summary by topic or by regular expression, rmail-reply-prefix
35 ;; variable, and a bury rmail buffer (wipe) command.
38 (require 'mail-utils)
40 ;; For Emacs V18 compatibility
41 (and (not (fboundp 'buffer-disable-undo))
42 (fboundp 'buffer-flush-undo)
43 (defalias 'buffer-disable-undo 'buffer-flush-undo))
45 ; These variables now declared in paths.el.
46 ;(defvar rmail-spool-directory "/usr/spool/mail/"
47 ; "This is the name of the directory used by the system mailer for\n\
48 ;delivering new mail. It's name should end with a slash.")
49 ;(defvar rmail-file-name
50 ; (expand-file-name "~/RMAIL")
51 ; "")
53 ;;;###autoload
54 (defvar rmail-dont-reply-to-names nil "\
55 *A regexp specifying names to prune of reply to messages.
56 A value of nil means exclude your own name only.")
58 ;;;###autoload
59 (defvar rmail-default-dont-reply-to-names "info-" "\
60 A regular expression specifying part of the value of the default value of
61 the variable `rmail-dont-reply-to-names', for when the user does not set
62 `rmail-dont-reply-to-names' explicitly. (The other part of the default
63 value is the user's name.)
64 It is useful to set this variable in the site customization file.")
66 ;;;###autoload
67 (defvar rmail-ignored-headers "^via:\\|^mail-from:\\|^origin:\\|^status:\\|^received:\\|^x400-originator:\\|^x400-recipients:\\|^x400-received:\\|^x400-mts-identifier:\\|^x400-content-type:\\|^message-id:\\|^summary-line:" "\
68 *Regexp to match Header fields that rmail should normally hide.")
70 ;;;###autoload
71 (defvar rmail-highlighted-headers "^From:\\|^Subject:" "\
72 *Regexp to match Header fields that rmail should normally highlight.")
74 ;;;###autoload
75 (defvar rmail-delete-after-output nil "\
76 *Non-nil means automatically delete a message that is copied to a file.")
78 ;;;###autoload
79 (defvar rmail-primary-inbox-list nil "\
80 *List of files which are inboxes for user's primary mail file `~/RMAIL'.
81 `nil' means the default, which is (\"/usr/spool/mail/$USER\")
82 \(the name varies depending on the operating system,
83 and the value of the environment variable MAIL overrides it).")
85 ;;;###autoload
86 (defvar rmail-mail-new-frame nil
87 "*Non-nil means Rmail makes a new frame for composing outgoing mail.")
89 ;;;###autoload
90 (defvar rmail-retry-setup-hook nil
91 "Hook that `rmail-retry-failure' uses in place of `mail-setup-hook'.")
93 ;;;###autoload
94 (defvar rmail-secondary-file-directory "~/"
95 "*Directory for additional secondary Rmail files.")
96 ;;;###autoload
97 (defvar rmail-secondary-file-regexp "\\.xmail$"
98 "*Regexp for which files are secondary Rmail files.")
100 ;; These may be altered by site-init.el to match the format of mmdf files
101 ;; delimiting used on a given host (delim1 and delim2 from the config
102 ;; files).
104 (defvar mmdf-delim1 "^\001\001\001\001\n"
105 "Regexp marking the start of an mmdf message")
106 (defvar mmdf-delim2 "^\001\001\001\001\n"
107 "Regexp marking the end of an mmdf message")
109 (defvar rmail-message-filter nil
110 "If non nil, a filter function for new messages in RMAIL.
111 Called with region narrowed to the message, including headers.")
113 (defvar rmail-reply-prefix "Re: "
114 "String to prepend to Subject line when replying to a message.")
116 (defvar rmail-mode-map nil)
118 (defvar rmail-inbox-list nil)
119 (defvar rmail-keywords nil)
121 ;; Message counters and markers. Deleted flags.
123 (defvar rmail-current-message nil)
124 (defvar rmail-total-messages nil)
125 (defvar rmail-message-vector nil)
126 (defvar rmail-deleted-vector nil)
128 (defvar rmail-overlay-list nil)
130 ;; These are used by autoloaded rmail-summary.
132 (defvar rmail-summary-buffer nil)
133 (defvar rmail-summary-vector nil)
135 ;; `Sticky' default variables.
137 ;; Last individual label specified to a or k.
138 (defvar rmail-last-label nil)
139 ;; Last set of values specified to C-M-n, C-M-p, C-M-s or C-M-l.
140 (defvar rmail-last-multi-labels nil)
141 (defvar rmail-last-regexp nil)
142 (defvar rmail-default-file nil
143 "*Default file name for \\[rmail-output].")
144 (defvar rmail-default-rmail-file (expand-file-name "~/XMAIL")
145 "*Default file name for \\[rmail-output-to-rmail-file].")
147 ;;; Regexp matching the delimiter of messages in UNIX mail format
148 ;;; (UNIX From lines), minus the initial ^. Note that if you change
149 ;;; this expression, you must change the code in rmail-nuke-pinhead-header
150 ;;; that knows the exact ordering of the \\( \\) subexpressions.
151 (defvar rmail-unix-mail-delimiter
152 (let ((time-zone-regexp
153 (concat "\\([A-Z]?[A-Z][A-Z][A-Z]\\( DST\\)?"
154 "\\|[-+]?[0-9][0-9][0-9][0-9]"
155 "\\|"
156 "\\) *")))
157 (concat
158 "From "
160 ;; Username, perhaps with a quoted section that can contain spaces.
161 "\\("
162 "[^ \n]*"
163 "\\(\\|\".*\"[^ \n]*\\)"
164 "\\) ?"
166 ;; The time the message was sent.
167 "\\([^ \n]*\\) *" ; day of the week
168 "\\([^ ]*\\) *" ; month
169 "\\([0-9]*\\) *" ; day of month
170 "\\([0-9:]*\\) *" ; time of day
172 ;; Perhaps a time zone, specified by an abbreviation, or by a
173 ;; numeric offset.
174 time-zone-regexp
176 ;; The year.
177 " [0-9][0-9]\\([0-9]*\\) *"
179 ;; On some systems the time zone can appear after the year, too.
180 time-zone-regexp
182 ;; Old uucp cruft.
183 "\\(remote from .*\\)?"
185 "\n"))
186 nil)
188 ;; Perform BODY in the summary buffer
189 ;; in such a way that its cursor is properly updated in its own window.
190 (defmacro rmail-select-summary (&rest body)
191 (` (progn (if (rmail-summary-displayed)
192 (let ((window (selected-window)))
193 (save-excursion
194 (unwind-protect
195 (progn
196 (pop-to-buffer rmail-summary-buffer)
197 (,@ body))
198 (select-window window))))
199 (save-excursion
200 (set-buffer rmail-summary-buffer)
201 (progn (,@ body))))
202 (rmail-maybe-display-summary))))
204 ;;;; *** Rmail Mode ***
206 ;;;###autoload
207 (defun rmail (&optional file-name-arg)
208 "Read and edit incoming mail.
209 Moves messages into file named by `rmail-file-name' (a babyl format file)
210 and edits that file in RMAIL Mode.
211 Type \\[describe-mode] once editing that file, for a list of RMAIL commands.
213 May be called with file name as argument; then performs rmail editing on
214 that file, but does not copy any new mail into the file.
215 Interactively, if you supply a prefix argument, then you
216 have a chance to specify a file name with the minibuffer."
217 (interactive (if current-prefix-arg
218 (list (read-file-name "Run rmail on RMAIL file: "
219 nil nil t))))
220 (or rmail-default-file
221 (setq rmail-default-file (expand-file-name "~/xmail")))
222 (let* ((file-name (expand-file-name (or file-name-arg rmail-file-name)))
223 (existed (get-file-buffer file-name)))
224 ;; Like find-file, but in the case where a buffer existed
225 ;; and the file was reverted, recompute the message-data.
226 (if (and existed (not (verify-visited-file-modtime existed)))
227 (progn
228 ;; Don't be confused by apparent local-variables spec
229 ;; in the last message in the RMAIL file.
230 (let ((enable-local-variables nil))
231 (find-file file-name))
232 (if (and (verify-visited-file-modtime existed)
233 (eq major-mode 'rmail-mode))
234 (progn (rmail-forget-messages)
235 (rmail-set-message-counters))))
236 (let ((enable-local-variables nil))
237 (find-file file-name)))
238 (if (eq major-mode 'rmail-edit-mode)
239 (error "Exit Rmail Edit mode before getting new mail."))
240 (if (and existed (> (buffer-size) 0))
241 ;; Buffer not new and not empty; ensure in proper mode, but that's all.
242 (or (eq major-mode 'rmail-mode)
243 (rmail-mode-2))
244 (rmail-mode-2)
245 ;; Convert all or part to Babyl file if possible.
246 (rmail-convert-file)
247 (goto-char (point-max))
248 (if (null rmail-inbox-list)
249 (progn
250 (rmail-set-message-counters)
251 (rmail-show-message))))
252 (let ((existing-unseen (rmail-first-unseen-message)))
253 (or file-name-arg
254 (rmail-get-new-mail))
255 ;; Show the first unseen message, which might be from a previous session
256 ;; or might have been just read in by rmail-get-new-mail. Must
257 ;; determine already unseen messages first, as rmail-get-new-mail
258 ;; positions on the first new message, thus marking it as seen.
259 (rmail-show-message existing-unseen))))
261 ;; Given the value of MAILPATH, return a list of inbox file names.
262 ;; This is turned off because it is not clear that the user wants
263 ;; all these inboxes to feed into the primary rmail file.
264 ; (defun rmail-convert-mailpath (string)
265 ; (let (idx list)
266 ; (while (setq idx (string-match "[%:]" string))
267 ; (let ((this (substring string 0 idx)))
268 ; (setq string (substring string (1+ idx)))
269 ; (setq list (cons (if (string-match "%" this)
270 ; (substring this 0 (string-match "%" this))
271 ; this)
272 ; list))))
273 ; list))
275 ; I have checked that adding "-*- rmail -*-" to the BABYL OPTIONS line
276 ; will not cause emacs 18.55 problems.
278 (defun rmail-convert-file ()
279 (let (convert)
280 (widen)
281 (goto-char (point-min))
282 ;; If file doesn't start like a Babyl file,
283 ;; convert it to one, by adding a header and converting each message.
284 (cond ((looking-at "BABYL OPTIONS:"))
285 ((looking-at "Version: 5\n")
286 ;; Losing babyl file made by old version of Rmail.
287 ;; Just fix the babyl file header; don't make a new one,
288 ;; so we don't lose the Labels: file attribute, etc.
289 (let ((buffer-read-only nil))
290 (insert "BABYL OPTIONS: -*- rmail -*-\n")))
291 ((equal (point-min) (point-max))
292 ;; Empty RMAIL file. Just insert the header.
293 (rmail-insert-rmail-file-header))
295 ;; Non-empty file in non-RMAIL format. Add header and convert.
296 (setq convert t)
297 (rmail-insert-rmail-file-header)))
298 ;; If file was not a Babyl file or if there are
299 ;; Unix format messages added at the end,
300 ;; convert file as necessary.
301 (if (or convert
302 (save-excursion
303 (goto-char (point-max))
304 (search-backward "\^_")
305 (forward-char 1)
306 (looking-at "\n*From ")))
307 (let ((buffer-read-only nil))
308 (message "Converting to Babyl format...")
309 ;; If file needs conversion, convert it all,
310 ;; except for the BABYL header.
311 ;; (rmail-convert-to-babyl-format would delete the header.)
312 (goto-char (point-min))
313 (search-forward "\n\^_" nil t)
314 (narrow-to-region (point) (point-max))
315 (rmail-convert-to-babyl-format)
316 (message "Converting to Babyl format...done")))))
318 ;;; I have checked that adding "-*- rmail -*-" to the BABYL OPTIONS line
319 ;;; will not cause emacs 18.55 problems.
321 (defun rmail-insert-rmail-file-header ()
322 (let ((buffer-read-only nil))
323 (insert "BABYL OPTIONS: -*- rmail -*-
324 Version: 5
325 Labels:
326 Note: This is the header of an rmail file.
327 Note: If you are seeing it in rmail,
328 Note: it means the file has no messages in it.\n\^_")))
330 (if rmail-mode-map
332 (setq rmail-mode-map (make-keymap))
333 (suppress-keymap rmail-mode-map)
334 (define-key rmail-mode-map "a" 'rmail-add-label)
335 (define-key rmail-mode-map "b" 'rmail-bury)
336 (define-key rmail-mode-map "c" 'rmail-continue)
337 (define-key rmail-mode-map "d" 'rmail-delete-forward)
338 (define-key rmail-mode-map "\C-d" 'rmail-delete-backward)
339 (define-key rmail-mode-map "e" 'rmail-edit-current-message)
340 (define-key rmail-mode-map "f" 'rmail-forward)
341 (define-key rmail-mode-map "g" 'rmail-get-new-mail)
342 (define-key rmail-mode-map "h" 'rmail-summary)
343 (define-key rmail-mode-map "i" 'rmail-input)
344 (define-key rmail-mode-map "j" 'rmail-show-message)
345 (define-key rmail-mode-map "k" 'rmail-kill-label)
346 (define-key rmail-mode-map "l" 'rmail-summary-by-labels)
347 (define-key rmail-mode-map "\e\C-h" 'rmail-summary)
348 (define-key rmail-mode-map "\e\C-l" 'rmail-summary-by-labels)
349 (define-key rmail-mode-map "\e\C-r" 'rmail-summary-by-recipients)
350 (define-key rmail-mode-map "\e\C-s" 'rmail-summary-by-regexp)
351 (define-key rmail-mode-map "\e\C-t" 'rmail-summary-by-topic)
352 (define-key rmail-mode-map "m" 'rmail-mail)
353 (define-key rmail-mode-map "\em" 'rmail-retry-failure)
354 (define-key rmail-mode-map "n" 'rmail-next-undeleted-message)
355 (define-key rmail-mode-map "\en" 'rmail-next-message)
356 (define-key rmail-mode-map "\e\C-n" 'rmail-next-labeled-message)
357 (define-key rmail-mode-map "o" 'rmail-output-to-rmail-file)
358 (define-key rmail-mode-map "\C-o" 'rmail-output)
359 (define-key rmail-mode-map "p" 'rmail-previous-undeleted-message)
360 (define-key rmail-mode-map "\ep" 'rmail-previous-message)
361 (define-key rmail-mode-map "\e\C-p" 'rmail-previous-labeled-message)
362 (define-key rmail-mode-map "q" 'rmail-quit)
363 (define-key rmail-mode-map "r" 'rmail-reply)
364 ;; I find I can't live without the default M-r command -- rms.
365 ;; (define-key rmail-mode-map "\er" 'rmail-search-backwards)
366 (define-key rmail-mode-map "s" 'rmail-expunge-and-save)
367 (define-key rmail-mode-map "\es" 'rmail-search)
368 (define-key rmail-mode-map "t" 'rmail-toggle-header)
369 (define-key rmail-mode-map "u" 'rmail-undelete-previous-message)
370 (define-key rmail-mode-map "w" 'rmail-edit-current-message)
371 (define-key rmail-mode-map "x" 'rmail-expunge)
372 (define-key rmail-mode-map "." 'rmail-beginning-of-message)
373 (define-key rmail-mode-map "<" 'rmail-first-message)
374 (define-key rmail-mode-map ">" 'rmail-last-message)
375 (define-key rmail-mode-map " " 'scroll-up)
376 (define-key rmail-mode-map "\177" 'scroll-down)
377 (define-key rmail-mode-map "?" 'describe-mode)
378 (define-key rmail-mode-map "\C-c\C-s\C-d" 'rmail-sort-by-date)
379 (define-key rmail-mode-map "\C-c\C-s\C-s" 'rmail-sort-by-subject)
380 (define-key rmail-mode-map "\C-c\C-s\C-a" 'rmail-sort-by-author)
381 (define-key rmail-mode-map "\C-c\C-s\C-r" 'rmail-sort-by-recipient)
382 (define-key rmail-mode-map "\C-c\C-s\C-c" 'rmail-sort-by-correspondent)
383 (define-key rmail-mode-map "\C-c\C-s\C-l" 'rmail-sort-by-lines)
384 (define-key rmail-mode-map "\C-c\C-s\C-k" 'rmail-sort-by-keywords)
387 (define-key rmail-mode-map [menu-bar] (make-sparse-keymap))
389 (define-key rmail-mode-map [menu-bar classify]
390 (cons "Classify" (make-sparse-keymap "Classify")))
392 (define-key rmail-mode-map [menu-bar classify input-menu]
393 '("Input Rmail file (menu)" . rmail-input-menu))
395 (define-key rmail-mode-map [menu-bar classify output-menu]
396 '("Output (Rmail menu)" . rmail-output-menu))
398 (define-key rmail-mode-map [menu-bar classify output-inbox]
399 '("Output (inbox)" . rmail-output))
401 (define-key rmail-mode-map [menu-bar classify output]
402 '("Output (Rmail)" . rmail-output-to-rmail-file))
404 (define-key rmail-mode-map [menu-bar classify kill-label]
405 '("Kill Label" . rmail-kill-label))
407 (define-key rmail-mode-map [menu-bar classify add-label]
408 '("Add Label" . rmail-add-label))
410 (define-key rmail-mode-map [menu-bar summary]
411 (cons "Summary" (make-sparse-keymap "Summary")))
413 (define-key rmail-mode-map [menu-bar summary labels]
414 '("By Labels" . rmail-summary-by-labels))
416 (define-key rmail-mode-map [menu-bar summary recipients]
417 '("By Recipients" . rmail-summary-by-recipients))
419 (define-key rmail-mode-map [menu-bar summary topic]
420 '("By Topic" . rmail-summary-by-topic))
422 (define-key rmail-mode-map [menu-bar summary regexp]
423 '("By Regexp" . rmail-summary-by-regexp))
425 (define-key rmail-mode-map [menu-bar summary all]
426 '("All" . rmail-summary))
428 (define-key rmail-mode-map [menu-bar mail]
429 (cons "Mail" (make-sparse-keymap "Mail")))
431 (define-key rmail-mode-map [menu-bar mail continue]
432 '("Continue" . rmail-continue))
434 (define-key rmail-mode-map [menu-bar mail forward]
435 '("Forward" . rmail-forward))
437 (define-key rmail-mode-map [menu-bar mail retry]
438 '("Retry" . rmail-retry-failure))
440 (define-key rmail-mode-map [menu-bar mail reply]
441 '("Reply" . rmail-reply))
443 (define-key rmail-mode-map [menu-bar mail mail]
444 '("Mail" . rmail-mail))
446 (define-key rmail-mode-map [menu-bar delete]
447 (cons "Delete" (make-sparse-keymap "Delete")))
449 (define-key rmail-mode-map [menu-bar delete expunge/save]
450 '("Expunge/Save" . rmail-expunge-and-save))
452 (define-key rmail-mode-map [menu-bar delete expunge]
453 '("Expunge" . rmail-expunge))
455 (define-key rmail-mode-map [menu-bar delete undelete]
456 '("Undelete" . rmail-undelete-previous-message))
458 (define-key rmail-mode-map [menu-bar delete delete]
459 '("Delete" . rmail-delete-forward))
461 (define-key rmail-mode-map [menu-bar move]
462 (cons "Move" (make-sparse-keymap "Move")))
464 (define-key rmail-mode-map [menu-bar move search-back]
465 '("Search Back" . rmail-search-backward))
467 (define-key rmail-mode-map [menu-bar move search]
468 '("Search" . rmail-search))
470 (define-key rmail-mode-map [menu-bar move previous]
471 '("Previous Nondeleted" . rmail-previous-undeleted-message))
473 (define-key rmail-mode-map [menu-bar move next]
474 '("Next Nondeleted" . rmail-next-undeleted-message))
476 (define-key rmail-mode-map [menu-bar move last]
477 '("Last" . rmail-last-message))
479 (define-key rmail-mode-map [menu-bar move first]
480 '("First" . rmail-first-message))
482 (define-key rmail-mode-map [menu-bar move previous]
483 '("Previous" . rmail-previous-message))
485 (define-key rmail-mode-map [menu-bar move next]
486 '("Next" . rmail-next-message))
488 ;; Rmail mode is suitable only for specially formatted data.
489 (put 'rmail-mode 'mode-class 'special)
491 ;;;###autoload
492 (defun rmail-mode ()
493 "Rmail Mode is used by \\<rmail-mode-map>\\[rmail] for editing Rmail files.
494 All normal editing commands are turned off.
495 Instead, these commands are available:
497 \\[rmail-beginning-of-message] Move point to front of this message (same as \\[beginning-of-buffer]).
498 \\[scroll-up] Scroll to next screen of this message.
499 \\[scroll-down] Scroll to previous screen of this message.
500 \\[rmail-next-undeleted-message] Move to Next non-deleted message.
501 \\[rmail-previous-undeleted-message] Move to Previous non-deleted message.
502 \\[rmail-next-message] Move to Next message whether deleted or not.
503 \\[rmail-previous-message] Move to Previous message whether deleted or not.
504 \\[rmail-first-message] Move to the first message in Rmail file.
505 \\[rmail-last-message] Move to the last message in Rmail file.
506 \\[rmail-show-message] Jump to message specified by numeric position in file.
507 \\[rmail-search] Search for string and show message it is found in.
508 \\[rmail-delete-forward] Delete this message, move to next nondeleted.
509 \\[rmail-delete-backward] Delete this message, move to previous nondeleted.
510 \\[rmail-undelete-previous-message] Undelete message. Tries current message, then earlier messages
511 till a deleted message is found.
512 \\[rmail-edit-current-message] Edit the current message. \\[rmail-cease-edit] to return to Rmail.
513 \\[rmail-expunge] Expunge deleted messages.
514 \\[rmail-expunge-and-save] Expunge and save the file.
515 \\[rmail-quit] Quit Rmail: expunge, save, then switch to another buffer.
516 \\[save-buffer] Save without expunging.
517 \\[rmail-get-new-mail] Move new mail from system spool directory into this file.
518 \\[rmail-mail] Mail a message (same as \\[mail-other-window]).
519 \\[rmail-continue] Continue composing outgoing message started before.
520 \\[rmail-reply] Reply to this message. Like \\[rmail-mail] but initializes some fields.
521 \\[rmail-retry-failure] Send this message again. Used on a mailer failure message.
522 \\[rmail-forward] Forward this message to another user.
523 \\[rmail-output-to-rmail-file] Output this message to an Rmail file (append it).
524 \\[rmail-output] Output this message to a Unix-format mail file (append it).
525 \\[rmail-input] Input Rmail file. Run Rmail on that file.
526 \\[rmail-add-label] Add label to message. It will be displayed in the mode line.
527 \\[rmail-kill-label] Kill label. Remove a label from current message.
528 \\[rmail-next-labeled-message] Move to Next message with specified label
529 (label defaults to last one specified).
530 Standard labels: filed, unseen, answered, forwarded, deleted.
531 Any other label is present only if you add it with \\[rmail-add-label].
532 \\[rmail-previous-labeled-message] Move to Previous message with specified label
533 \\[rmail-summary] Show headers buffer, with a one line summary of each message.
534 \\[rmail-summary-by-labels] Summarize only messages with particular label(s).
535 \\[rmail-summary-by-recipients] Summarize only messages with particular recipient(s).
536 \\[rmail-summary-by-regexp] Summarize only messages with particular regexp(s).
537 \\[rmail-summary-by-topic] Summarize only messages with subject line regexp(s).
538 \\[rmail-toggle-header] Toggle display of complete header."
539 (interactive)
540 (rmail-mode-2)
541 (rmail-set-message-counters)
542 (rmail-show-message rmail-total-messages))
544 (defun rmail-mode-2 ()
545 (kill-all-local-variables)
546 (rmail-mode-1)
547 (rmail-variables)
548 (run-hooks 'rmail-mode-hook))
550 (defun rmail-mode-1 ()
551 (setq major-mode 'rmail-mode)
552 (setq mode-name "RMAIL")
553 (setq buffer-read-only t)
554 ;; No need to auto save RMAIL files in normal circumstances
555 ;; because they contain no info except attribute changes
556 ;; and deletion of messages.
557 ;; The one exception is when messages are copied into an Rmail mode buffer.
558 ;; rmail-output-to-rmail-file enables auto save when you do that.
559 (setq buffer-auto-save-file-name nil)
560 (if (boundp 'mode-line-modified)
561 (setq mode-line-modified "--- ")
562 (setq mode-line-format
563 (cons "--- " (cdr (default-value 'mode-line-format)))))
564 (use-local-map rmail-mode-map)
565 (set-syntax-table text-mode-syntax-table)
566 (setq local-abbrev-table text-mode-abbrev-table))
568 (defun rmail-variables ()
569 (make-local-variable 'revert-buffer-function)
570 (setq revert-buffer-function 'rmail-revert)
571 (make-local-variable 'rmail-last-label)
572 (make-local-variable 'rmail-last-regexp)
573 (make-local-variable 'rmail-deleted-vector)
574 (make-local-variable 'rmail-summary-buffer)
575 (make-local-variable 'rmail-summary-vector)
576 (make-local-variable 'rmail-current-message)
577 (make-local-variable 'rmail-total-messages)
578 (make-local-variable 'require-final-newline)
579 (setq require-final-newline nil)
580 (make-local-variable 'rmail-overlay-list)
581 (setq rmail-overlay-list nil)
582 (make-local-variable 'version-control)
583 (setq version-control 'never)
584 (make-local-variable 'file-precious-flag)
585 (setq file-precious-flag t)
586 (make-local-variable 'rmail-message-vector)
587 (make-local-variable 'rmail-last-file)
588 (make-local-variable 'rmail-inbox-list)
589 (setq rmail-inbox-list (rmail-parse-file-inboxes))
590 ;; Provide default set of inboxes for primary mail file ~/RMAIL.
591 (and (null rmail-inbox-list)
592 (or (equal buffer-file-name (expand-file-name rmail-file-name))
593 (equal buffer-file-truename
594 (abbreviate-file-name (file-truename rmail-file-name))))
595 (setq rmail-inbox-list
596 (or rmail-primary-inbox-list
597 (list (or (getenv "MAIL")
598 (concat rmail-spool-directory
599 (user-login-name)))))))
600 (make-local-variable 'rmail-keywords)
601 ;; this gets generated as needed
602 (setq rmail-keywords nil)
603 ;; Make everything permanent, in case the user switches major modes
604 ;; during an edit.
605 (put 'revert-buffer-function 'permanent-local t)
606 (put 'rmail-last-label 'permanent-local t)
607 (put 'rmail-last-regexp 'permanent-local t)
608 (put 'rmail-deleted-vector 'permanent-local t)
609 (put 'rmail-summary-buffer 'permanent-local t)
610 (put 'rmail-summary-vector 'permanent-local t)
611 (put 'rmail-current-message 'permanent-local t)
612 (put 'rmail-total-messages 'permanent-local t)
613 (put 'require-final-newline 'permanent-local t)
614 (put 'version-control 'permanent-local t)
615 (put 'file-precious-flag 'permanent-local t)
616 (put 'rmail-message-vector 'permanent-local t)
617 (put 'rmail-last-file 'permanent-local t)
618 (put 'rmail-inbox-list 'permanent-local t)
619 (put 'rmail-keywords 'permanent-local t))
621 ;; Handle M-x revert-buffer done in an rmail-mode buffer.
622 (defun rmail-revert (arg noconfirm)
623 (let (revert-buffer-function)
624 ;; Call our caller again, but this time it does the default thing.
625 (if (revert-buffer arg noconfirm)
626 ;; If the user said "yes", and we changed something,
627 ;; reparse the messages.
628 (progn
629 (rmail-convert-file)
630 (goto-char (point-max))
631 (rmail-set-message-counters)
632 (rmail-show-message)))))
634 ;; Return a list of files from this buffer's Mail: option.
635 ;; Does not assume that messages have been parsed.
636 ;; Just returns nil if buffer does not look like Babyl format.
637 (defun rmail-parse-file-inboxes ()
638 (save-excursion
639 (save-restriction
640 (widen)
641 (goto-char 1)
642 (cond ((looking-at "BABYL OPTIONS:")
643 (search-forward "\n\^_" nil 'move)
644 (narrow-to-region 1 (point))
645 (goto-char 1)
646 (if (search-forward "\nMail:" nil t)
647 (progn
648 (narrow-to-region (point) (progn (end-of-line) (point)))
649 (goto-char (point-min))
650 (mail-parse-comma-list))))))))
652 (defun rmail-expunge-and-save ()
653 "Expunge and save RMAIL file."
654 (interactive)
655 (rmail-expunge)
656 (save-buffer)
657 (if (rmail-summary-exists)
658 (rmail-select-summary (set-buffer-modified-p nil))))
660 (defun rmail-quit ()
661 "Quit out of RMAIL."
662 (interactive)
663 (rmail-expunge-and-save)
664 ;; Don't switch to the summary buffer even if it was recently visible.
665 (if rmail-summary-buffer
666 (progn
667 (replace-buffer-in-windows rmail-summary-buffer)
668 (bury-buffer rmail-summary-buffer)))
669 (let ((obuf (current-buffer)))
670 (replace-buffer-in-windows obuf)
671 (bury-buffer obuf)))
673 ;;;###autoload
674 (defun rmail-input (filename)
675 "Run Rmail on file FILENAME."
676 (interactive "FRun rmail on RMAIL file: ")
677 (rmail filename))
679 ;; Choose a .xmail file in dir rmail-secondary-file-directory.
680 (defun rmail-secondary-file-menu (event)
681 (let* ((files (directory-files rmail-secondary-file-directory nil
682 rmail-secondary-file-regexp))
683 (menu (list "Rmail Files"
684 (cons "Rmail Files"
685 (mapcar (function (lambda (f) (cons f f)))
686 files))))
687 (chosen (x-popup-menu event menu)))
688 (if chosen
689 (expand-file-name chosen rmail-secondary-file-directory))))
691 (defun rmail-input-menu (event)
692 "Choose a new Rmail file to edit, with a menu."
693 (interactive "e")
694 (rmail-input (expand-file-name (rmail-secondary-file-menu event)
695 rmail-secondary-file-directory)))
697 ;;;; *** Rmail input ***
699 ;; RLK feature not added in this version:
700 ;; argument specifies inbox file or files in various ways.
702 (defun rmail-get-new-mail (&optional file-name)
703 "Move any new mail from this RMAIL file's inbox files.
704 The inbox files can be specified with the file's Mail: option. The
705 variable `rmail-primary-inbox-list' specifies the inboxes for your
706 primary RMAIL file if it has no Mail: option. By default, this is
707 your /usr/spool/mail/$USER.
709 You can also specify the file to get new mail from. In this case, the
710 file of new mail is not changed or deleted. Noninteractively, you can
711 pass the inbox file name as an argument. Interactively, a prefix
712 argument causes us to read a file name and use that file as the inbox."
713 (interactive
714 (list (if current-prefix-arg
715 (read-file-name "Get new mail from file: "))))
716 (or (verify-visited-file-modtime (current-buffer))
717 (progn
718 (find-file (buffer-file-name))
719 (setq buffer-read-only t)
720 (if (verify-visited-file-modtime (current-buffer))
721 (rmail-forget-messages))))
722 (rmail-maybe-set-message-counters)
723 (widen)
724 ;; Get rid of all undo records for this buffer.
725 (or (eq buffer-undo-list t)
726 (setq buffer-undo-list nil))
727 (unwind-protect
728 (let ((opoint (point))
729 (new-messages 0)
730 (delete-files ())
731 ;; If buffer has not changed yet, and has not been saved yet,
732 ;; don't replace the old backup file now.
733 (make-backup-files (and make-backup-files (buffer-modified-p)))
734 (buffer-read-only nil)
735 ;; Don't make undo records for what we do in getting mail.
736 (buffer-undo-list t))
737 (goto-char (point-max))
738 (skip-chars-backward " \t\n") ; just in case of brain damage
739 (delete-region (point) (point-max)) ; caused by require-final-newline
740 (save-excursion
741 (save-restriction
742 (narrow-to-region (point) (point))
743 ;; Read in the contents of the inbox files,
744 ;; renaming them as necessary,
745 ;; and adding to the list of files to delete eventually.
746 (if file-name
747 (rmail-insert-inbox-text (list file-name) nil)
748 (setq delete-files (rmail-insert-inbox-text rmail-inbox-list t)))
749 ;; Scan the new text and convert each message to babyl format.
750 (goto-char (point-min))
751 (save-excursion
752 (setq new-messages (rmail-convert-to-babyl-format)))
753 (or (zerop new-messages)
754 (let (success)
755 (widen)
756 (search-backward "\n\^_" nil t)
757 (narrow-to-region (point) (point-max))
758 (goto-char (1+ (point-min)))
759 (rmail-count-new-messages)
760 (save-buffer)))
761 ;; Delete the old files, now that babyl file is saved.
762 (while delete-files
763 (condition-case ()
764 ;; First, try deleting.
765 (condition-case ()
766 (delete-file (car delete-files))
767 (file-error
768 ;; If we can't delete it, truncate it.
769 (write-region (point) (point) (car delete-files))))
770 (file-error nil))
771 (setq delete-files (cdr delete-files)))))
772 (if (= new-messages 0)
773 (progn (goto-char opoint)
774 (if (or file-name rmail-inbox-list)
775 (message "(No new mail has arrived)")))
776 (if (rmail-summary-exists)
777 (rmail-select-summary
778 (rmail-update-summary)))
779 (message "%d new message%s read"
780 new-messages (if (= 1 new-messages) "" "s"))
781 (and (boundp 'display-time-string)
782 (stringp display-time-string)
783 (string-match " Mail" display-time-string)
784 (setq display-time-string
785 (concat
786 (substring display-time-string 0 (match-beginning 0))
787 (substring display-time-string (match-end 0))))
788 (force-mode-line-update 'all))))
789 ;; Don't leave the buffer screwed up if we get a disk-full error.
790 (rmail-show-message)))
792 (defun rmail-insert-inbox-text (files renamep)
793 (let (file tofile delete-files movemail popmail)
794 (while files
795 (setq file (file-truename
796 (expand-file-name (substitute-in-file-name (car files))))
797 ;;>> un*x specific <<
798 ;; The "+" used to be "~", which is an extremely poor choice;
799 ;; it might accidentally be deleted when space is low
800 ;; (as happened to me!).
801 tofile (concat file "+"))
802 ;; If getting from mail spool directory,
803 ;; use movemail to move rather than just renaming,
804 ;; so as to interlock with the mailer.
805 (setq movemail (string= (file-name-directory file)
806 (file-truename rmail-spool-directory))
807 popmail (string-match "^po:" (file-name-nondirectory file)))
808 (if popmail (setq file (file-name-nondirectory file)
809 renamep t))
810 (if movemail
811 (progn
812 (setq tofile (expand-file-name
813 ;; Generate name to move to from inbox name,
814 ;; in case of multiple inboxes that need moving.
815 (concat ".newmail-" (file-name-nondirectory file))
816 ;; Use the directory of this rmail file
817 ;; because it's a nuisance to use the homedir
818 ;; if that is on a full disk and this rmail
819 ;; file isn't.
820 (file-name-directory
821 (expand-file-name buffer-file-name))))
822 ;; On some systems, /usr/spool/mail/foo is a directory
823 ;; and the actual inbox is /usr/spool/mail/foo/foo.
824 (if (file-directory-p file)
825 (setq file (expand-file-name (user-login-name)
826 file)))))
827 (if popmail
828 (message "Getting mail from post office ...")
829 (if (or (and (file-exists-p tofile)
830 (/= 0 (nth 7 (file-attributes tofile))))
831 (and (file-exists-p file)
832 (/= 0 (nth 7 (file-attributes file)))))
833 (message "Getting mail from %s..." file)))
834 ;; Set TOFILE if have not already done so, and
835 ;; rename or copy the file FILE to TOFILE if and as appropriate.
836 (cond ((not renamep)
837 (setq tofile file))
838 ((or (file-exists-p tofile) (and (not popmail)
839 (not (file-exists-p file))))
840 nil)
841 ((and (not movemail) (not popmail))
842 ;; Try copying. If that fails (perhaps no space),
843 ;; rename instead.
844 (condition-case nil
845 (copy-file file tofile nil)
846 (error
847 ;; Third arg is t so we can replace existing file TOFILE.
848 (rename-file file tofile t)))
849 ;; Make the real inbox file empty.
850 ;; Leaving it deleted could cause lossage
851 ;; because mailers often won't create the file.
852 (condition-case ()
853 (write-region (point) (point) file)
854 (file-error nil)))
856 (let ((errors nil))
857 (unwind-protect
858 (save-excursion
859 (setq errors (generate-new-buffer " *rmail loss*"))
860 (buffer-disable-undo errors)
861 (call-process
862 (expand-file-name "movemail" exec-directory)
863 nil errors nil file tofile)
864 (if (not (buffer-modified-p errors))
865 ;; No output => movemail won
867 (set-buffer errors)
868 (subst-char-in-region (point-min) (point-max)
869 ?\n ?\ )
870 (goto-char (point-max))
871 (skip-chars-backward " \t")
872 (delete-region (point) (point-max))
873 (goto-char (point-min))
874 (if (looking-at "movemail: ")
875 (delete-region (point-min) (match-end 0)))
876 (beep t)
877 (message (concat "movemail: "
878 (buffer-substring (point-min)
879 (point-max))))
880 (sit-for 3)
881 nil))
882 (if errors (kill-buffer errors))))))
883 ;; At this point, TOFILE contains the name to read:
884 ;; Either the alternate name (if we renamed)
885 ;; or the actual inbox (if not renaming).
886 (if (file-exists-p tofile)
887 (let (size)
888 (goto-char (point-max))
889 (setq size (nth 1 (insert-file-contents tofile)))
890 (goto-char (point-max))
891 (or (= (preceding-char) ?\n)
892 (zerop size)
893 (insert ?\n))
894 (setq delete-files (cons tofile delete-files))))
895 (message "")
896 (setq files (cdr files)))
897 delete-files))
899 ;; the rmail-break-forwarded-messages feature is not implemented
900 (defun rmail-convert-to-babyl-format ()
901 (let ((count 0) start
902 (case-fold-search nil)
903 (invalid-input-resync
904 (function (lambda ()
905 (message "Invalid Babyl format in inbox!")
906 (sit-for 1)
907 ;; Try to get back in sync with a real message.
908 (if (re-search-forward
909 (concat mmdf-delim1 "\\|^From") nil t)
910 (beginning-of-line)
911 (goto-char (point-max)))))))
912 (goto-char (point-min))
913 (save-restriction
914 (while (not (eobp))
915 (cond ((looking-at "BABYL OPTIONS:");Babyl header
916 (if (search-forward "\n\^_" nil t)
917 ;; If we find the proper terminator, delete through there.
918 (delete-region (point-min) (point))
919 (funcall invalid-input-resync)
920 (delete-region (point-min) (point))))
921 ;; Babyl format message
922 ((looking-at "\^L")
923 (or (search-forward "\n\^_" nil t)
924 (funcall invalid-input-resync))
925 (setq count (1+ count))
926 ;; Make sure there is no extra white space after the ^_
927 ;; at the end of the message.
928 ;; Narrowing will make sure that whatever follows the junk
929 ;; will be treated properly.
930 (delete-region (point)
931 (save-excursion
932 (skip-chars-forward " \t\n")
933 (point)))
934 (narrow-to-region (point) (point-max)))
935 ;;*** MMDF format
936 ((let ((case-fold-search t))
937 (looking-at mmdf-delim1))
938 (let ((case-fold-search t))
939 (replace-match "\^L\n0, unseen,,\n*** EOOH ***\n")
940 (setq start (point))
941 (re-search-forward mmdf-delim2 nil t)
942 (replace-match "\^_"))
943 (save-excursion
944 (save-restriction
945 (narrow-to-region start (1- (point)))
946 (goto-char (point-min))
947 (while (search-forward "\n\^_" nil t); single char "\^_"
948 (replace-match "\n^_")))); 2 chars: "^" and "_"
949 (narrow-to-region (point) (point-max))
950 (setq count (1+ count)))
951 ;;*** Mail format
952 ((looking-at "^From ")
953 (setq start (point))
954 (insert "\^L\n0, unseen,,\n*** EOOH ***\n")
955 (rmail-nuke-pinhead-header)
956 ;; If this message has a Content-Length field,
957 ;; skip to the end of the contents.
958 (let* ((header-end (save-excursion
959 (and (re-search-forward "\n\n" nil t)
960 (1- (point)))))
961 (case-fold-search t)
962 (size
963 ;; Get the numeric value from the Content-Length field.
964 (save-excursion
965 ;; Back up to end of prev line,
966 ;; in case the Content-Length field comes first.
967 (forward-char -1)
968 (and (search-forward "\ncontent-length: "
969 header-end t)
970 (let ((beg (point))
971 (eol (progn (end-of-line) (point))))
972 (string-to-int (buffer-substring beg eol)))))))
973 (and size
974 (if (and (natnump size)
975 (<= (+ header-end size) (point-max))
976 ;; Make sure this would put us at a position
977 ;; that we could continue from.
978 (save-excursion
979 (goto-char (+ header-end size))
980 (skip-chars-forward "\n")
981 (or (eobp)
982 (and (looking-at "BABYL OPTIONS:")
983 (search-forward "\n\^_" nil t))
984 (and (looking-at "\^L")
985 (search-forward "\n\^_" nil t))
986 (let ((case-fold-search t))
987 (looking-at mmdf-delim1))
988 (looking-at "From "))))
989 (goto-char (+ header-end size))
990 (message "Ignoring invalid Content-Length field")
991 (sit-for 1 0 t))))
993 (if (re-search-forward
994 (concat "^[\^_]?\\("
995 rmail-unix-mail-delimiter
996 "\\|"
997 mmdf-delim1 "\\|"
998 "^BABYL OPTIONS:\\|"
999 "\^L\n[01],\\)") nil t)
1000 (goto-char (match-beginning 1))
1001 (goto-char (point-max)))
1002 (setq count (1+ count))
1003 (save-excursion
1004 (save-restriction
1005 (narrow-to-region start (point))
1006 (goto-char (point-min))
1007 (while (search-forward "\n\^_" nil t); single char
1008 (replace-match "\n^_")))); 2 chars: "^" and "_"
1009 (insert ?\^_)
1010 (narrow-to-region (point) (point-max)))
1012 ;; This kludge is because some versions of sendmail.el
1013 ;; insert an extra newline at the beginning that shouldn't
1014 ;; be there. sendmail.el has been fixed, but old versions
1015 ;; may still be in use. -- rms, 7 May 1993.
1016 ((eolp) (delete-char 1))
1017 (t (error "Cannot convert to babyl format")))))
1018 count))
1020 ;; Delete the "From ..." line, creating various other headers with
1021 ;; information from it if they don't already exist. Now puts the
1022 ;; original line into a mail-from: header line for debugging and for
1023 ;; use by the rmail-output function.
1024 (defun rmail-nuke-pinhead-header ()
1025 (save-excursion
1026 (save-restriction
1027 (let ((start (point))
1028 (end (progn
1029 (condition-case ()
1030 (search-forward "\n\n")
1031 (error
1032 (goto-char (point-max))
1033 (insert "\n\n")))
1034 (point)))
1035 has-from has-date)
1036 (narrow-to-region start end)
1037 (let ((case-fold-search t))
1038 (goto-char start)
1039 (setq has-from (search-forward "\nFrom:" nil t))
1040 (goto-char start)
1041 (setq has-date (and (search-forward "\nDate:" nil t) (point)))
1042 (goto-char start))
1043 (let ((case-fold-search nil))
1044 (if (re-search-forward (concat "^" rmail-unix-mail-delimiter) nil t)
1045 (replace-match
1046 (concat
1047 "Mail-from: \\&"
1048 ;; Keep and reformat the date if we don't
1049 ;; have a Date: field.
1050 (if has-date
1052 (concat
1053 "Date: \\3, \\5 \\4 \\9 \\6 "
1055 ;; The timezone could be matched by group 7 or group 10.
1056 ;; If neither of them matched, assume EST, since only
1057 ;; Easterners would be so sloppy.
1058 ;; It's a shame the substitution can't use "\\10".
1059 (cond
1060 ((/= (match-beginning 7) (match-end 7)) "\\7")
1061 ((/= (match-beginning 10) (match-end 10))
1062 (buffer-substring (match-beginning 10)
1063 (match-end 10)))
1064 (t "EST"))
1065 "\n"))
1066 ;; Keep and reformat the sender if we don't
1067 ;; have a From: field.
1068 (if has-from
1070 "From: \\1\n"))
1071 t)))))))
1073 ;;;; *** Rmail Message Formatting and Header Manipulation ***
1075 (defun rmail-reformat-message (beg end)
1076 (goto-char beg)
1077 (forward-line 1)
1078 (if (/= (following-char) ?0)
1079 (error "Bad format in RMAIL file."))
1080 (let ((buffer-read-only nil)
1081 (delta (- (buffer-size) end)))
1082 (delete-char 1)
1083 (insert ?1)
1084 (forward-line 1)
1085 (let ((case-fold-search t))
1086 (while (looking-at "Summary-line:\\|Mail-From:")
1087 (forward-line 1)))
1088 (if (looking-at "\\*\\*\\* EOOH \\*\\*\\*\n")
1089 (delete-region (point)
1090 (progn (forward-line 1) (point))))
1091 (let ((str (buffer-substring (point)
1092 (save-excursion (search-forward "\n\n" end 'move)
1093 (point)))))
1094 (insert str "*** EOOH ***\n")
1095 (narrow-to-region (point) (- (buffer-size) delta)))
1096 (goto-char (point-min))
1097 (if rmail-ignored-headers (rmail-clear-headers))
1098 (if rmail-message-filter (funcall rmail-message-filter))))
1100 (defun rmail-clear-headers ()
1101 (if (search-forward "\n\n" nil t)
1102 (save-restriction
1103 (narrow-to-region (point-min) (point))
1104 (let ((buffer-read-only nil))
1105 (while (let ((case-fold-search t))
1106 (goto-char (point-min))
1107 (re-search-forward rmail-ignored-headers nil t))
1108 (beginning-of-line)
1109 (delete-region (point)
1110 (progn (re-search-forward "\n[^ \t]")
1111 (forward-char -1)
1112 (point))))))))
1114 (defun rmail-toggle-header ()
1115 "Show original message header if pruned header currently shown, or vice versa."
1116 (interactive)
1117 (rmail-maybe-set-message-counters)
1118 (narrow-to-region (rmail-msgbeg rmail-current-message) (point-max))
1119 (let ((buffer-read-only nil))
1120 (goto-char (point-min))
1121 (forward-line 1)
1122 (if (= (following-char) ?1)
1123 (progn (delete-char 1)
1124 (insert ?0)
1125 (forward-line 1)
1126 (let ((case-fold-search t))
1127 (while (looking-at "Summary-Line:\\|Mail-From:")
1128 (forward-line 1)))
1129 (insert "*** EOOH ***\n")
1130 (forward-char -1)
1131 (search-forward "\n*** EOOH ***\n")
1132 (forward-line -1)
1133 (let ((temp (point)))
1134 (and (search-forward "\n\n" nil t)
1135 (delete-region temp (point))))
1136 (goto-char (point-min))
1137 (search-forward "\n*** EOOH ***\n")
1138 (narrow-to-region (point) (point-max)))
1139 (rmail-reformat-message (point-min) (point-max)))))
1141 ;;;; *** Rmail Attributes and Keywords ***
1143 ;; Make a string describing current message's attributes and keywords
1144 ;; and set it up as the name of a minor mode
1145 ;; so it will appear in the mode line.
1146 (defun rmail-display-labels ()
1147 (let ((blurb "") (beg (point-min-marker)) (end (point-max-marker)))
1148 (save-excursion
1149 (unwind-protect
1150 (progn
1151 (widen)
1152 (goto-char (rmail-msgbeg rmail-current-message))
1153 (forward-line 1)
1154 (if (looking-at "[01],")
1155 (progn
1156 (narrow-to-region (point) (progn (end-of-line) (point)))
1157 ;; Truly valid BABYL format requires a space before each
1158 ;; attribute or keyword name. Put them in if missing.
1159 (let (buffer-read-only)
1160 (goto-char (point-min))
1161 (while (search-forward "," nil t)
1162 (or (looking-at "[ ,]") (eobp)
1163 (insert " "))))
1164 (goto-char (point-max))
1165 (if (search-backward ",," nil 'move)
1166 (progn
1167 (if (> (point) (1+ (point-min)))
1168 (setq blurb (buffer-substring (+ 1 (point-min)) (point))))
1169 (if (> (- (point-max) (point)) 2)
1170 (setq blurb
1171 (concat blurb
1173 (buffer-substring (+ (point) 3)
1174 (1- (point-max)))))))))))
1175 ;; Note: we don't use save-restriction because that does not work right
1176 ;; if changes are made outside the saved restriction
1177 ;; before that restriction is restored.
1178 (narrow-to-region beg end)
1179 (set-marker beg nil)
1180 (set-marker end nil)))
1181 (while (string-match " +," blurb)
1182 (setq blurb (concat (substring blurb 0 (match-beginning 0)) ","
1183 (substring blurb (match-end 0)))))
1184 (while (string-match ", +" blurb)
1185 (setq blurb (concat (substring blurb 0 (match-beginning 0)) ","
1186 (substring blurb (match-end 0)))))
1187 (setq mode-line-process
1188 (concat " " rmail-current-message "/" rmail-total-messages
1189 blurb))))
1191 ;; Turn an attribute of a message on or off according to STATE.
1192 ;; ATTR is the name of the attribute, as a string.
1193 ;; MSGNUM is message number to change; nil means current message.
1194 (defun rmail-set-attribute (attr state &optional msgnum)
1195 (let ((omax (point-max-marker))
1196 (omin (point-min-marker))
1197 (buffer-read-only nil))
1198 (or msgnum (setq msgnum rmail-current-message))
1199 (if (> msgnum 0)
1200 (unwind-protect
1201 (save-excursion
1202 (widen)
1203 (goto-char (+ 3 (rmail-msgbeg msgnum)))
1204 (let ((curstate
1205 (not
1206 (null (search-backward (concat ", " attr ",")
1207 (prog1 (point) (end-of-line)) t)))))
1208 (or (eq curstate (not (not state)))
1209 (if curstate
1210 (delete-region (point) (1- (match-end 0)))
1211 (beginning-of-line)
1212 (forward-char 2)
1213 (insert " " attr ","))))
1214 (if (string= attr "deleted")
1215 (rmail-set-message-deleted-p msgnum state)))
1216 ;; Note: we don't use save-restriction because that does not work right
1217 ;; if changes are made outside the saved restriction
1218 ;; before that restriction is restored.
1219 (narrow-to-region omin omax)
1220 (set-marker omin nil)
1221 (set-marker omax nil)
1222 (if (= msgnum rmail-current-message)
1223 (rmail-display-labels))))))
1225 ;; Return t if the attributes/keywords line of msg number MSG
1226 ;; contains a match for the regexp LABELS.
1227 (defun rmail-message-labels-p (msg labels)
1228 (save-excursion
1229 (save-restriction
1230 (widen)
1231 (goto-char (rmail-msgbeg msg))
1232 (forward-char 3)
1233 (re-search-backward labels (prog1 (point) (end-of-line)) t))))
1235 ;;;; *** Rmail Message Selection And Support ***
1237 (defun rmail-msgend (n)
1238 (marker-position (aref rmail-message-vector (1+ n))))
1240 (defun rmail-msgbeg (n)
1241 (marker-position (aref rmail-message-vector n)))
1243 (defun rmail-widen-to-current-msgbeg (function)
1244 "Call FUNCTION with point at start of internal data of current message.
1245 Assumes that bounds were previously narrowed to display the message in Rmail.
1246 The bounds are widened enough to move point where desired, then narrowed
1247 again afterward.
1249 FUNCTION may not change the visible text of the message, but it may
1250 change the invisible header text."
1251 (save-excursion
1252 (let ((obeg (- (point-max) (point-min))))
1253 (unwind-protect
1254 (progn
1255 (narrow-to-region (rmail-msgbeg rmail-current-message)
1256 (point-max))
1257 (goto-char (point-min))
1258 (funcall function))
1259 ;; Note: we don't use save-restriction because that does not work right
1260 ;; if changes are made outside the saved restriction
1261 ;; before that restriction is restored.
1262 ;; Here we assume that changes made by FUNCTION
1263 ;; occur before the visible region of the message.
1264 (narrow-to-region (- (point-max) obeg) (point-max))))))
1266 (defun rmail-forget-messages ()
1267 (unwind-protect
1268 (if (vectorp rmail-message-vector)
1269 (let* ((i 0)
1270 (v rmail-message-vector)
1271 (n (length v)))
1272 (while (< i n)
1273 (move-marker (aref v i) nil)
1274 (setq i (1+ i)))))
1275 (setq rmail-message-vector nil)
1276 (setq rmail-deleted-vector nil)))
1278 (defun rmail-maybe-set-message-counters ()
1279 (if (not (and rmail-deleted-vector
1280 rmail-message-vector
1281 rmail-current-message
1282 rmail-total-messages))
1283 (rmail-set-message-counters)))
1285 (defun rmail-count-new-messages (&optional nomsg)
1286 (let* ((case-fold-search nil)
1287 (total-messages 0)
1288 (messages-head nil)
1289 (deleted-head nil))
1290 (or nomsg (message "Counting new messages..."))
1291 (goto-char (point-max))
1292 ;; Put at the end of messages-head
1293 ;; the entry for message N+1, which marks
1294 ;; the end of message N. (N = number of messages).
1295 (search-backward "\n\^_")
1296 (forward-char 1)
1297 (setq messages-head (list (point-marker)))
1298 (rmail-set-message-counters-counter (point-min))
1299 (setq rmail-current-message (1+ rmail-total-messages))
1300 (setq rmail-total-messages
1301 (+ rmail-total-messages total-messages))
1302 (setq rmail-message-vector
1303 (vconcat rmail-message-vector (cdr messages-head)))
1304 (aset rmail-message-vector
1305 rmail-current-message (car messages-head))
1306 (setq rmail-deleted-vector
1307 (concat rmail-deleted-vector deleted-head))
1308 (setq rmail-summary-vector
1309 (vconcat rmail-summary-vector (make-vector total-messages nil)))
1310 (goto-char (point-min))
1311 (or nomsg (message "Counting new messages...done (%d)" total-messages))))
1313 (defun rmail-set-message-counters ()
1314 (rmail-forget-messages)
1315 (save-excursion
1316 (save-restriction
1317 (widen)
1318 (let* ((point-save (point))
1319 (total-messages 0)
1320 (messages-after-point)
1321 (case-fold-search nil)
1322 (messages-head nil)
1323 (deleted-head nil))
1324 (message "Counting messages...")
1325 (goto-char (point-max))
1326 ;; Put at the end of messages-head
1327 ;; the entry for message N+1, which marks
1328 ;; the end of message N. (N = number of messages).
1329 (search-backward "\n\^_" nil t)
1330 (if (/= (point) (point-max)) (forward-char 1))
1331 (setq messages-head (list (point-marker)))
1332 (rmail-set-message-counters-counter (min (point) point-save))
1333 (setq messages-after-point total-messages)
1334 (rmail-set-message-counters-counter)
1335 (setq rmail-total-messages total-messages)
1336 (setq rmail-current-message
1337 (min total-messages
1338 (max 1 (- total-messages messages-after-point))))
1339 (setq rmail-message-vector
1340 (apply 'vector (cons (point-min-marker) messages-head))
1341 rmail-deleted-vector (concat "D" deleted-head)
1342 rmail-summary-vector (make-vector rmail-total-messages nil))
1343 (message "Counting messages...done")))))
1345 (defun rmail-set-message-counters-counter (&optional stop)
1346 (while (search-backward "\n\^_\^L\n" stop t)
1347 (forward-char 1)
1348 (setq messages-head (cons (point-marker) messages-head))
1349 (save-excursion
1350 (setq deleted-head
1351 (cons (if (search-backward ", deleted,"
1352 (prog1 (point)
1353 (forward-line 2))
1355 ?D ?\ )
1356 deleted-head)))
1357 (if (zerop (% (setq total-messages (1+ total-messages)) 20))
1358 (message "Counting messages...%d" total-messages))))
1360 (defun rmail-beginning-of-message ()
1361 "Show current message starting from the beginning."
1362 (interactive)
1363 (rmail-show-message rmail-current-message))
1365 (defun rmail-show-message (&optional n)
1366 "Show message number N (prefix argument), counting from start of file.
1367 If summary buffer is currently displayed, update current message there also."
1368 (interactive "p")
1369 (rmail-maybe-set-message-counters)
1370 (widen)
1371 (if (zerop rmail-total-messages)
1372 (progn (narrow-to-region (point-min) (1- (point-max)))
1373 (goto-char (point-min))
1374 (setq mode-line-process nil))
1375 (let (blurb)
1376 (if (not n)
1377 (setq n rmail-current-message)
1378 (cond ((<= n 0)
1379 (setq n 1
1380 rmail-current-message 1
1381 blurb "No previous message"))
1382 ((> n rmail-total-messages)
1383 (setq n rmail-total-messages
1384 rmail-current-message rmail-total-messages
1385 blurb "No following message"))
1387 (setq rmail-current-message n))))
1388 (let ((beg (rmail-msgbeg n))
1389 (end (rmail-msgend n)))
1390 (goto-char beg)
1391 (forward-line 1)
1392 (if (= (following-char) ?0)
1393 (progn
1394 (rmail-reformat-message beg end)
1395 (rmail-set-attribute "unseen" nil))
1396 (search-forward "\n*** EOOH ***\n" end t)
1397 (narrow-to-region (point) end))
1398 (goto-char (point-min))
1399 (rmail-display-labels)
1400 (rmail-highlight-headers)
1401 (run-hooks 'rmail-show-message-hook)
1402 ;; If there is a summary buffer, try to move to this message
1403 ;; in that buffer. But don't complain if this message
1404 ;; is not mentioned in the summary.
1405 (if (rmail-summary-exists)
1406 (let ((curr-msg rmail-current-message))
1407 (rmail-select-summary
1408 (rmail-summary-goto-msg curr-msg t t))))
1409 (if blurb
1410 (message blurb))))))
1412 ;; Find all occurrences of certain fields, and highlight them.
1413 (defun rmail-highlight-headers ()
1414 ;; Do this only if the system supports faces.
1415 (if (fboundp 'internal-find-face)
1416 (save-excursion
1417 (search-forward "\n\n" nil 'move)
1418 (save-restriction
1419 (narrow-to-region (point-min) (point))
1420 (let ((case-fold-search t)
1421 (inhibit-read-only t)
1422 ;; Highlight with boldface if that is available.
1423 ;; Otherwise use the `highlight' face.
1424 (face (if (face-differs-from-default-p 'bold)
1425 'bold 'highlight))
1426 ;; List of overlays to reuse.
1427 (overlays rmail-overlay-list))
1428 (goto-char (point-min))
1429 (while (re-search-forward rmail-highlighted-headers nil t)
1430 (skip-syntax-forward " ")
1431 (let ((beg (point))
1432 overlay)
1433 (while (progn (forward-line 1)
1434 (looking-at "[ \t]")))
1435 ;; Back up over newline, then trailing spaces or tabs
1436 (forward-char -1)
1437 (while (member (preceding-char) '(? ?\t))
1438 (forward-char -1))
1439 (if overlays
1440 ;; Reuse an overlay we already have.
1441 (progn
1442 (setq overlay (car overlays)
1443 overlays (cdr overlays))
1444 (overlay-put overlay 'face face)
1445 (move-overlay overlay beg (point)))
1446 ;; Make a new overlay and add it to
1447 ;; rmail-overlay-list.
1448 (setq overlay (make-overlay beg (point)))
1449 (overlay-put overlay 'face face)
1450 (setq rmail-overlay-list
1451 (cons overlay rmail-overlay-list))))))))))
1453 (defun rmail-next-message (n)
1454 "Show following message whether deleted or not.
1455 With prefix arg N, moves forward N messages, or backward if N is negative."
1456 (interactive "p")
1457 (rmail-maybe-set-message-counters)
1458 (rmail-show-message (+ rmail-current-message n)))
1460 (defun rmail-previous-message (n)
1461 "Show previous message whether deleted or not.
1462 With prefix arg N, moves backward N messages, or forward if N is negative."
1463 (interactive "p")
1464 (rmail-next-message (- n)))
1466 (defun rmail-next-undeleted-message (n)
1467 "Show following non-deleted message.
1468 With prefix arg N, moves forward N non-deleted messages,
1469 or backward if N is negative.
1471 Returns t if a new message is being shown, nil otherwise."
1472 (interactive "p")
1473 (rmail-maybe-set-message-counters)
1474 (let ((lastwin rmail-current-message)
1475 (current rmail-current-message))
1476 (while (and (> n 0) (< current rmail-total-messages))
1477 (setq current (1+ current))
1478 (if (not (rmail-message-deleted-p current))
1479 (setq lastwin current n (1- n))))
1480 (while (and (< n 0) (> current 1))
1481 (setq current (1- current))
1482 (if (not (rmail-message-deleted-p current))
1483 (setq lastwin current n (1+ n))))
1484 (if (/= lastwin rmail-current-message)
1485 (progn (rmail-show-message lastwin)
1487 (if (< n 0)
1488 (message "No previous nondeleted message"))
1489 (if (> n 0)
1490 (message "No following nondeleted message"))
1491 nil)))
1493 (defun rmail-previous-undeleted-message (n)
1494 "Show previous non-deleted message.
1495 With prefix argument N, moves backward N non-deleted messages,
1496 or forward if N is negative."
1497 (interactive "p")
1498 (rmail-next-undeleted-message (- n)))
1500 (defun rmail-first-message ()
1501 "Show first message in file."
1502 (interactive)
1503 (rmail-maybe-set-message-counters)
1504 (rmail-show-message 1))
1506 (defun rmail-last-message ()
1507 "Show last message in file."
1508 (interactive)
1509 (rmail-maybe-set-message-counters)
1510 (rmail-show-message rmail-total-messages))
1512 (defun rmail-what-message ()
1513 (let ((where (point))
1514 (low 1)
1515 (high rmail-total-messages)
1516 (mid (/ rmail-total-messages 2)))
1517 (while (> (- high low) 1)
1518 (if (>= where (rmail-msgbeg mid))
1519 (setq low mid)
1520 (setq high mid))
1521 (setq mid (+ low (/ (- high low) 2))))
1522 (if (>= where (rmail-msgbeg high)) high low)))
1524 (defun rmail-message-recipients-p (msg recipients &optional primary-only)
1525 (save-restriction
1526 (goto-char (rmail-msgbeg msg))
1527 (search-forward "\n*** EOOH ***\n")
1528 (narrow-to-region (point) (progn (search-forward "\n\n") (point)))
1529 (or (string-match recipients (or (mail-fetch-field "To") ""))
1530 (string-match recipients (or (mail-fetch-field "From") ""))
1531 (if (not primary-only)
1532 (string-match recipients (or (mail-fetch-field "Cc") ""))))))
1534 (defun rmail-message-regexp-p (msg regexp)
1535 "Return t, if for message number MSG, regexp REGEXP matches in the header."
1536 (goto-char (rmail-msgbeg msg))
1537 (let ((end
1538 (save-excursion
1539 (search-forward "*** EOOH ***" (point-max)) (point))))
1540 (re-search-forward regexp end t)))
1542 (defun rmail-search-backward (regexp &optional n)
1543 "Show message containing next match for REGEXP.
1544 Prefix argument gives repeat count; negative argument means search
1545 backwards (through earlier messages).
1546 Interactively, empty argument means use same regexp used last time."
1547 (interactive
1548 (let* ((reversep (>= (prefix-numeric-value current-prefix-arg) 0))
1549 (prompt
1550 (concat (if reversep "Reverse " "") "Rmail search (regexp): "))
1551 regexp)
1552 (if rmail-search-last-regexp
1553 (setq prompt (concat prompt
1554 "(default "
1555 rmail-search-last-regexp
1556 ") ")))
1557 (setq regexp (read-string prompt))
1558 (cond ((not (equal regexp ""))
1559 (setq rmail-search-last-regexp regexp))
1560 ((not rmail-search-last-regexp)
1561 (error "No previous Rmail search string")))
1562 (list rmail-search-last-regexp
1563 (prefix-numeric-value current-prefix-arg))))
1564 (rmail-search regexp (- n)))
1566 (defvar rmail-search-last-regexp nil)
1567 (defun rmail-search (regexp &optional n)
1568 "Show message containing next match for REGEXP.
1569 Prefix argument gives repeat count; negative argument means search
1570 backwards (through earlier messages).
1571 Interactively, empty argument means use same regexp used last time."
1572 (interactive
1573 (let* ((reversep (< (prefix-numeric-value current-prefix-arg) 0))
1574 (prompt
1575 (concat (if reversep "Reverse " "") "Rmail search (regexp): "))
1576 regexp)
1577 (if rmail-search-last-regexp
1578 (setq prompt (concat prompt
1579 "(default "
1580 rmail-search-last-regexp
1581 ") ")))
1582 (setq regexp (read-string prompt))
1583 (cond ((not (equal regexp ""))
1584 (setq rmail-search-last-regexp regexp))
1585 ((not rmail-search-last-regexp)
1586 (error "No previous Rmail search string")))
1587 (list rmail-search-last-regexp
1588 (prefix-numeric-value current-prefix-arg))))
1589 (or n (setq n 1))
1590 (message "%sRmail search for %s..."
1591 (if (< n 0) "Reverse " "")
1592 regexp)
1593 (rmail-maybe-set-message-counters)
1594 (let ((omin (point-min))
1595 (omax (point-max))
1596 (opoint (point))
1598 (reversep (< n 0))
1599 (msg rmail-current-message))
1600 (unwind-protect
1601 (progn
1602 (widen)
1603 (while (/= n 0)
1604 ;; Check messages one by one, advancing message number up or down
1605 ;; but searching forward through each message.
1606 (if reversep
1607 (while (and (null win) (> msg 1))
1608 (goto-char (rmail-msgbeg (setq msg (1- msg))))
1609 (setq win (re-search-forward
1610 regexp (rmail-msgend msg) t)))
1611 (while (and (null win) (< msg rmail-total-messages))
1612 (goto-char (rmail-msgbeg (setq msg (1+ msg))))
1613 (setq win (re-search-forward regexp (rmail-msgend msg) t))))
1614 (setq n (+ n (if reversep 1 -1)))))
1615 (if win
1616 (progn
1617 ;; If this is a reverse search and we found a message,
1618 ;; search backward thru this message to position point.
1619 (if reversep
1620 (progn
1621 (goto-char (rmail-msgend msg))
1622 (re-search-backward
1623 regexp (rmail-msgbeg msg) t)))
1624 (setq win (point))
1625 (rmail-show-message msg)
1626 (message "%sRmail search for %s...done"
1627 (if reversep "Reverse " "")
1628 regexp)
1629 (goto-char win))
1630 (goto-char opoint)
1631 (narrow-to-region omin omax)
1632 (ding)
1633 (message "Search failed: %s" regexp)))))
1635 (defun rmail-search-backwards (regexp &optional n)
1636 "Show message containing previous match for REGEXP.
1637 Prefix argument gives repeat count; negative argument means search
1638 forward (through later messages).
1639 Interactively, empty argument means use same regexp used last time."
1640 (interactive
1641 (let* ((reversep (>= (prefix-numeric-value current-prefix-arg) 0))
1642 (prompt
1643 (concat (if reversep "Reverse " "") "Rmail search (regexp): "))
1644 regexp)
1645 (if rmail-search-last-regexp
1646 (setq prompt (concat prompt
1647 "(default "
1648 rmail-search-last-regexp
1649 ") ")))
1650 (setq regexp (read-string prompt))
1651 (cond ((not (equal regexp ""))
1652 (setq rmail-search-last-regexp regexp))
1653 ((not rmail-search-last-regexp)
1654 (error "No previous Rmail search string")))
1655 (list rmail-search-last-regexp
1656 (prefix-numeric-value current-prefix-arg))))
1657 (rmail-search regexp (- (or n -1))))
1659 ;; Show the first message which has the `unseen' attribute.
1660 (defun rmail-first-unseen-message ()
1661 (rmail-maybe-set-message-counters)
1662 (let ((current 1)
1663 found)
1664 (save-restriction
1665 (widen)
1666 (while (and (not found) (< current rmail-total-messages))
1667 (if (rmail-message-labels-p current ", ?\\(unseen\\),")
1668 (setq found current))
1669 (setq current (1+ current))))
1670 ;; Let the caller show the message.
1671 ;; (if found
1672 ;; (rmail-show-message found))
1673 found))
1675 ;;;; *** Rmail Message Deletion Commands ***
1677 (defun rmail-message-deleted-p (n)
1678 (= (aref rmail-deleted-vector n) ?D))
1680 (defun rmail-set-message-deleted-p (n state)
1681 (aset rmail-deleted-vector n (if state ?D ?\ )))
1683 (defun rmail-delete-message ()
1684 "Delete this message and stay on it."
1685 (interactive)
1686 (rmail-set-attribute "deleted" t))
1688 (defun rmail-undelete-previous-message ()
1689 "Back up to deleted message, select it, and undelete it."
1690 (interactive)
1691 (let ((msg rmail-current-message))
1692 (while (and (> msg 0)
1693 (not (rmail-message-deleted-p msg)))
1694 (setq msg (1- msg)))
1695 (if (= msg 0)
1696 (error "No previous deleted message")
1697 (if (/= msg rmail-current-message)
1698 (rmail-show-message msg))
1699 (rmail-set-attribute "deleted" nil)
1700 (if (rmail-summary-exists)
1701 (save-excursion
1702 (set-buffer rmail-summary-buffer)
1703 (rmail-summary-mark-undeleted msg)))
1704 (rmail-maybe-display-summary))))
1706 (defun rmail-delete-forward (&optional backward)
1707 "Delete this message and move to next nondeleted one.
1708 Deleted messages stay in the file until the \\[rmail-expunge] command is given.
1709 With prefix argument, delete and move backward.
1711 Returns t if a new message is displayed after the delete, or nil otherwise."
1712 (interactive "P")
1713 (rmail-set-attribute "deleted" t)
1714 (let ((del-msg rmail-current-message))
1715 (if (rmail-summary-exists)
1716 (save-excursion
1717 (set-buffer rmail-summary-buffer)
1718 (rmail-summary-mark-deleted del-msg)))
1719 (prog1 (rmail-next-undeleted-message (if backward -1 1))
1720 (rmail-maybe-display-summary))))
1722 (defun rmail-delete-backward ()
1723 "Delete this message and move to previous nondeleted one.
1724 Deleted messages stay in the file until the \\[rmail-expunge] command is given."
1725 (interactive)
1726 (rmail-delete-forward t))
1728 (defun rmail-only-expunge ()
1729 "Actually erase all deleted messages in the file."
1730 (interactive)
1731 (message "Expunging deleted messages...")
1732 ;; Discard all undo records for this buffer.
1733 (or (eq buffer-undo-list t)
1734 (setq buffer-undo-list nil))
1735 (rmail-maybe-set-message-counters)
1736 (let* ((omax (- (buffer-size) (point-max)))
1737 (omin (- (buffer-size) (point-min)))
1738 (opoint (if (and (> rmail-current-message 0)
1739 (rmail-message-deleted-p rmail-current-message))
1741 (- (point) (point-min))))
1742 (messages-head (cons (aref rmail-message-vector 0) nil))
1743 (messages-tail messages-head)
1744 ;; Don't make any undo records for the expunging.
1745 (buffer-undo-list t)
1746 (win))
1747 (unwind-protect
1748 (save-excursion
1749 (widen)
1750 (goto-char (point-min))
1751 (let ((counter 0)
1752 (number 1)
1753 (total rmail-total-messages)
1754 (new-message-number rmail-current-message)
1755 (new-summary nil)
1756 (buffer-read-only nil)
1757 (messages rmail-message-vector)
1758 (deleted rmail-deleted-vector)
1759 (summary rmail-summary-vector))
1760 (setq rmail-total-messages nil
1761 rmail-current-message nil
1762 rmail-message-vector nil
1763 rmail-deleted-vector nil
1764 rmail-summary-vector nil)
1765 (while (<= number total)
1766 (if (= (aref deleted number) ?D)
1767 (progn
1768 (delete-region
1769 (marker-position (aref messages number))
1770 (marker-position (aref messages (1+ number))))
1771 (move-marker (aref messages number) nil)
1772 (if (> new-message-number counter)
1773 (setq new-message-number (1- new-message-number))))
1774 (setq counter (1+ counter))
1775 (setq messages-tail
1776 (setcdr messages-tail
1777 (cons (aref messages number) nil)))
1778 (setq new-summary
1779 (cons (if (= counter number) (aref summary (1- number)))
1780 new-summary)))
1781 (if (zerop (% (setq number (1+ number)) 20))
1782 (message "Expunging deleted messages...%d" number)))
1783 (setq messages-tail
1784 (setcdr messages-tail
1785 (cons (aref messages number) nil)))
1786 (setq rmail-current-message new-message-number
1787 rmail-total-messages counter
1788 rmail-message-vector (apply 'vector messages-head)
1789 rmail-deleted-vector (make-string (1+ counter) ?\ )
1790 rmail-summary-vector (vconcat (nreverse new-summary))
1791 win t)))
1792 (message "Expunging deleted messages...done")
1793 (if (not win)
1794 (narrow-to-region (- (buffer-size) omin) (- (buffer-size) omax)))
1795 (rmail-show-message
1796 (if (zerop rmail-current-message) 1 nil))
1797 (forward-char opoint))))
1799 (defun rmail-expunge ()
1800 "Erase deleted messages from Rmail file and summary buffer."
1801 (interactive)
1802 (rmail-only-expunge)
1803 (if (rmail-summary-exists)
1804 (rmail-select-summary
1805 (rmail-update-summary))))
1807 ;;;; *** Rmail Mailing Commands ***
1809 (defun rmail-start-mail (&rest args)
1810 (if (and window-system rmail-mail-new-frame)
1811 (prog1
1812 (apply 'mail-other-frame args)
1813 (modify-frame-parameters (selected-frame)
1814 '((dedicated . t))))
1815 (apply 'mail-other-window args)))
1817 (defun rmail-mail ()
1818 "Send mail in another window.
1819 While composing the message, use \\[mail-yank-original] to yank the
1820 original message into it."
1821 (interactive)
1822 (rmail-start-mail nil nil nil nil nil (current-buffer)))
1824 (defun rmail-continue ()
1825 "Continue composing outgoing message previously being composed."
1826 (interactive)
1827 (rmail-start-mail t))
1829 (defun rmail-reply (just-sender)
1830 "Reply to the current message.
1831 Normally include CC: to all other recipients of original message;
1832 prefix argument means ignore them. While composing the reply,
1833 use \\[mail-yank-original] to yank the original message into it."
1834 (interactive "P")
1835 (let (from reply-to cc subject date to message-id resent-reply-to)
1836 (save-excursion
1837 (save-restriction
1838 (widen)
1839 (goto-char (rmail-msgbeg rmail-current-message))
1840 (forward-line 1)
1841 (if (= (following-char) ?0)
1842 (narrow-to-region
1843 (progn (forward-line 2)
1844 (point))
1845 (progn (search-forward "\n\n" (rmail-msgend rmail-current-message)
1846 'move)
1847 (point)))
1848 (narrow-to-region (point)
1849 (progn (search-forward "\n*** EOOH ***\n")
1850 (beginning-of-line) (point))))
1851 (setq resent-reply-to (mail-fetch-field "resent-reply-to" t)
1852 from (mail-fetch-field "from")
1853 reply-to (or resent-reply-to
1854 (mail-fetch-field "reply-to" nil t)
1855 from)
1856 cc (cond (just-sender nil)
1857 (resent-reply-to (mail-fetch-field "resent-cc" t))
1858 (t (mail-fetch-field "cc" nil t)))
1859 subject (or (and resent-reply-to
1860 (mail-fetch-field "resent-subject" t))
1861 (mail-fetch-field "subject"))
1862 date (or (and resent-reply-to
1863 (mail-fetch-field "resent-date" t))
1864 (mail-fetch-field "date"))
1865 to (cond (resent-reply-to
1866 (or (mail-fetch-field "resent-to" t)) "")
1867 ((mail-fetch-field "to" nil t))
1868 ;((mail-fetch-field "apparently-to")) ack gag barf
1869 (t ""))
1870 message-id (cond (resent-reply-to
1871 (mail-fetch-field "resent-message-id" t))
1872 ((mail-fetch-field "message-id"))))))
1873 (and (stringp subject)
1874 (or (string-match (concat "\\`" (regexp-quote rmail-reply-prefix))
1875 subject)
1876 (setq subject (concat rmail-reply-prefix subject))))
1877 (rmail-start-mail nil
1878 (mail-strip-quoted-names reply-to)
1879 subject
1880 (rmail-make-in-reply-to-field from date message-id)
1881 (if just-sender
1883 (let* ((cc-list (rmail-dont-reply-to
1884 (mail-strip-quoted-names
1885 (if (null cc) to (concat to ", " cc))))))
1886 (if (string= cc-list "") nil cc-list)))
1887 (current-buffer)
1888 (list (list '(lambda (buf msgnum)
1889 (save-excursion
1890 (set-buffer buf)
1891 (rmail-set-attribute "answered" t msgnum)))
1892 (current-buffer) rmail-current-message)))))
1894 (defun rmail-make-in-reply-to-field (from date message-id)
1895 (cond ((not from)
1896 (if message-id
1897 message-id
1898 nil))
1899 (mail-use-rfc822
1900 (require 'rfc822)
1901 (let ((tem (car (rfc822-addresses from))))
1902 (if message-id
1903 (if (string-match
1904 (regexp-quote (if (string-match "@[^@]*\\'" tem)
1905 (substring tem 0 (match-beginning 0))
1906 tem))
1907 message-id)
1908 ;; Message-ID is sufficiently informative
1909 message-id
1910 (concat message-id " (" tem ")"))
1911 ;; Copy TEM, discarding text properties.
1912 (setq tem (copy-sequence tem))
1913 (set-text-properties 0 (length tem) nil tem)
1914 (setq tem (copy-sequence tem))
1915 ;; Use prin1 to fake RFC822 quoting
1916 (let ((field (prin1-to-string tem)))
1917 (if date
1918 (concat field "'s message of " date)
1919 field)))))
1920 ((let* ((foo "[^][\000-\037\177-\377()<>@,;:\\\" ]+")
1921 (bar "[^][\000-\037\177-\377()<>@,;:\\\"]+"))
1922 ;; Can't use format because format loses on \000 (unix *^&%*^&%$!!)
1923 (or (string-match (concat "\\`[ \t]*\\(" bar
1924 "\\)\\(<" foo "@" foo ">\\)?[ \t]*\\'")
1925 ;; "Unix Loser <Foo@bar.edu>" => "Unix Loser"
1926 from)
1927 (string-match (concat "\\`[ \t]*<" foo "@" foo ">[ \t]*(\\("
1928 bar "\\))[ \t]*\\'")
1929 ;; "<Bugs@bar.edu>" (Losing Unix) => "Losing Unix"
1930 from)))
1931 (let ((start (match-beginning 1))
1932 (end (match-end 1)))
1933 ;; Trim whitespace which above regexp match allows
1934 (while (and (< start end)
1935 (memq (aref from start) '(?\t ?\ )))
1936 (setq start (1+ start)))
1937 (while (and (< start end)
1938 (memq (aref from (1- end)) '(?\t ?\ )))
1939 (setq end (1- end)))
1940 (let ((field (substring from start end)))
1941 (if date (setq field (concat "message from " field " on " date)))
1942 (if message-id
1943 ;; "<AA259@bar.edu> (message from Unix Loser on 1-Apr-89)"
1944 (concat message-id " (" field ")")
1945 field))))
1947 ;; If we can't kludge it simply, do it correctly
1948 (let ((mail-use-rfc822 t))
1949 (rmail-make-in-reply-to-field from date message-id)))))
1951 (defun rmail-forward (resend)
1952 "Forward the current message to another user.
1953 With prefix argument, \"resend\" the message instead of forwarding it;
1954 see the documentation of `rmail-resend'."
1955 (interactive "P")
1956 (if resend
1957 (call-interactively 'rmail-resend)
1958 (let ((forward-buffer (current-buffer))
1959 (subject (concat "["
1960 (let ((from (or (mail-fetch-field "From")
1961 (mail-fetch-field ">From"))))
1962 (if from
1963 (concat (mail-strip-quoted-names from) ": ")
1964 ""))
1965 (or (mail-fetch-field "Subject") "")
1966 "]")))
1967 ;; If only one window, use it for the mail buffer.
1968 ;; Otherwise, use another window for the mail buffer
1969 ;; so that the Rmail buffer remains visible
1970 ;; and sending the mail will get back to it.
1971 (if (funcall (if (and (not rmail-mail-new-frame) (one-window-p t))
1972 (function mail)
1973 (function rmail-start-mail))
1974 nil nil subject nil nil nil
1975 (list (list (function (lambda (buf msgnum)
1976 (save-excursion
1977 (set-buffer buf)
1978 (rmail-set-attribute
1979 "forwarded" t msgnum))))
1980 (current-buffer)
1981 rmail-current-message)))
1982 (save-excursion
1983 ;; Insert after header separator--before signature if any.
1984 (goto-char (point-min))
1985 (search-forward-regexp
1986 (concat "^" (regexp-quote mail-header-separator)))
1987 (forward-line 1)
1988 (insert-buffer forward-buffer))))))
1990 (defun rmail-resend (address &optional from comment mail-alias-file)
1991 "Resend current message to ADDRESSES.
1992 ADDRESSES should be a single address, a string consisting of several
1993 addresses separated by commas, or a list of addresses.
1995 Optional FROM is the address to resend the message from, and
1996 defaults to the username of the person redistributing the message.
1997 Optional COMMENT is a string that will be inserted as a comment in the
1998 resent message.
1999 Optional ALIAS-FILE is alternate aliases file to be used by sendmail,
2000 typically for purposes of moderating a list."
2001 (interactive "sResend to: ")
2002 (require 'sendmail)
2003 (require 'mailalias)
2004 (if (not from) (setq from (user-login-name)))
2005 (let ((tembuf (generate-new-buffer " sendmail temp"))
2006 (mail-header-separator "")
2007 (case-fold-search nil)
2008 (mailbuf (current-buffer)))
2009 (unwind-protect
2010 (save-excursion
2011 ;;>> Copy message into temp buffer
2012 (set-buffer tembuf)
2013 (insert-buffer-substring mailbuf)
2014 (goto-char (point-min))
2015 ;; Delete any Sender field, since that's not specifyable.
2016 ; Only delete Sender fields in the actual header.
2017 (re-search-forward "^$" nil 'move)
2018 ; Using "while" here rather than "if" because some buggy mail
2019 ; software may have inserted multiple Sender fields.
2020 (while (re-search-backward "^Sender:" nil t)
2021 (let (beg)
2022 (setq beg (point))
2023 (forward-line 1)
2024 (while (looking-at "[ \t]")
2025 (forward-line 1))
2026 (delete-region beg (point))))
2027 ; Go back to the beginning of the buffer so the Resent- fields
2028 ; are inserted there.
2029 (goto-char (point-min))
2030 ;;>> Insert resent-from:
2031 (insert "Resent-From: " from "\n")
2032 (insert "Resent-Date: " (mail-rfc822-date) "\n")
2033 ;;>> Insert resent-to: and bcc if need be.
2034 (let ((before (point)))
2035 (if mail-self-blind
2036 (insert "Resent-Bcc: " (user-login-name) "\n"))
2037 (insert "Resent-To: " (if (stringp address)
2038 address
2039 (mapconcat 'identity address ",\n\t"))
2040 "\n")
2041 (expand-mail-aliases before (point)))
2042 ;;>> Set up comment, if any.
2043 (if (and (sequencep comment) (not (zerop (length comment))))
2044 (let ((before (point))
2045 after)
2046 (insert comment)
2047 (or (eolp) (insert "\n"))
2048 (setq after (point))
2049 (goto-char before)
2050 (while (< (point) after)
2051 (insert "Resent-Comment: ")
2052 (forward-line 1))))
2053 ;; Don't expand aliases in the destination fields
2054 ;; of the original message.
2055 (let (mail-aliases)
2056 (funcall send-mail-function)))
2057 (kill-buffer tembuf))
2058 (rmail-set-attribute "resent" t rmail-current-message)))
2060 (defvar mail-unsent-separator
2061 (concat "^ *---+ +Unsent message follows +---+ *$\\|"
2062 "^ *---+ +Returned message +---+ *$\\|"
2063 "^ *---+ +Original message +---+ *$\\|"
2064 "^ *--+ +begin message +--+ *$\\|"
2065 "^ *---+ +Original message follows +---+ *$\\|"
2066 "^|? *---+ +Message text follows: +---+ *|?$"))
2068 (defun rmail-retry-failure ()
2069 "Edit a mail message which is based on the contents of the current message.
2070 For a message rejected by the mail system, extract the interesting headers and
2071 the body of the original message."
2072 (interactive)
2073 (require 'mail-utils)
2074 (let (to subj irp2 cc orig-message)
2075 (save-excursion
2076 ;; Narrow down to just the quoted original message
2077 (rmail-beginning-of-message)
2078 (let ((case-fold-search t))
2079 (or (re-search-forward mail-unsent-separator nil t)
2080 (error "Cannot parse this as a failure message")))
2081 (save-restriction
2082 (narrow-to-region (point) (point-max))
2083 ;; Now mail-fetch-field will get from headers of the original message,
2084 ;; not from the headers of the rejection.
2085 (setq to (mail-fetch-field "To")
2086 subj (mail-fetch-field "Subject")
2087 irp2 (mail-fetch-field "In-reply-to")
2088 cc (mail-fetch-field "Cc"))
2089 ;; Get the entire text (not headers) of the original message.
2090 (setq orig-message
2091 (buffer-substring
2092 (progn (search-forward "\n\n") (point))
2093 (point-max)))))
2094 ;; Start sending a new message; default header fields from the original.
2095 ;; Turn off the usual actions for initializing the message body
2096 ;; because we want to get only the text from the failure message.
2097 (let (mail-signature
2098 (mail-setup-hook rmail-retry-setup-hook))
2099 (if (rmail-start-mail nil to subj irp2 cc (current-buffer))
2100 ;; Insert original text as initial text of new draft message.
2101 (progn
2102 (goto-char (point-max))
2103 (insert orig-message)
2104 (goto-char (point-min))
2105 (end-of-line))))))
2107 (defun rmail-bury ()
2108 "Bury current Rmail buffer and its summary buffer."
2109 (interactive)
2110 ;; This let var was called rmail-buffer, but that interfered
2111 ;; with the buffer-local var used in summary buffers.
2112 (let ((buffer-to-bury (current-buffer)))
2113 (if (rmail-summary-exists)
2114 (let (window)
2115 (while (setq window (get-buffer-window rmail-summary-buffer))
2116 (set-window-buffer window (other-buffer rmail-summary-buffer)))
2117 (bury-buffer rmail-summary-buffer)))
2118 (switch-to-buffer (other-buffer (current-buffer)))
2119 (bury-buffer buffer-to-bury)))
2121 (defun rmail-summary-exists ()
2122 "Non-nil iff in an RMAIL buffer and an associated summary buffer exists.
2123 In fact, the non-nil value returned is the summary buffer itself."
2124 (and rmail-summary-buffer (buffer-name rmail-summary-buffer)
2125 rmail-summary-buffer))
2127 (defun rmail-summary-displayed ()
2128 "t iff in RMAIL buffer and an associated summary buffer is displayed."
2129 (and rmail-summary-buffer (get-buffer-window rmail-summary-buffer)))
2131 (defvar rmail-redisplay-summary nil
2132 "*Non-nil means Rmail should show the summary when it changes.
2133 This has an effect only if a summary buffer exists.")
2135 (defvar rmail-summary-window-size nil
2136 "*Non-nil means specify the height for an Rmail summary window.")
2138 ;; Put the summary buffer back on the screen, if user wants that.
2139 (defun rmail-maybe-display-summary ()
2140 (let ((selected (selected-window))
2141 window)
2142 ;; If requested, make sure the summary is displayed.
2143 (and rmail-summary-buffer (buffer-name rmail-summary-buffer)
2144 rmail-redisplay-summary
2145 (display-buffer rmail-summary-buffer))
2146 ;; If requested, set the height of the summary window.
2147 (and rmail-summary-buffer (buffer-name rmail-summary-buffer)
2148 rmail-summary-window-size
2149 (setq window (get-buffer-window rmail-summary-buffer))
2150 (unwind-protect
2151 (progn
2152 (select-window window)
2153 (enlarge-window (- rmail-summary-window-size
2154 (window-height))))
2155 (select-window selected)))))
2157 ;;;; *** Rmail Specify Inbox Files ***
2159 (autoload 'set-rmail-inbox-list "rmailmsc"
2160 "Set the inbox list of the current RMAIL file to FILE-NAME.
2161 This may be a list of file names separated by commas.
2162 If FILE-NAME is empty, remove any inbox list."
2165 ;;;; *** Rmail Commands for Labels ***
2167 (autoload 'rmail-add-label "rmailkwd"
2168 "Add LABEL to labels associated with current RMAIL message.
2169 Completion is performed over known labels when reading."
2172 (autoload 'rmail-kill-label "rmailkwd"
2173 "Remove LABEL from labels associated with current RMAIL message.
2174 Completion is performed over known labels when reading."
2177 (autoload 'rmail-next-labeled-message "rmailkwd"
2178 "Show next message with LABEL. Defaults to last label used.
2179 With prefix argument N moves forward N messages with this label."
2182 (autoload 'rmail-previous-labeled-message "rmailkwd"
2183 "Show previous message with LABEL. Defaults to last label used.
2184 With prefix argument N moves backward N messages with this label."
2187 (autoload 'rmail-read-label "rmailkwd"
2188 "PROMPT and read with completion an Rmail message label."
2191 ;;;; *** Rmail Edit Mode ***
2193 (autoload 'rmail-edit-current-message "rmailedit"
2194 "Edit the contents of the current message"
2197 ;;;; *** Rmail Sorting ***
2199 (autoload 'rmail-sort-by-date "rmailsort"
2200 "Sort messages of current Rmail file by date.
2201 If prefix argument REVERSE is non-nil, sort them in reverse order." t)
2203 (autoload 'rmail-sort-by-subject "rmailsort"
2204 "Sort messages of current Rmail file by subject.
2205 If prefix argument REVERSE is non-nil, sort them in reverse order." t)
2207 (autoload 'rmail-sort-by-author "rmailsort"
2208 "Sort messages of current Rmail file by author.
2209 If prefix argument REVERSE is non-nil, sort them in reverse order." t)
2211 (autoload 'rmail-sort-by-recipient "rmailsort"
2212 "Sort messages of current Rmail file by recipient.
2213 If prefix argument REVERSE is non-nil, sort them in reverse order." t)
2215 (autoload 'rmail-sort-by-correspondent "rmailsort"
2216 "Sort messages of current Rmail file by other correspondent.
2217 If prefix argument REVERSE is non-nil, sort them in reverse order." t)
2219 (autoload 'rmail-sort-by-lines "rmailsort"
2220 "Sort messages of current Rmail file by number of lines.
2221 If prefix argument REVERSE is non-nil, sort them in reverse order." t)
2223 (autoload 'rmail-sort-by-keywords "rmailsort"
2224 "Sort messages of current Rmail file by labels.
2225 If prefix argument REVERSE is non-nil, sort them in reverse order.
2226 KEYWORDS is a comma-separated list of labels." t)
2228 ;;;; *** Rmail Summary Mode ***
2230 (autoload 'rmail-summary "rmailsum"
2231 "Display a summary of all messages, one line per message."
2234 (autoload 'rmail-summary-by-labels "rmailsum"
2235 "Display a summary of all messages with one or more LABELS.
2236 LABELS should be a string containing the desired labels, separated by commas."
2239 (autoload 'rmail-summary-by-recipients "rmailsum"
2240 "Display a summary of all messages with the given RECIPIENTS.
2241 Normally checks the To, From and Cc fields of headers; but if PRIMARY-ONLY
2242 is non-nil (prefix arg given), only look in the To and From fields.
2243 RECIPIENTS is a string of regexps separated by commas."
2246 (autoload 'rmail-summary-by-regexp "rmailsum"
2247 "Display a summary of all messages according to regexp REGEXP.
2248 If the regular expression is found in the header of the message
2249 \(including in the date and other lines, as well as the subject line),
2250 Emacs will list the header line in the RMAIL-summary."
2253 (autoload 'rmail-summary-by-topic "rmailsum"
2254 "Display a summary of all messages with the given SUBJECT.
2255 Normally checks the Subject field of headers;
2256 but if WHOLE-MESSAGE is non-nil (prefix arg given),
2257 look in the whole message.
2258 SUBJECT is a string of regexps separated by commas."
2261 ;;;; *** Rmail output messages to files ***
2263 (autoload 'rmail-output-to-rmail-file "rmailout"
2264 "Append the current message to an Rmail file named FILE-NAME.
2265 If the file does not exist, ask if it should be created.
2266 If file is being visited, the message is appended to the Emacs
2267 buffer visiting that file."
2270 (autoload 'rmail-output "rmailout"
2271 "Append this message to Unix mail file named FILE-NAME."
2274 (autoload 'rmail-output-menu "rmailout"
2275 "Output current message to another Rmail file, chosen with a menu."
2278 ;;;; *** Rmail undigestification ***
2280 (autoload 'undigestify-rmail-message "undigest"
2281 "Break up a digest message into its constituent messages.
2282 Leaves original message, deleted, before the undigestified messages."
2285 (provide 'rmail)
2287 ;;; rmail.el ends here