]> code.delx.au - gnu-emacs/blob - lisp/mail/rmail.el
1758f2dbd49e63360f9f4344a5a6e90d0c2d3fbe
[gnu-emacs] / lisp / mail / rmail.el
1 ;;; rmail.el --- main code of "RMAIL" mail reader for Emacs.
2
3 ;; Copyright (C) 1985,86,87,88,93,94,95,96 Free Software Foundation, Inc.
4
5 ;; Maintainer: FSF
6 ;; Keywords: mail
7
8 ;; This file is part of GNU Emacs.
9
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.
14
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.
19
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 the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Code:
26
27 ;; Souped up by shane@mit-ajax based on ideas of rlk@athena.mit.edu
28 ;; New features include attribute and keyword support, message
29 ;; selection by dispatch table, summary by attributes and keywords,
30 ;; expunging by dispatch table, sticky options for file commands.
31
32 ;; Extended by Bob Weiner of Motorola
33 ;; New features include: rmail and rmail-summary buffers remain
34 ;; synchronized and key bindings basically operate the same way in both
35 ;; buffers, summary by topic or by regular expression, rmail-reply-prefix
36 ;; variable, and a bury rmail buffer (wipe) command.
37 ;;
38
39 (require 'mail-utils)
40
41 ;; For Emacs V18 compatibility
42 (and (not (fboundp 'buffer-disable-undo))
43 (fboundp 'buffer-flush-undo)
44 (defalias 'buffer-disable-undo 'buffer-flush-undo))
45
46 ; These variables now declared in paths.el.
47 ;(defvar rmail-spool-directory "/usr/spool/mail/"
48 ; "This is the name of the directory used by the system mailer for\n\
49 ;delivering new mail. It's name should end with a slash.")
50 ;(defvar rmail-file-name
51 ; (expand-file-name "~/RMAIL")
52 ; "")
53
54 (defvar rmail-movemail-program nil
55 "If non-nil, name of program for fetching new mail.")
56
57 ;;;###autoload
58 (defvar rmail-dont-reply-to-names nil "\
59 *A regexp specifying names to prune of reply to messages.
60 A value of nil means exclude your own name only.")
61
62 ;;;###autoload
63 (defvar rmail-default-dont-reply-to-names "info-" "\
64 A regular expression specifying part of the value of the default value of
65 the variable `rmail-dont-reply-to-names', for when the user does not set
66 `rmail-dont-reply-to-names' explicitly. (The other part of the default
67 value is the user's name.)
68 It is useful to set this variable in the site customization file.")
69
70 ;;;###autoload
71 (defvar rmail-ignored-headers "^via:\\|^mail-from:\\|^origin:\\|^status:\\|^received:\\|^x400-originator:\\|^x400-recipients:\\|^x400-received:\\|^x400-mts-identifier:\\|^x400-content-type:\\|^\\(resent-\\|\\)message-id:\\|^summary-line:\\|^resent-date:\\|^nntp-posting-host:"
72 "*Regexp to match Header fields that Rmail should normally hide.")
73
74 ;;;###autoload
75 (defvar rmail-displayed-headers nil
76 "*Regexp to match Header fields that Rmail should display.
77 If nil, display all header fields except those matched by
78 `rmail-ignored-headers'.")
79
80 ;;;###autoload
81 (defvar rmail-retry-ignored-headers nil "\
82 *Headers that should be stripped when retrying a failed message.")
83
84 ;;;###autoload
85 (defvar rmail-highlighted-headers "^From:\\|^Subject:" "\
86 *Regexp to match Header fields that Rmail should normally highlight.
87 A value of nil means don't highlight.
88 See also `rmail-highlight-face'.")
89
90 ;;;###autoload
91 (defvar rmail-highlight-face nil "\
92 *Face used by Rmail for highlighting headers.")
93
94 ;;;###autoload
95 (defvar rmail-delete-after-output nil "\
96 *Non-nil means automatically delete a message that is copied to a file.")
97
98 ;;;###autoload
99 (defvar rmail-primary-inbox-list nil "\
100 *List of files which are inboxes for user's primary mail file `~/RMAIL'.
101 `nil' means the default, which is (\"/usr/spool/mail/$USER\")
102 \(the name varies depending on the operating system,
103 and the value of the environment variable MAIL overrides it).")
104
105 ;;;###autoload
106 (defvar rmail-mail-new-frame nil
107 "*Non-nil means Rmail makes a new frame for composing outgoing mail.")
108
109 ;;;###autoload
110 (defvar rmail-secondary-file-directory "~/"
111 "*Directory for additional secondary Rmail files.")
112 ;;;###autoload
113 (defvar rmail-secondary-file-regexp "\\.xmail$"
114 "*Regexp for which files are secondary Rmail files.")
115
116 ;;;###autoload
117 (defvar rmail-mode-hook nil
118 "List of functions to call when Rmail is invoked.")
119
120 ;;;###autoload
121 (defvar rmail-get-new-mail-hook nil
122 "List of functions to call when Rmail has retrieved new mail.")
123
124 ;;;###autoload
125 (defvar rmail-show-message-hook nil
126 "List of functions to call when Rmail displays a message.")
127
128 ;;;###autoload
129 (defvar rmail-delete-message-hook nil
130 "List of functions to call when Rmail deletes a message.
131 When the hooks are called, the message has been marked deleted but is
132 still the current message in the Rmail buffer.")
133
134 ;; These may be altered by site-init.el to match the format of mmdf files
135 ;; delimiting used on a given host (delim1 and delim2 from the config
136 ;; files).
137
138 (defvar mmdf-delim1 "^\001\001\001\001\n"
139 "Regexp marking the start of an mmdf message")
140 (defvar mmdf-delim2 "^\001\001\001\001\n"
141 "Regexp marking the end of an mmdf message")
142
143 (defvar rmail-message-filter nil
144 "If non nil, a filter function for new messages in RMAIL.
145 Called with region narrowed to the message, including headers.")
146
147 (defvar rmail-reply-prefix "Re: "
148 "String to prepend to Subject line when replying to a message.")
149
150 ;; Some mailers use "Re(2):" or "Re^2:" or "Re: Re:".
151 ;; This pattern should catch all the common variants.
152 (defvar rmail-reply-regexp "\\`\\(Re\\(([0-9]+)\\|\\^[0-9]+\\)?: *\\)*"
153 "Regexp to delete from Subject line before inserting rmail-reply-prefix.")
154
155 (defvar rmail-display-summary nil
156 "If non nil, the summary buffer is always displayed.")
157
158 (defvar rmail-mode-map nil)
159
160 (defvar rmail-inbox-list nil)
161 (defvar rmail-keywords nil)
162
163 ;; Message counters and markers. Deleted flags.
164
165 (defvar rmail-current-message nil)
166 (defvar rmail-total-messages nil)
167 (defvar rmail-message-vector nil)
168 (defvar rmail-deleted-vector nil)
169
170 (defvar rmail-overlay-list nil)
171
172 (defvar rmail-font-lock-keywords
173 (eval-when-compile
174 (let* ((cite-prefix "A-Za-z") (cite-suffix (concat cite-prefix "0-9_.@-")))
175 (list
176 '("^\\(From\\|Sender\\):" . font-lock-function-name-face)
177 '("^Reply-To:.*$" . font-lock-function-name-face)
178 '("^Subject:" . font-lock-comment-face)
179 '("^\\(To\\|Apparently-To\\|Cc\\):" . font-lock-keyword-face)
180 (cons (concat "^[ \t]*"
181 "\\([" cite-prefix "]+[" cite-suffix "]*\\)?"
182 "[>|}].*")
183 'font-lock-reference-face)
184 '("^\\(X-[A-Za-z0-9-]+\\|In-reply-to\\|Date\\):.*$"
185 . font-lock-string-face))))
186 "Additional expressions to highlight in Rmail mode.")
187
188 ;; These are used by autoloaded rmail-summary.
189
190 (defvar rmail-summary-buffer nil)
191 (defvar rmail-summary-vector nil)
192
193 ;; `Sticky' default variables.
194
195 ;; Last individual label specified to a or k.
196 (defvar rmail-last-label nil)
197 ;; Last set of values specified to C-M-n, C-M-p, C-M-s or C-M-l.
198 (defvar rmail-last-multi-labels nil)
199 (defvar rmail-last-regexp nil)
200 (defvar rmail-default-file "~/xmail"
201 "*Default file name for \\[rmail-output].")
202 (defvar rmail-default-rmail-file "~/XMAIL"
203 "*Default file name for \\[rmail-output-to-rmail-file].")
204
205 ;;; Regexp matching the delimiter of messages in UNIX mail format
206 ;;; (UNIX From lines), minus the initial ^. Note that if you change
207 ;;; this expression, you must change the code in rmail-nuke-pinhead-header
208 ;;; that knows the exact ordering of the \\( \\) subexpressions.
209 (defvar rmail-unix-mail-delimiter
210 (let ((time-zone-regexp
211 (concat "\\([A-Z]?[A-Z]?[A-Z][A-Z]\\( DST\\)?"
212 "\\|[-+]?[0-9][0-9][0-9][0-9]"
213 "\\|"
214 "\\) *")))
215 (concat
216 "From "
217
218 ;; Username, perhaps with a quoted section that can contain spaces.
219 "\\("
220 "[^ \n]*"
221 "\\(\\|\".*\"[^ \n]*\\)"
222 "\\|<[^<>\n]+>"
223 "\\) ?"
224
225 ;; The time the message was sent.
226 "\\([^ \n]*\\) *" ; day of the week
227 "\\([^ \n]*\\) *" ; month
228 "\\([0-9]*\\) *" ; day of month
229 "\\([0-9:]*\\) *" ; time of day
230
231 ;; Perhaps a time zone, specified by an abbreviation, or by a
232 ;; numeric offset.
233 time-zone-regexp
234
235 ;; The year.
236 " [0-9][0-9]\\([0-9]*\\) *"
237
238 ;; On some systems the time zone can appear after the year, too.
239 time-zone-regexp
240
241 ;; Old uucp cruft.
242 "\\(remote from .*\\)?"
243
244 "\n"))
245 nil)
246
247 ;; Perform BODY in the summary buffer
248 ;; in such a way that its cursor is properly updated in its own window.
249 (defmacro rmail-select-summary (&rest body)
250 (` (let ((total rmail-total-messages))
251 (if (rmail-summary-displayed)
252 (let ((window (selected-window)))
253 (save-excursion
254 (unwind-protect
255 (progn
256 (pop-to-buffer rmail-summary-buffer)
257 ;; rmail-total-messages is a buffer-local var
258 ;; in the rmail buffer.
259 ;; This way we make it available for the body
260 ;; even tho the rmail buffer is not current.
261 (let ((rmail-total-messages total))
262 (,@ body)))
263 (select-window window))))
264 (save-excursion
265 (set-buffer rmail-summary-buffer)
266 (let ((rmail-total-messages total))
267 (,@ body))))
268 (rmail-maybe-display-summary))))
269 \f
270 ;;;; *** Rmail Mode ***
271
272 ;;;###autoload
273 (defun rmail (&optional file-name-arg)
274 "Read and edit incoming mail.
275 Moves messages into file named by `rmail-file-name' (a babyl format file)
276 and edits that file in RMAIL Mode.
277 Type \\[describe-mode] once editing that file, for a list of RMAIL commands.
278
279 May be called with file name as argument; then performs rmail editing on
280 that file, but does not copy any new mail into the file.
281 Interactively, if you supply a prefix argument, then you
282 have a chance to specify a file name with the minibuffer.
283
284 If `rmail-display-summary' is non-nil, make a summary for this RMAIL file."
285 (interactive (if current-prefix-arg
286 (list (read-file-name "Run rmail on RMAIL file: "))))
287 (let* ((file-name (expand-file-name (or file-name-arg rmail-file-name)))
288 (existed (get-file-buffer file-name)))
289 ;; Like find-file, but in the case where a buffer existed
290 ;; and the file was reverted, recompute the message-data.
291 (if (and existed (not (verify-visited-file-modtime existed)))
292 (progn
293 ;; Don't be confused by apparent local-variables spec
294 ;; in the last message in the RMAIL file.
295 (let ((enable-local-variables nil))
296 (find-file file-name))
297 (if (and (verify-visited-file-modtime existed)
298 (eq major-mode 'rmail-mode))
299 (progn (rmail-forget-messages)
300 (rmail-set-message-counters))))
301 (let ((enable-local-variables nil))
302 (find-file file-name)))
303 (if (eq major-mode 'rmail-edit-mode)
304 (error "Exit Rmail Edit mode before getting new mail."))
305 (if (and existed (> (buffer-size) 0))
306 ;; Buffer not new and not empty; ensure in proper mode, but that's all.
307 (or (eq major-mode 'rmail-mode)
308 (rmail-mode-2))
309 (rmail-mode-2)
310 ;; Convert all or part to Babyl file if possible.
311 (rmail-convert-file)
312 (goto-char (point-max))
313 (if (null rmail-inbox-list)
314 (progn
315 (rmail-set-message-counters)
316 (rmail-show-message))))
317 (or (and (null file-name-arg)
318 (rmail-get-new-mail))
319 (rmail-show-message (rmail-first-unseen-message)))
320 (if rmail-display-summary (rmail-summary))
321 (rmail-construct-io-menu)))
322
323 ;; Given the value of MAILPATH, return a list of inbox file names.
324 ;; This is turned off because it is not clear that the user wants
325 ;; all these inboxes to feed into the primary rmail file.
326 ; (defun rmail-convert-mailpath (string)
327 ; (let (idx list)
328 ; (while (setq idx (string-match "[%:]" string))
329 ; (let ((this (substring string 0 idx)))
330 ; (setq string (substring string (1+ idx)))
331 ; (setq list (cons (if (string-match "%" this)
332 ; (substring this 0 (string-match "%" this))
333 ; this)
334 ; list))))
335 ; list))
336
337 ; I have checked that adding "-*- rmail -*-" to the BABYL OPTIONS line
338 ; will not cause emacs 18.55 problems.
339
340 (defun rmail-convert-file ()
341 (let (convert)
342 (widen)
343 (goto-char (point-min))
344 ;; If file doesn't start like a Babyl file,
345 ;; convert it to one, by adding a header and converting each message.
346 (cond ((looking-at "BABYL OPTIONS:"))
347 ((looking-at "Version: 5\n")
348 ;; Losing babyl file made by old version of Rmail.
349 ;; Just fix the babyl file header; don't make a new one,
350 ;; so we don't lose the Labels: file attribute, etc.
351 (let ((buffer-read-only nil))
352 (insert "BABYL OPTIONS: -*- rmail -*-\n")))
353 ((equal (point-min) (point-max))
354 ;; Empty RMAIL file. Just insert the header.
355 (rmail-insert-rmail-file-header))
356 (t
357 ;; Non-empty file in non-RMAIL format. Add header and convert.
358 (setq convert t)
359 (rmail-insert-rmail-file-header)))
360 ;; If file was not a Babyl file or if there are
361 ;; Unix format messages added at the end,
362 ;; convert file as necessary.
363 (if (or convert
364 (save-excursion
365 (goto-char (point-max))
366 (search-backward "\n\^_")
367 (forward-char 2)
368 (looking-at "\n*From ")))
369 (let ((buffer-read-only nil))
370 (message "Converting to Babyl format...")
371 ;; If file needs conversion, convert it all,
372 ;; except for the BABYL header.
373 ;; (rmail-convert-to-babyl-format would delete the header.)
374 (goto-char (point-min))
375 (search-forward "\n\^_" nil t)
376 (narrow-to-region (point) (point-max))
377 (rmail-convert-to-babyl-format)
378 (message "Converting to Babyl format...done")))))
379
380 ;;; I have checked that adding "-*- rmail -*-" to the BABYL OPTIONS line
381 ;;; will not cause emacs 18.55 problems.
382
383 (defun rmail-insert-rmail-file-header ()
384 (let ((buffer-read-only nil))
385 (insert "BABYL OPTIONS: -*- rmail -*-
386 Version: 5
387 Labels:
388 Note: This is the header of an rmail file.
389 Note: If you are seeing it in rmail,
390 Note: it means the file has no messages in it.\n\^_")))
391
392 (if rmail-mode-map
393 nil
394 (setq rmail-mode-map (make-keymap))
395 (suppress-keymap rmail-mode-map)
396 (define-key rmail-mode-map "a" 'rmail-add-label)
397 (define-key rmail-mode-map "b" 'rmail-bury)
398 (define-key rmail-mode-map "c" 'rmail-continue)
399 (define-key rmail-mode-map "d" 'rmail-delete-forward)
400 (define-key rmail-mode-map "\C-d" 'rmail-delete-backward)
401 (define-key rmail-mode-map "e" 'rmail-edit-current-message)
402 (define-key rmail-mode-map "f" 'rmail-forward)
403 (define-key rmail-mode-map "g" 'rmail-get-new-mail)
404 (define-key rmail-mode-map "h" 'rmail-summary)
405 (define-key rmail-mode-map "i" 'rmail-input)
406 (define-key rmail-mode-map "j" 'rmail-show-message)
407 (define-key rmail-mode-map "k" 'rmail-kill-label)
408 (define-key rmail-mode-map "l" 'rmail-summary-by-labels)
409 (define-key rmail-mode-map "\e\C-h" 'rmail-summary)
410 (define-key rmail-mode-map "\e\C-l" 'rmail-summary-by-labels)
411 (define-key rmail-mode-map "\e\C-r" 'rmail-summary-by-recipients)
412 (define-key rmail-mode-map "\e\C-s" 'rmail-summary-by-regexp)
413 (define-key rmail-mode-map "\e\C-t" 'rmail-summary-by-topic)
414 (define-key rmail-mode-map "m" 'rmail-mail)
415 (define-key rmail-mode-map "\em" 'rmail-retry-failure)
416 (define-key rmail-mode-map "n" 'rmail-next-undeleted-message)
417 (define-key rmail-mode-map "\en" 'rmail-next-message)
418 (define-key rmail-mode-map "\e\C-n" 'rmail-next-labeled-message)
419 (define-key rmail-mode-map "o" 'rmail-output-to-rmail-file)
420 (define-key rmail-mode-map "\C-o" 'rmail-output)
421 (define-key rmail-mode-map "p" 'rmail-previous-undeleted-message)
422 (define-key rmail-mode-map "\ep" 'rmail-previous-message)
423 (define-key rmail-mode-map "\e\C-p" 'rmail-previous-labeled-message)
424 (define-key rmail-mode-map "q" 'rmail-quit)
425 (define-key rmail-mode-map "r" 'rmail-reply)
426 ;; I find I can't live without the default M-r command -- rms.
427 ;; (define-key rmail-mode-map "\er" 'rmail-search-backwards)
428 (define-key rmail-mode-map "s" 'rmail-expunge-and-save)
429 (define-key rmail-mode-map "\es" 'rmail-search)
430 (define-key rmail-mode-map "t" 'rmail-toggle-header)
431 (define-key rmail-mode-map "u" 'rmail-undelete-previous-message)
432 (define-key rmail-mode-map "w" 'rmail-edit-current-message)
433 (define-key rmail-mode-map "x" 'rmail-expunge)
434 (define-key rmail-mode-map "." 'rmail-beginning-of-message)
435 (define-key rmail-mode-map "<" 'rmail-first-message)
436 (define-key rmail-mode-map ">" 'rmail-last-message)
437 (define-key rmail-mode-map " " 'scroll-up)
438 (define-key rmail-mode-map "\177" 'scroll-down)
439 (define-key rmail-mode-map "?" 'describe-mode)
440 (define-key rmail-mode-map "\C-c\C-s\C-d" 'rmail-sort-by-date)
441 (define-key rmail-mode-map "\C-c\C-s\C-s" 'rmail-sort-by-subject)
442 (define-key rmail-mode-map "\C-c\C-s\C-a" 'rmail-sort-by-author)
443 (define-key rmail-mode-map "\C-c\C-s\C-r" 'rmail-sort-by-recipient)
444 (define-key rmail-mode-map "\C-c\C-s\C-c" 'rmail-sort-by-correspondent)
445 (define-key rmail-mode-map "\C-c\C-s\C-l" 'rmail-sort-by-lines)
446 (define-key rmail-mode-map "\C-c\C-s\C-k" 'rmail-sort-by-keywords)
447 (define-key rmail-mode-map "\C-c\C-n" 'rmail-next-same-subject)
448 (define-key rmail-mode-map "\C-c\C-p" 'rmail-previous-same-subject)
449 )
450 \f
451 (define-key rmail-mode-map [menu-bar] (make-sparse-keymap))
452
453 (define-key rmail-mode-map [menu-bar classify]
454 (cons "Classify" (make-sparse-keymap "Classify")))
455
456 (define-key rmail-mode-map [menu-bar classify input-menu]
457 nil)
458
459 (define-key rmail-mode-map [menu-bar classify output-menu]
460 nil)
461
462 (define-key rmail-mode-map [menu-bar classify output-inbox]
463 '("Output (inbox)..." . rmail-output))
464
465 (define-key rmail-mode-map [menu-bar classify output]
466 '("Output (Rmail)..." . rmail-output-to-rmail-file))
467
468 (define-key rmail-mode-map [menu-bar classify kill-label]
469 '("Kill Label..." . rmail-kill-label))
470
471 (define-key rmail-mode-map [menu-bar classify add-label]
472 '("Add Label..." . rmail-add-label))
473
474 (define-key rmail-mode-map [menu-bar summary]
475 (cons "Summary" (make-sparse-keymap "Summary")))
476
477 (define-key rmail-mode-map [menu-bar summary senders]
478 '("By Senders..." . rmail-summary-by-senders))
479
480 (define-key rmail-mode-map [menu-bar summary labels]
481 '("By Labels..." . rmail-summary-by-labels))
482
483 (define-key rmail-mode-map [menu-bar summary recipients]
484 '("By Recipients..." . rmail-summary-by-recipients))
485
486 (define-key rmail-mode-map [menu-bar summary topic]
487 '("By Topic..." . rmail-summary-by-topic))
488
489 (define-key rmail-mode-map [menu-bar summary regexp]
490 '("By Regexp..." . rmail-summary-by-regexp))
491
492 (define-key rmail-mode-map [menu-bar summary all]
493 '("All" . rmail-summary))
494
495 (define-key rmail-mode-map [menu-bar mail]
496 (cons "Mail" (make-sparse-keymap "Mail")))
497
498 (define-key rmail-mode-map [menu-bar mail rmail-get-new-mail]
499 '("Get New Mail" . rmail-get-new-mail))
500
501 (define-key rmail-mode-map [menu-bar mail lambda]
502 '("----"))
503
504 (define-key rmail-mode-map [menu-bar mail continue]
505 '("Continue" . rmail-continue))
506
507 (define-key rmail-mode-map [menu-bar mail resend]
508 '("Re-send..." . rmail-resend))
509
510 (define-key rmail-mode-map [menu-bar mail forward]
511 '("Forward" . rmail-forward))
512
513 (define-key rmail-mode-map [menu-bar mail retry]
514 '("Retry" . rmail-retry-failure))
515
516 (define-key rmail-mode-map [menu-bar mail reply]
517 '("Reply" . rmail-reply))
518
519 (define-key rmail-mode-map [menu-bar mail mail]
520 '("Mail" . rmail-mail))
521
522 (define-key rmail-mode-map [menu-bar delete]
523 (cons "Delete" (make-sparse-keymap "Delete")))
524
525 (define-key rmail-mode-map [menu-bar delete expunge/save]
526 '("Expunge/Save" . rmail-expunge-and-save))
527
528 (define-key rmail-mode-map [menu-bar delete expunge]
529 '("Expunge" . rmail-expunge))
530
531 (define-key rmail-mode-map [menu-bar delete undelete]
532 '("Undelete" . rmail-undelete-previous-message))
533
534 (define-key rmail-mode-map [menu-bar delete delete]
535 '("Delete" . rmail-delete-forward))
536
537 (define-key rmail-mode-map [menu-bar move]
538 (cons "Move" (make-sparse-keymap "Move")))
539
540 (define-key rmail-mode-map [menu-bar move search-back]
541 '("Search Back..." . rmail-search-backwards))
542
543 (define-key rmail-mode-map [menu-bar move search]
544 '("Search..." . rmail-search))
545
546 (define-key rmail-mode-map [menu-bar move previous]
547 '("Previous Nondeleted" . rmail-previous-undeleted-message))
548
549 (define-key rmail-mode-map [menu-bar move next]
550 '("Next Nondeleted" . rmail-next-undeleted-message))
551
552 (define-key rmail-mode-map [menu-bar move last]
553 '("Last" . rmail-last-message))
554
555 (define-key rmail-mode-map [menu-bar move first]
556 '("First" . rmail-first-message))
557
558 (define-key rmail-mode-map [menu-bar move previous]
559 '("Previous" . rmail-previous-message))
560
561 (define-key rmail-mode-map [menu-bar move next]
562 '("Next" . rmail-next-message))
563 \f
564 ;; Rmail mode is suitable only for specially formatted data.
565 (put 'rmail-mode 'mode-class 'special)
566
567 (defun rmail-mode-kill-summary ()
568 (if rmail-summary-buffer (kill-buffer rmail-summary-buffer)))
569
570 ;;;###autoload
571 (defun rmail-mode ()
572 "Rmail Mode is used by \\<rmail-mode-map>\\[rmail] for editing Rmail files.
573 All normal editing commands are turned off.
574 Instead, these commands are available:
575
576 \\[rmail-beginning-of-message] Move point to front of this message (same as \\[beginning-of-buffer]).
577 \\[scroll-up] Scroll to next screen of this message.
578 \\[scroll-down] Scroll to previous screen of this message.
579 \\[rmail-next-undeleted-message] Move to Next non-deleted message.
580 \\[rmail-previous-undeleted-message] Move to Previous non-deleted message.
581 \\[rmail-next-message] Move to Next message whether deleted or not.
582 \\[rmail-previous-message] Move to Previous message whether deleted or not.
583 \\[rmail-first-message] Move to the first message in Rmail file.
584 \\[rmail-last-message] Move to the last message in Rmail file.
585 \\[rmail-show-message] Jump to message specified by numeric position in file.
586 \\[rmail-search] Search for string and show message it is found in.
587 \\[rmail-delete-forward] Delete this message, move to next nondeleted.
588 \\[rmail-delete-backward] Delete this message, move to previous nondeleted.
589 \\[rmail-undelete-previous-message] Undelete message. Tries current message, then earlier messages
590 till a deleted message is found.
591 \\[rmail-edit-current-message] Edit the current message. \\[rmail-cease-edit] to return to Rmail.
592 \\[rmail-expunge] Expunge deleted messages.
593 \\[rmail-expunge-and-save] Expunge and save the file.
594 \\[rmail-quit] Quit Rmail: expunge, save, then switch to another buffer.
595 \\[save-buffer] Save without expunging.
596 \\[rmail-get-new-mail] Move new mail from system spool directory into this file.
597 \\[rmail-mail] Mail a message (same as \\[mail-other-window]).
598 \\[rmail-continue] Continue composing outgoing message started before.
599 \\[rmail-reply] Reply to this message. Like \\[rmail-mail] but initializes some fields.
600 \\[rmail-retry-failure] Send this message again. Used on a mailer failure message.
601 \\[rmail-forward] Forward this message to another user.
602 \\[rmail-output-to-rmail-file] Output this message to an Rmail file (append it).
603 \\[rmail-output] Output this message to a Unix-format mail file (append it).
604 \\[rmail-input] Input Rmail file. Run Rmail on that file.
605 \\[rmail-add-label] Add label to message. It will be displayed in the mode line.
606 \\[rmail-kill-label] Kill label. Remove a label from current message.
607 \\[rmail-next-labeled-message] Move to Next message with specified label
608 (label defaults to last one specified).
609 Standard labels: filed, unseen, answered, forwarded, deleted.
610 Any other label is present only if you add it with \\[rmail-add-label].
611 \\[rmail-previous-labeled-message] Move to Previous message with specified label
612 \\[rmail-summary] Show headers buffer, with a one line summary of each message.
613 \\[rmail-summary-by-labels] Summarize only messages with particular label(s).
614 \\[rmail-summary-by-recipients] Summarize only messages with particular recipient(s).
615 \\[rmail-summary-by-regexp] Summarize only messages with particular regexp(s).
616 \\[rmail-summary-by-topic] Summarize only messages with subject line regexp(s).
617 \\[rmail-toggle-header] Toggle display of complete header."
618 (interactive)
619 (rmail-mode-2)
620 (rmail-set-message-counters)
621 (rmail-show-message rmail-total-messages))
622
623 (defun rmail-mode-2 ()
624 (kill-all-local-variables)
625 (rmail-mode-1)
626 (rmail-variables)
627 (run-hooks 'rmail-mode-hook))
628
629 (defun rmail-mode-1 ()
630 (setq major-mode 'rmail-mode)
631 (setq mode-name "RMAIL")
632 (setq buffer-read-only t)
633 ;; No need to auto save RMAIL files in normal circumstances
634 ;; because they contain no info except attribute changes
635 ;; and deletion of messages.
636 ;; The one exception is when messages are copied into an Rmail mode buffer.
637 ;; rmail-output-to-rmail-file enables auto save when you do that.
638 (setq buffer-auto-save-file-name nil)
639 (if (boundp 'mode-line-modified)
640 (setq mode-line-modified "--- ")
641 (setq mode-line-format
642 (cons "--- " (cdr (default-value 'mode-line-format)))))
643 (use-local-map rmail-mode-map)
644 (set-syntax-table text-mode-syntax-table)
645 (setq local-abbrev-table text-mode-abbrev-table))
646
647 (defun rmail-variables ()
648 (make-local-variable 'revert-buffer-function)
649 (setq revert-buffer-function 'rmail-revert)
650 (make-local-variable 'font-lock-defaults)
651 (setq font-lock-defaults
652 '(rmail-font-lock-keywords t nil nil nil
653 (font-lock-fontify-buffer-function . rmail-fontify-buffer-function)
654 (font-lock-unfontify-buffer-function . rmail-unfontify-buffer-function)
655 (font-lock-inhibit-thing-lock . (lazy-lock-mode fast-lock-mode))))
656 (make-local-variable 'rmail-last-label)
657 (make-local-variable 'rmail-last-regexp)
658 (make-local-variable 'rmail-deleted-vector)
659 (make-local-variable 'rmail-summary-buffer)
660 (make-local-variable 'rmail-summary-vector)
661 (make-local-variable 'rmail-current-message)
662 (make-local-variable 'rmail-total-messages)
663 (make-local-variable 'require-final-newline)
664 (setq require-final-newline nil)
665 (make-local-variable 'rmail-overlay-list)
666 (setq rmail-overlay-list nil)
667 (make-local-variable 'version-control)
668 (setq version-control 'never)
669 (make-local-variable 'kill-buffer-hook)
670 (add-hook 'kill-buffer-hook 'rmail-mode-kill-summary)
671 (make-local-variable 'file-precious-flag)
672 (setq file-precious-flag t)
673 (make-local-variable 'rmail-message-vector)
674 (make-local-variable 'rmail-inbox-list)
675 (setq rmail-inbox-list (rmail-parse-file-inboxes))
676 ;; Provide default set of inboxes for primary mail file ~/RMAIL.
677 (and (null rmail-inbox-list)
678 (or (equal buffer-file-name (expand-file-name rmail-file-name))
679 (equal buffer-file-truename
680 (abbreviate-file-name (file-truename rmail-file-name))))
681 (setq rmail-inbox-list
682 (or rmail-primary-inbox-list
683 (list (or (getenv "MAIL")
684 (concat rmail-spool-directory
685 (user-login-name)))))))
686 (make-local-variable 'rmail-keywords)
687 ;; this gets generated as needed
688 (setq rmail-keywords nil))
689
690 ;; Handle M-x revert-buffer done in an rmail-mode buffer.
691 (defun rmail-revert (arg noconfirm)
692 (let ((revert-buffer-function (default-value 'revert-buffer-function)))
693 ;; Call our caller again, but this time it does the default thing.
694 (if (revert-buffer arg noconfirm)
695 ;; If the user said "yes", and we changed something,
696 ;; reparse the messages.
697 (progn
698 (rmail-convert-file)
699 (goto-char (point-max))
700 (rmail-mode)))))
701
702 ;; Return a list of files from this buffer's Mail: option.
703 ;; Does not assume that messages have been parsed.
704 ;; Just returns nil if buffer does not look like Babyl format.
705 (defun rmail-parse-file-inboxes ()
706 (save-excursion
707 (save-restriction
708 (widen)
709 (goto-char 1)
710 (cond ((looking-at "BABYL OPTIONS:")
711 (search-forward "\n\^_" nil 'move)
712 (narrow-to-region 1 (point))
713 (goto-char 1)
714 (if (search-forward "\nMail:" nil t)
715 (progn
716 (narrow-to-region (point) (progn (end-of-line) (point)))
717 (goto-char (point-min))
718 (mail-parse-comma-list))))))))
719
720 (defun rmail-expunge-and-save ()
721 "Expunge and save RMAIL file."
722 (interactive)
723 (rmail-expunge)
724 (save-buffer)
725 (if (rmail-summary-exists)
726 (rmail-select-summary (set-buffer-modified-p nil))))
727
728 (defun rmail-quit ()
729 "Quit out of RMAIL."
730 (interactive)
731 (rmail-expunge-and-save)
732 ;; Don't switch to the summary buffer even if it was recently visible.
733 (if rmail-summary-buffer
734 (progn
735 (replace-buffer-in-windows rmail-summary-buffer)
736 (bury-buffer rmail-summary-buffer)))
737 (let ((obuf (current-buffer)))
738 (replace-buffer-in-windows obuf)
739 (bury-buffer obuf)))
740
741 (defun rmail-bury ()
742 "Bury current Rmail buffer and its summary buffer."
743 (interactive)
744 ;; This let var was called rmail-buffer, but that interfered
745 ;; with the buffer-local var used in summary buffers.
746 (let ((buffer-to-bury (current-buffer)))
747 (if (rmail-summary-exists)
748 (let (window)
749 (while (setq window (get-buffer-window rmail-summary-buffer))
750 (set-window-buffer window (other-buffer rmail-summary-buffer)))
751 (bury-buffer rmail-summary-buffer)))
752 (switch-to-buffer (other-buffer (current-buffer)))
753 (bury-buffer buffer-to-bury)))
754
755 (defun rmail-duplicate-message ()
756 "Create a duplicated copy of the current message.
757 The duplicate copy goes into the Rmail file just after the
758 original copy."
759 (interactive)
760 (widen)
761 (let ((buffer-read-only nil)
762 (number rmail-current-message)
763 (string (buffer-substring (rmail-msgbeg rmail-current-message)
764 (rmail-msgend rmail-current-message))))
765 (goto-char (rmail-msgend rmail-current-message))
766 (insert string)
767 (rmail-forget-messages)
768 (rmail-show-message number)
769 (message "Message duplicated")))
770
771 ;;;###autoload
772 (defun rmail-input (filename)
773 "Run Rmail on file FILENAME."
774 (interactive "FRun rmail on RMAIL file: ")
775 (rmail filename))
776
777 ;; Return a list of file names for all files in or under START
778 ;; whose names match rmail-secondary-file-regexp.
779 ;; This includes START itself, if that name matches.
780 ;; But normally START is a directory.
781 (defun rmail-find-all-files (start)
782 (if (file-accessible-directory-p start)
783 ;; Don't sort here.
784 (let ((files (directory-files start t
785 rmail-secondary-file-regexp t))
786 (ret nil)
787 file)
788 (while files
789 (setq file (car files))
790 (setq files (cdr files))
791 (or (member (file-name-nondirectory start) '("." ".."))
792 (setq ret (nconc
793 (rmail-find-all-files file)
794 ret))))
795 ;; Sort here instead of in directory-files
796 ;; because this list is usually much shorter.
797 (sort ret 'string<))
798 (let ((case-fold-search nil))
799 (if (string-match rmail-secondary-file-regexp start)
800 (list (file-name-nondirectory start))))))
801
802 (defun rmail-list-to-menu (menu-name l action &optional full-name)
803 (let ((menu (make-sparse-keymap menu-name)))
804 (mapcar
805 (function (lambda (item)
806 (let (command)
807 (if (consp item)
808 (progn
809 (setq command
810 (rmail-list-to-menu (car item) (cdr item)
811 action
812 (if full-name
813 (concat full-name "/"
814 (car item))
815 (car item))))
816 (setq name (car item)))
817 (progn
818 (setq name item)
819 (setq command
820 (list 'lambda () '(interactive)
821 (list action
822 (expand-file-name
823 (if full-name
824 (concat full-name "/" item)
825 item)
826 rmail-secondary-file-directory))))))
827 (define-key menu (vector (intern name))
828 (cons name command)))))
829 (reverse l))
830 menu))
831
832 ;; This command is always "disabled" when it appears in a menu.
833 (put 'rmail-disable-menu 'menu-enable ''nil)
834
835 (defun rmail-construct-io-menu ()
836 (let ((files (rmail-find-all-files rmail-secondary-file-directory)))
837 (if files
838 (progn
839 (define-key rmail-mode-map [menu-bar classify input-menu]
840 (cons "Input Rmail File"
841 (rmail-list-to-menu "Input Rmail File"
842 files
843 'rmail-input)))
844 (define-key rmail-mode-map [menu-bar classify output-menu]
845 (cons "Output Rmail File"
846 (rmail-list-to-menu "Output Rmail File"
847 files
848 'rmail-output-to-rmail-file))))
849
850 (define-key rmail-mode-map [menu-bar classify input-menu]
851 '("Input Rmail File" . rmail-disable-menu))
852 (define-key rmail-mode-map [menu-bar classify output-menu]
853 '("Output Rmail File" . rmail-disable-menu)))))
854
855 \f
856 ;;;; *** Rmail input ***
857
858 ;; RLK feature not added in this version:
859 ;; argument specifies inbox file or files in various ways.
860
861 (defun rmail-get-new-mail (&optional file-name)
862 "Move any new mail from this RMAIL file's inbox files.
863 The inbox files can be specified with the file's Mail: option. The
864 variable `rmail-primary-inbox-list' specifies the inboxes for your
865 primary RMAIL file if it has no Mail: option. By default, this is
866 your /usr/spool/mail/$USER.
867
868 You can also specify the file to get new mail from. In this case, the
869 file of new mail is not changed or deleted. Noninteractively, you can
870 pass the inbox file name as an argument. Interactively, a prefix
871 argument causes us to read a file name and use that file as the inbox.
872
873 This function runs `rmail-get-new-mail-hook' before saving the updated file.
874 It returns t if it got any new messages."
875 (interactive
876 (list (if current-prefix-arg
877 (read-file-name "Get new mail from file: "))))
878 ;; If the disk file has been changed from under us,
879 ;; revert to it before we get new mail.
880 (or (verify-visited-file-modtime (current-buffer))
881 (find-file (buffer-file-name)))
882 (rmail-maybe-set-message-counters)
883 (widen)
884 ;; Get rid of all undo records for this buffer.
885 (or (eq buffer-undo-list t)
886 (setq buffer-undo-list nil))
887 (unwind-protect
888 (let ((opoint (point))
889 (new-messages 0)
890 (delete-files ())
891 ;; If buffer has not changed yet, and has not been saved yet,
892 ;; don't replace the old backup file now.
893 (make-backup-files (and make-backup-files (buffer-modified-p)))
894 (buffer-read-only nil)
895 ;; Don't make undo records for what we do in getting mail.
896 (buffer-undo-list t))
897 (goto-char (point-max))
898 (skip-chars-backward " \t\n") ; just in case of brain damage
899 (delete-region (point) (point-max)) ; caused by require-final-newline
900 (save-excursion
901 (save-restriction
902 (narrow-to-region (point) (point))
903 ;; Read in the contents of the inbox files,
904 ;; renaming them as necessary,
905 ;; and adding to the list of files to delete eventually.
906 (if file-name
907 (rmail-insert-inbox-text (list file-name) nil)
908 (setq delete-files (rmail-insert-inbox-text rmail-inbox-list t)))
909 ;; Scan the new text and convert each message to babyl format.
910 (goto-char (point-min))
911 (save-excursion
912 (setq new-messages (rmail-convert-to-babyl-format)))
913 (or (zerop new-messages)
914 (let (success)
915 (widen)
916 (search-backward "\n\^_" nil t)
917 (narrow-to-region (point) (point-max))
918 (goto-char (1+ (point-min)))
919 (rmail-count-new-messages)
920 (run-hooks 'rmail-get-new-mail-hook)
921 (save-buffer)))
922 ;; Delete the old files, now that babyl file is saved.
923 (while delete-files
924 (condition-case ()
925 ;; First, try deleting.
926 (condition-case ()
927 (delete-file (car delete-files))
928 (file-error
929 ;; If we can't delete it, truncate it.
930 (write-region (point) (point) (car delete-files))))
931 (file-error nil))
932 (setq delete-files (cdr delete-files)))))
933 (if (= new-messages 0)
934 (progn (goto-char opoint)
935 (if (or file-name rmail-inbox-list)
936 (message "(No new mail has arrived)"))
937 nil)
938 (if (rmail-summary-exists)
939 (rmail-select-summary
940 (rmail-update-summary)))
941 (message "%d new message%s read"
942 new-messages (if (= 1 new-messages) "" "s"))
943 ;; Move to the first new message
944 ;; unless we have other unseen messages before it.
945 (rmail-show-message (rmail-first-unseen-message))
946 (run-hooks 'rmail-after-get-new-mail-hook)
947 t))
948 ;; Don't leave the buffer screwed up if we get a disk-full error.
949 (rmail-show-message)))
950
951 (defun rmail-insert-inbox-text (files renamep)
952 (let (file tofile delete-files movemail popmail)
953 (while files
954 (setq file (file-truename
955 (expand-file-name (substitute-in-file-name (car files))))
956 tofile (expand-file-name
957 ;; Generate name to move to from inbox name,
958 ;; in case of multiple inboxes that need moving.
959 (concat ".newmail-" (file-name-nondirectory file))
960 ;; Use the directory of this rmail file
961 ;; because it's a nuisance to use the homedir
962 ;; if that is on a full disk and this rmail
963 ;; file isn't.
964 (file-name-directory
965 (expand-file-name buffer-file-name))))
966 ;; Always use movemail to rename the file,
967 ;; since there can be mailboxes in various directories.
968 (setq movemail t)
969 ;;; ;; If getting from mail spool directory,
970 ;;; ;; use movemail to move rather than just renaming,
971 ;;; ;; so as to interlock with the mailer.
972 ;;; (setq movemail (string= file
973 ;;; (file-truename
974 ;;; (concat rmail-spool-directory
975 ;;; (file-name-nondirectory file)))))
976 (setq popmail (string-match "^po:" (file-name-nondirectory file)))
977 (if popmail (setq file (file-name-nondirectory file)
978 renamep t))
979 (if movemail
980 (progn
981 ;; On some systems, /usr/spool/mail/foo is a directory
982 ;; and the actual inbox is /usr/spool/mail/foo/foo.
983 (if (file-directory-p file)
984 (setq file (expand-file-name (user-login-name)
985 file)))))
986 (cond (popmail
987 (message "Getting mail from post office ..."))
988 ((and (file-exists-p tofile)
989 (/= 0 (nth 7 (file-attributes tofile))))
990 (message "Getting mail from %s..." tofile))
991 ((and (file-exists-p file)
992 (/= 0 (nth 7 (file-attributes file))))
993 (message "Getting mail from %s..." file)))
994 ;; Set TOFILE if have not already done so, and
995 ;; rename or copy the file FILE to TOFILE if and as appropriate.
996 (cond ((not renamep)
997 (setq tofile file))
998 ((or (file-exists-p tofile) (and (not popmail)
999 (not (file-exists-p file))))
1000 nil)
1001 ((and (not movemail) (not popmail))
1002 ;; Try copying. If that fails (perhaps no space),
1003 ;; rename instead.
1004 (condition-case nil
1005 (copy-file file tofile nil)
1006 (error
1007 ;; Third arg is t so we can replace existing file TOFILE.
1008 (rename-file file tofile t)))
1009 ;; Make the real inbox file empty.
1010 ;; Leaving it deleted could cause lossage
1011 ;; because mailers often won't create the file.
1012 (condition-case ()
1013 (write-region (point) (point) file)
1014 (file-error nil)))
1015 (t
1016 (let ((errors nil))
1017 (unwind-protect
1018 (save-excursion
1019 (setq errors (generate-new-buffer " *rmail loss*"))
1020 (buffer-disable-undo errors)
1021 (call-process
1022 (or rmail-movemail-program
1023 (expand-file-name "movemail" exec-directory))
1024 nil errors nil file tofile)
1025 (if (not (buffer-modified-p errors))
1026 ;; No output => movemail won
1027 nil
1028 (set-buffer errors)
1029 (subst-char-in-region (point-min) (point-max)
1030 ?\n ?\ )
1031 (goto-char (point-max))
1032 (skip-chars-backward " \t")
1033 (delete-region (point) (point-max))
1034 (goto-char (point-min))
1035 (if (looking-at "movemail: ")
1036 (delete-region (point-min) (match-end 0)))
1037 (beep t)
1038 (message "movemail: %s"
1039 (buffer-substring (point-min)
1040 (point-max)))
1041 (sit-for 3)
1042 nil))
1043 (if errors (kill-buffer errors))))))
1044 ;; At this point, TOFILE contains the name to read:
1045 ;; Either the alternate name (if we renamed)
1046 ;; or the actual inbox (if not renaming).
1047 (if (file-exists-p tofile)
1048 (let (size)
1049 (goto-char (point-max))
1050 (setq size (nth 1 (insert-file-contents tofile)))
1051 (goto-char (point-max))
1052 (or (= (preceding-char) ?\n)
1053 (zerop size)
1054 (insert ?\n))
1055 (setq delete-files (cons tofile delete-files))))
1056 (message "")
1057 (setq files (cdr files)))
1058 delete-files))
1059
1060 ;; the rmail-break-forwarded-messages feature is not implemented
1061 (defun rmail-convert-to-babyl-format ()
1062 (let ((count 0) start
1063 (case-fold-search nil)
1064 (invalid-input-resync
1065 (function (lambda ()
1066 (message "Invalid Babyl format in inbox!")
1067 (sit-for 1)
1068 ;; Try to get back in sync with a real message.
1069 (if (re-search-forward
1070 (concat mmdf-delim1 "\\|^From") nil t)
1071 (beginning-of-line)
1072 (goto-char (point-max)))))))
1073 (goto-char (point-min))
1074 (save-restriction
1075 (while (not (eobp))
1076 (cond ((looking-at "BABYL OPTIONS:");Babyl header
1077 (if (search-forward "\n\^_" nil t)
1078 ;; If we find the proper terminator, delete through there.
1079 (delete-region (point-min) (point))
1080 (funcall invalid-input-resync)
1081 (delete-region (point-min) (point))))
1082 ;; Babyl format message
1083 ((looking-at "\^L")
1084 (or (search-forward "\n\^_" nil t)
1085 (funcall invalid-input-resync))
1086 (setq count (1+ count))
1087 ;; Make sure there is no extra white space after the ^_
1088 ;; at the end of the message.
1089 ;; Narrowing will make sure that whatever follows the junk
1090 ;; will be treated properly.
1091 (delete-region (point)
1092 (save-excursion
1093 (skip-chars-forward " \t\n")
1094 (point)))
1095 (narrow-to-region (point) (point-max)))
1096 ;;*** MMDF format
1097 ((let ((case-fold-search t))
1098 (looking-at mmdf-delim1))
1099 (let ((case-fold-search t))
1100 (replace-match "\^L\n0, unseen,,\n*** EOOH ***\n")
1101 (setq start (point))
1102 (re-search-forward mmdf-delim2 nil t)
1103 (replace-match "\^_"))
1104 (save-excursion
1105 (save-restriction
1106 (narrow-to-region start (1- (point)))
1107 (goto-char (point-min))
1108 (while (search-forward "\n\^_" nil t); single char "\^_"
1109 (replace-match "\n^_")))); 2 chars: "^" and "_"
1110 (narrow-to-region (point) (point-max))
1111 (setq count (1+ count)))
1112 ;;*** Mail format
1113 ((looking-at "^From ")
1114 (setq start (point))
1115 (insert "\^L\n0, unseen,,\n*** EOOH ***\n")
1116 (rmail-nuke-pinhead-header)
1117 ;; If this message has a Content-Length field,
1118 ;; skip to the end of the contents.
1119 (let* ((header-end (save-excursion
1120 (and (re-search-forward "\n\n" nil t)
1121 (1- (point)))))
1122 (case-fold-search t)
1123 (size
1124 ;; Get the numeric value from the Content-Length field.
1125 (save-excursion
1126 ;; Back up to end of prev line,
1127 ;; in case the Content-Length field comes first.
1128 (forward-char -1)
1129 (and (search-forward "\ncontent-length: "
1130 header-end t)
1131 (let ((beg (point))
1132 (eol (progn (end-of-line) (point))))
1133 (string-to-int (buffer-substring beg eol)))))))
1134 (and size
1135 (if (and (natnump size)
1136 (<= (+ header-end size) (point-max))
1137 ;; Make sure this would put us at a position
1138 ;; that we could continue from.
1139 (save-excursion
1140 (goto-char (+ header-end size))
1141 (skip-chars-forward "\n")
1142 (or (eobp)
1143 (and (looking-at "BABYL OPTIONS:")
1144 (search-forward "\n\^_" nil t))
1145 (and (looking-at "\^L")
1146 (search-forward "\n\^_" nil t))
1147 (let ((case-fold-search t))
1148 (looking-at mmdf-delim1))
1149 (looking-at "From "))))
1150 (goto-char (+ header-end size))
1151 (message "Ignoring invalid Content-Length field")
1152 (sit-for 1 0 t))))
1153
1154 (if (re-search-forward
1155 (concat "^[\^_]?\\("
1156 rmail-unix-mail-delimiter
1157 "\\|"
1158 mmdf-delim1 "\\|"
1159 "^BABYL OPTIONS:\\|"
1160 "\^L\n[01],\\)") nil t)
1161 (goto-char (match-beginning 1))
1162 (goto-char (point-max)))
1163 (setq count (1+ count))
1164 (save-excursion
1165 (save-restriction
1166 (narrow-to-region start (point))
1167 (goto-char (point-min))
1168 (while (search-forward "\n\^_" nil t); single char
1169 (replace-match "\n^_")))); 2 chars: "^" and "_"
1170 (insert ?\^_)
1171 (narrow-to-region (point) (point-max)))
1172 ;;
1173 ;; This kludge is because some versions of sendmail.el
1174 ;; insert an extra newline at the beginning that shouldn't
1175 ;; be there. sendmail.el has been fixed, but old versions
1176 ;; may still be in use. -- rms, 7 May 1993.
1177 ((eolp) (delete-char 1))
1178 (t (error "Cannot convert to babyl format")))))
1179 count))
1180
1181 ;; Delete the "From ..." line, creating various other headers with
1182 ;; information from it if they don't already exist. Now puts the
1183 ;; original line into a mail-from: header line for debugging and for
1184 ;; use by the rmail-output function.
1185 (defun rmail-nuke-pinhead-header ()
1186 (save-excursion
1187 (save-restriction
1188 (let ((start (point))
1189 (end (progn
1190 (condition-case ()
1191 (search-forward "\n\n")
1192 (error
1193 (goto-char (point-max))
1194 (insert "\n\n")))
1195 (point)))
1196 has-from has-date)
1197 (narrow-to-region start end)
1198 (let ((case-fold-search t))
1199 (goto-char start)
1200 (setq has-from (search-forward "\nFrom:" nil t))
1201 (goto-char start)
1202 (setq has-date (and (search-forward "\nDate:" nil t) (point)))
1203 (goto-char start))
1204 (let ((case-fold-search nil))
1205 (if (re-search-forward (concat "^" rmail-unix-mail-delimiter) nil t)
1206 (replace-match
1207 (concat
1208 "Mail-from: \\&"
1209 ;; Keep and reformat the date if we don't
1210 ;; have a Date: field.
1211 (if has-date
1212 ""
1213 (concat
1214 "Date: \\3, \\5 \\4 \\9 \\6 "
1215
1216 ;; The timezone could be matched by group 7 or group 10.
1217 ;; If neither of them matched, assume EST, since only
1218 ;; Easterners would be so sloppy.
1219 ;; It's a shame the substitution can't use "\\10".
1220 (cond
1221 ((/= (match-beginning 7) (match-end 7)) "\\7")
1222 ((/= (match-beginning 10) (match-end 10))
1223 (buffer-substring (match-beginning 10)
1224 (match-end 10)))
1225 (t "EST"))
1226 "\n"))
1227 ;; Keep and reformat the sender if we don't
1228 ;; have a From: field.
1229 (if has-from
1230 ""
1231 "From: \\1\n"))
1232 t)))))))
1233 \f
1234 ;;;; *** Rmail Message Formatting and Header Manipulation ***
1235
1236 (defun rmail-reformat-message (beg end)
1237 (goto-char beg)
1238 (forward-line 1)
1239 (if (/= (following-char) ?0)
1240 (error "Bad format in RMAIL file."))
1241 (let ((buffer-read-only nil)
1242 (delta (- (buffer-size) end)))
1243 (delete-char 1)
1244 (insert ?1)
1245 (forward-line 1)
1246 (let ((case-fold-search t))
1247 (while (looking-at "Summary-line:\\|Mail-From:")
1248 (forward-line 1)))
1249 (if (looking-at "\\*\\*\\* EOOH \\*\\*\\*\n")
1250 (delete-region (point)
1251 (progn (forward-line 1) (point))))
1252 (let ((str (buffer-substring (point)
1253 (save-excursion (search-forward "\n\n" end 'move)
1254 (point)))))
1255 (insert str "*** EOOH ***\n")
1256 (narrow-to-region (point) (- (buffer-size) delta)))
1257 (goto-char (point-min))
1258 (if rmail-message-filter (funcall rmail-message-filter))
1259 (if (or rmail-displayed-headers rmail-ignored-headers)
1260 (rmail-clear-headers))))
1261
1262 (defun rmail-clear-headers (&optional ignored-headers)
1263 "Delete all header fields that Rmail should not show.
1264 If the optional argument IGNORED-HEADERS is non-nil,
1265 delete all header fields whose names match that regexp.
1266 Otherwise, if `rmail-displayed-headers' is non-nil,
1267 delete all header fields *except* those whose names match that regexp.
1268 Otherwise, delete all header fields whose names match `rmail-ignored-headers'."
1269 (if (search-forward "\n\n" nil t)
1270 (let ((case-fold-search t)
1271 (buffer-read-only nil))
1272 (if (and rmail-displayed-headers (null ignored-headers))
1273 (save-restriction
1274 (narrow-to-region (point-min) (point))
1275 (let (lim)
1276 (goto-char (point-min))
1277 (while (save-excursion
1278 (re-search-forward "\n[^ \t]")
1279 (and (not (eobp))
1280 (setq lim (1- (point)))))
1281 (if (save-excursion
1282 (re-search-forward rmail-displayed-headers lim t))
1283 (goto-char lim)
1284 (delete-region (point) lim))))
1285 (goto-char (point-min)))
1286 (or ignored-headers (setq ignored-headers rmail-ignored-headers))
1287 (save-restriction
1288 (narrow-to-region (point-min) (point))
1289 (while (progn
1290 (goto-char (point-min))
1291 (re-search-forward ignored-headers nil t))
1292 (beginning-of-line)
1293 (delete-region (point)
1294 (progn (re-search-forward "\n[^ \t]")
1295 (1- (point))))))))))
1296
1297 (defun rmail-toggle-header ()
1298 "Show original message header if pruned header currently shown, or vice versa."
1299 (interactive)
1300 (rmail-maybe-set-message-counters)
1301 (narrow-to-region (rmail-msgbeg rmail-current-message) (point-max))
1302 (let ((buffer-read-only nil))
1303 (goto-char (point-min))
1304 (forward-line 1)
1305 (if (= (following-char) ?1)
1306 (progn (delete-char 1)
1307 (insert ?0)
1308 (forward-line 1)
1309 (let ((case-fold-search t))
1310 (while (looking-at "Summary-Line:\\|Mail-From:")
1311 (forward-line 1)))
1312 (insert "*** EOOH ***\n")
1313 (forward-char -1)
1314 (search-forward "\n*** EOOH ***\n")
1315 (forward-line -1)
1316 (let ((temp (point)))
1317 (and (search-forward "\n\n" nil t)
1318 (delete-region temp (point))))
1319 (goto-char (point-min))
1320 (search-forward "\n*** EOOH ***\n")
1321 (narrow-to-region (point) (point-max)))
1322 (rmail-reformat-message (point-min) (point-max))))
1323 (rmail-highlight-headers))
1324 \f
1325 ;;;; *** Rmail Attributes and Keywords ***
1326
1327 ;; Make a string describing current message's attributes and keywords
1328 ;; and set it up as the name of a minor mode
1329 ;; so it will appear in the mode line.
1330 (defun rmail-display-labels ()
1331 (let ((blurb "") (beg (point-min-marker)) (end (point-max-marker)))
1332 (save-excursion
1333 (unwind-protect
1334 (progn
1335 (widen)
1336 (goto-char (rmail-msgbeg rmail-current-message))
1337 (forward-line 1)
1338 (if (looking-at "[01],")
1339 (progn
1340 (narrow-to-region (point) (progn (end-of-line) (point)))
1341 ;; Truly valid BABYL format requires a space before each
1342 ;; attribute or keyword name. Put them in if missing.
1343 (let (buffer-read-only)
1344 (goto-char (point-min))
1345 (while (search-forward "," nil t)
1346 (or (looking-at "[ ,]") (eobp)
1347 (insert " "))))
1348 (goto-char (point-max))
1349 (if (search-backward ",," nil 'move)
1350 (progn
1351 (if (> (point) (1+ (point-min)))
1352 (setq blurb (buffer-substring (+ 1 (point-min)) (point))))
1353 (if (> (- (point-max) (point)) 2)
1354 (setq blurb
1355 (concat blurb
1356 ";"
1357 (buffer-substring (+ (point) 3)
1358 (1- (point-max)))))))))))
1359 ;; Note: we don't use save-restriction because that does not work right
1360 ;; if changes are made outside the saved restriction
1361 ;; before that restriction is restored.
1362 (narrow-to-region beg end)
1363 (set-marker beg nil)
1364 (set-marker end nil)))
1365 (while (string-match " +," blurb)
1366 (setq blurb (concat (substring blurb 0 (match-beginning 0)) ","
1367 (substring blurb (match-end 0)))))
1368 (while (string-match ", +" blurb)
1369 (setq blurb (concat (substring blurb 0 (match-beginning 0)) ","
1370 (substring blurb (match-end 0)))))
1371 (setq mode-line-process
1372 (format " %d/%d%s"
1373 rmail-current-message rmail-total-messages blurb))))
1374
1375 ;; Turn an attribute of a message on or off according to STATE.
1376 ;; ATTR is the name of the attribute, as a string.
1377 ;; MSGNUM is message number to change; nil means current message.
1378 (defun rmail-set-attribute (attr state &optional msgnum)
1379 (let ((omax (point-max-marker))
1380 (omin (point-min-marker))
1381 (buffer-read-only nil))
1382 (or msgnum (setq msgnum rmail-current-message))
1383 (if (> msgnum 0)
1384 (unwind-protect
1385 (save-excursion
1386 (widen)
1387 (goto-char (+ 3 (rmail-msgbeg msgnum)))
1388 (let ((curstate
1389 (not
1390 (null (search-backward (concat ", " attr ",")
1391 (prog1 (point) (end-of-line)) t)))))
1392 (or (eq curstate (not (not state)))
1393 (if curstate
1394 (delete-region (point) (1- (match-end 0)))
1395 (beginning-of-line)
1396 (forward-char 2)
1397 (insert " " attr ","))))
1398 (if (string= attr "deleted")
1399 (rmail-set-message-deleted-p msgnum state)))
1400 ;; Note: we don't use save-restriction because that does not work right
1401 ;; if changes are made outside the saved restriction
1402 ;; before that restriction is restored.
1403 (narrow-to-region omin omax)
1404 (set-marker omin nil)
1405 (set-marker omax nil)
1406 (if (= msgnum rmail-current-message)
1407 (rmail-display-labels))))))
1408
1409 ;; Return t if the attributes/keywords line of msg number MSG
1410 ;; contains a match for the regexp LABELS.
1411 (defun rmail-message-labels-p (msg labels)
1412 (save-excursion
1413 (save-restriction
1414 (widen)
1415 (goto-char (rmail-msgbeg msg))
1416 (forward-char 3)
1417 (re-search-backward labels (prog1 (point) (end-of-line)) t))))
1418 \f
1419 ;;;; *** Rmail Message Selection And Support ***
1420
1421 (defun rmail-msgend (n)
1422 (marker-position (aref rmail-message-vector (1+ n))))
1423
1424 (defun rmail-msgbeg (n)
1425 (marker-position (aref rmail-message-vector n)))
1426
1427 (defun rmail-widen-to-current-msgbeg (function)
1428 "Call FUNCTION with point at start of internal data of current message.
1429 Assumes that bounds were previously narrowed to display the message in Rmail.
1430 The bounds are widened enough to move point where desired, then narrowed
1431 again afterward.
1432
1433 FUNCTION may not change the visible text of the message, but it may
1434 change the invisible header text."
1435 (save-excursion
1436 (let ((obeg (- (point-max) (point-min))))
1437 (unwind-protect
1438 (progn
1439 (narrow-to-region (rmail-msgbeg rmail-current-message)
1440 (point-max))
1441 (goto-char (point-min))
1442 (funcall function))
1443 ;; Note: we don't use save-restriction because that does not work right
1444 ;; if changes are made outside the saved restriction
1445 ;; before that restriction is restored.
1446 ;; Here we assume that changes made by FUNCTION
1447 ;; occur before the visible region of the message.
1448 (narrow-to-region (- (point-max) obeg) (point-max))))))
1449
1450 (defun rmail-forget-messages ()
1451 (unwind-protect
1452 (if (vectorp rmail-message-vector)
1453 (let* ((i 0)
1454 (v rmail-message-vector)
1455 (n (length v)))
1456 (while (< i n)
1457 (move-marker (aref v i) nil)
1458 (setq i (1+ i)))))
1459 (setq rmail-message-vector nil)
1460 (setq rmail-deleted-vector nil)))
1461
1462 (defun rmail-maybe-set-message-counters ()
1463 (if (not (and rmail-deleted-vector
1464 rmail-message-vector
1465 rmail-current-message
1466 rmail-total-messages))
1467 (rmail-set-message-counters)))
1468
1469 (defun rmail-count-new-messages (&optional nomsg)
1470 (let* ((case-fold-search nil)
1471 (total-messages 0)
1472 (messages-head nil)
1473 (deleted-head nil))
1474 (or nomsg (message "Counting new messages..."))
1475 (goto-char (point-max))
1476 ;; Put at the end of messages-head
1477 ;; the entry for message N+1, which marks
1478 ;; the end of message N. (N = number of messages).
1479 (search-backward "\n\^_")
1480 (forward-char 1)
1481 (setq messages-head (list (point-marker)))
1482 (rmail-set-message-counters-counter (point-min))
1483 (setq rmail-current-message (1+ rmail-total-messages))
1484 (setq rmail-total-messages
1485 (+ rmail-total-messages total-messages))
1486 (setq rmail-message-vector
1487 (vconcat rmail-message-vector (cdr messages-head)))
1488 (aset rmail-message-vector
1489 rmail-current-message (car messages-head))
1490 (setq rmail-deleted-vector
1491 (concat rmail-deleted-vector deleted-head))
1492 (setq rmail-summary-vector
1493 (vconcat rmail-summary-vector (make-vector total-messages nil)))
1494 (goto-char (point-min))
1495 (or nomsg (message "Counting new messages...done (%d)" total-messages))))
1496
1497 (defun rmail-set-message-counters ()
1498 (rmail-forget-messages)
1499 (save-excursion
1500 (save-restriction
1501 (widen)
1502 (let* ((point-save (point))
1503 (total-messages 0)
1504 (messages-after-point)
1505 (case-fold-search nil)
1506 (messages-head nil)
1507 (deleted-head nil))
1508 (message "Counting messages...")
1509 (goto-char (point-max))
1510 ;; Put at the end of messages-head
1511 ;; the entry for message N+1, which marks
1512 ;; the end of message N. (N = number of messages).
1513 (search-backward "\n\^_" nil t)
1514 (if (/= (point) (point-max)) (forward-char 1))
1515 (setq messages-head (list (point-marker)))
1516 (rmail-set-message-counters-counter (min (point) point-save))
1517 (setq messages-after-point total-messages)
1518 (rmail-set-message-counters-counter)
1519 (setq rmail-total-messages total-messages)
1520 (setq rmail-current-message
1521 (min total-messages
1522 (max 1 (- total-messages messages-after-point))))
1523 (setq rmail-message-vector
1524 (apply 'vector (cons (point-min-marker) messages-head))
1525 rmail-deleted-vector (concat "D" deleted-head)
1526 rmail-summary-vector (make-vector rmail-total-messages nil))
1527 (message "Counting messages...done")))))
1528
1529 (defun rmail-set-message-counters-counter (&optional stop)
1530 (while (search-backward "\n\^_\^L\n" stop t)
1531 (forward-char 1)
1532 (setq messages-head (cons (point-marker) messages-head))
1533 (save-excursion
1534 (setq deleted-head
1535 (cons (if (search-backward ", deleted,"
1536 (prog1 (point)
1537 (forward-line 2))
1538 t)
1539 ?D ?\ )
1540 deleted-head)))
1541 (if (zerop (% (setq total-messages (1+ total-messages)) 20))
1542 (message "Counting messages...%d" total-messages))))
1543
1544 (defun rmail-beginning-of-message ()
1545 "Show current message starting from the beginning."
1546 (interactive)
1547 (rmail-show-message rmail-current-message))
1548
1549 (defun rmail-show-message (&optional n no-summary)
1550 "Show message number N (prefix argument), counting from start of file.
1551 If summary buffer is currently displayed, update current message there also."
1552 (interactive "p")
1553 (rmail-maybe-set-message-counters)
1554 (widen)
1555 (if (zerop rmail-total-messages)
1556 (progn (narrow-to-region (point-min) (1- (point-max)))
1557 (goto-char (point-min))
1558 (setq mode-line-process nil))
1559 (let (blurb)
1560 (if (not n)
1561 (setq n rmail-current-message)
1562 (cond ((<= n 0)
1563 (setq n 1
1564 rmail-current-message 1
1565 blurb "No previous message"))
1566 ((> n rmail-total-messages)
1567 (setq n rmail-total-messages
1568 rmail-current-message rmail-total-messages
1569 blurb "No following message"))
1570 (t
1571 (setq rmail-current-message n))))
1572 (let ((beg (rmail-msgbeg n))
1573 (end (rmail-msgend n)))
1574 (goto-char beg)
1575 (forward-line 1)
1576 (if (= (following-char) ?0)
1577 (progn
1578 (rmail-reformat-message beg end)
1579 (rmail-set-attribute "unseen" nil))
1580 (search-forward "\n*** EOOH ***\n" end t)
1581 (narrow-to-region (point) end))
1582 (goto-char (point-min))
1583 (rmail-display-labels)
1584 (rmail-highlight-headers)
1585 (if transient-mark-mode (deactivate-mark))
1586 (run-hooks 'rmail-show-message-hook)
1587 ;; If there is a summary buffer, try to move to this message
1588 ;; in that buffer. But don't complain if this message
1589 ;; is not mentioned in the summary.
1590 ;; Don't do this at all if we were called on behalf
1591 ;; of cursor motion in the summary buffer.
1592 (and (rmail-summary-exists) (not no-summary)
1593 (let ((curr-msg rmail-current-message))
1594 (rmail-select-summary
1595 (rmail-summary-goto-msg curr-msg t t))))
1596 (if blurb
1597 (message blurb))))))
1598
1599 ;; Find all occurrences of certain fields, and highlight them.
1600 (defun rmail-highlight-headers ()
1601 ;; Do this only if the system supports faces.
1602 (if (and (fboundp 'internal-find-face)
1603 rmail-highlighted-headers)
1604 (save-excursion
1605 (search-forward "\n\n" nil 'move)
1606 (save-restriction
1607 (narrow-to-region (point-min) (point))
1608 (let ((case-fold-search t)
1609 (inhibit-read-only t)
1610 ;; Highlight with boldface if that is available.
1611 ;; Otherwise use the `highlight' face.
1612 (face (or rmail-highlight-face
1613 (if (face-differs-from-default-p 'bold)
1614 'bold 'highlight)))
1615 ;; List of overlays to reuse.
1616 (overlays rmail-overlay-list))
1617 (goto-char (point-min))
1618 (while (re-search-forward rmail-highlighted-headers nil t)
1619 (skip-chars-forward " \t")
1620 (let ((beg (point))
1621 overlay)
1622 (while (progn (forward-line 1)
1623 (looking-at "[ \t]")))
1624 ;; Back up over newline, then trailing spaces or tabs
1625 (forward-char -1)
1626 (while (member (preceding-char) '(? ?\t))
1627 (forward-char -1))
1628 (if overlays
1629 ;; Reuse an overlay we already have.
1630 (progn
1631 (setq overlay (car overlays)
1632 overlays (cdr overlays))
1633 (overlay-put overlay 'face face)
1634 (move-overlay overlay beg (point)))
1635 ;; Make a new overlay and add it to
1636 ;; rmail-overlay-list.
1637 (setq overlay (make-overlay beg (point)))
1638 (overlay-put overlay 'face face)
1639 (setq rmail-overlay-list
1640 (cons overlay rmail-overlay-list))))))))))
1641
1642 (defun rmail-next-message (n)
1643 "Show following message whether deleted or not.
1644 With prefix arg N, moves forward N messages, or backward if N is negative."
1645 (interactive "p")
1646 (rmail-maybe-set-message-counters)
1647 (rmail-show-message (+ rmail-current-message n)))
1648
1649 (defun rmail-previous-message (n)
1650 "Show previous message whether deleted or not.
1651 With prefix arg N, moves backward N messages, or forward if N is negative."
1652 (interactive "p")
1653 (rmail-next-message (- n)))
1654
1655 (defun rmail-next-undeleted-message (n)
1656 "Show following non-deleted message.
1657 With prefix arg N, moves forward N non-deleted messages,
1658 or backward if N is negative.
1659
1660 Returns t if a new message is being shown, nil otherwise."
1661 (interactive "p")
1662 (rmail-maybe-set-message-counters)
1663 (let ((lastwin rmail-current-message)
1664 (current rmail-current-message))
1665 (while (and (> n 0) (< current rmail-total-messages))
1666 (setq current (1+ current))
1667 (if (not (rmail-message-deleted-p current))
1668 (setq lastwin current n (1- n))))
1669 (while (and (< n 0) (> current 1))
1670 (setq current (1- current))
1671 (if (not (rmail-message-deleted-p current))
1672 (setq lastwin current n (1+ n))))
1673 (if (/= lastwin rmail-current-message)
1674 (progn (rmail-show-message lastwin)
1675 t)
1676 (if (< n 0)
1677 (message "No previous nondeleted message"))
1678 (if (> n 0)
1679 (message "No following nondeleted message"))
1680 nil)))
1681
1682 (defun rmail-previous-undeleted-message (n)
1683 "Show previous non-deleted message.
1684 With prefix argument N, moves backward N non-deleted messages,
1685 or forward if N is negative."
1686 (interactive "p")
1687 (rmail-next-undeleted-message (- n)))
1688
1689 (defun rmail-first-message ()
1690 "Show first message in file."
1691 (interactive)
1692 (rmail-maybe-set-message-counters)
1693 (rmail-show-message 1))
1694
1695 (defun rmail-last-message ()
1696 "Show last message in file."
1697 (interactive)
1698 (rmail-maybe-set-message-counters)
1699 (rmail-show-message rmail-total-messages))
1700
1701 (defun rmail-what-message ()
1702 (let ((where (point))
1703 (low 1)
1704 (high rmail-total-messages)
1705 (mid (/ rmail-total-messages 2)))
1706 (while (> (- high low) 1)
1707 (if (>= where (rmail-msgbeg mid))
1708 (setq low mid)
1709 (setq high mid))
1710 (setq mid (+ low (/ (- high low) 2))))
1711 (if (>= where (rmail-msgbeg high)) high low)))
1712
1713 (defun rmail-message-recipients-p (msg recipients &optional primary-only)
1714 (save-restriction
1715 (goto-char (rmail-msgbeg msg))
1716 (search-forward "\n*** EOOH ***\n")
1717 (narrow-to-region (point) (progn (search-forward "\n\n") (point)))
1718 (or (string-match recipients (or (mail-fetch-field "To") ""))
1719 (string-match recipients (or (mail-fetch-field "From") ""))
1720 (if (not primary-only)
1721 (string-match recipients (or (mail-fetch-field "Cc") ""))))))
1722
1723 (defun rmail-message-regexp-p (msg regexp)
1724 "Return t, if for message number MSG, regexp REGEXP matches in the header."
1725 (goto-char (rmail-msgbeg msg))
1726 (let ((end
1727 (save-excursion
1728 (search-forward "*** EOOH ***" (point-max)) (point))))
1729 (re-search-forward regexp end t)))
1730
1731 (defvar rmail-search-last-regexp nil)
1732 (defun rmail-search (regexp &optional n)
1733 "Show message containing next match for REGEXP (but not the current msg).
1734 Prefix argument gives repeat count; negative argument means search
1735 backwards (through earlier messages).
1736 Interactively, empty argument means use same regexp used last time."
1737 (interactive
1738 (let* ((reversep (< (prefix-numeric-value current-prefix-arg) 0))
1739 (prompt
1740 (concat (if reversep "Reverse " "") "Rmail search (regexp): "))
1741 regexp)
1742 (if rmail-search-last-regexp
1743 (setq prompt (concat prompt
1744 "(default "
1745 rmail-search-last-regexp
1746 ") ")))
1747 (setq regexp (read-string prompt))
1748 (cond ((not (equal regexp ""))
1749 (setq rmail-search-last-regexp regexp))
1750 ((not rmail-search-last-regexp)
1751 (error "No previous Rmail search string")))
1752 (list rmail-search-last-regexp
1753 (prefix-numeric-value current-prefix-arg))))
1754 (or n (setq n 1))
1755 (message "%sRmail search for %s..."
1756 (if (< n 0) "Reverse " "")
1757 regexp)
1758 (rmail-maybe-set-message-counters)
1759 (let ((omin (point-min))
1760 (omax (point-max))
1761 (opoint (point))
1762 win
1763 (reversep (< n 0))
1764 (msg rmail-current-message))
1765 (unwind-protect
1766 (progn
1767 (widen)
1768 (while (/= n 0)
1769 ;; Check messages one by one, advancing message number up or down
1770 ;; but searching forward through each message.
1771 (if reversep
1772 (while (and (null win) (> msg 1))
1773 (goto-char (rmail-msgbeg (setq msg (1- msg))))
1774 (setq win (re-search-forward
1775 regexp (rmail-msgend msg) t)))
1776 (while (and (null win) (< msg rmail-total-messages))
1777 (goto-char (rmail-msgbeg (setq msg (1+ msg))))
1778 (setq win (re-search-forward regexp (rmail-msgend msg) t))))
1779 (setq n (+ n (if reversep 1 -1)))))
1780 (if win
1781 (progn
1782 ;; If this is a reverse search and we found a message,
1783 ;; search backward thru this message to position point.
1784 (if reversep
1785 (progn
1786 (goto-char (rmail-msgend msg))
1787 (re-search-backward
1788 regexp (rmail-msgbeg msg) t)))
1789 (setq win (point))
1790 (rmail-show-message msg)
1791 (message "%sRmail search for %s...done"
1792 (if reversep "Reverse " "")
1793 regexp)
1794 (goto-char win))
1795 (goto-char opoint)
1796 (narrow-to-region omin omax)
1797 (ding)
1798 (message "Search failed: %s" regexp)))))
1799
1800 (defun rmail-search-backwards (regexp &optional n)
1801 "Show message containing previous match for REGEXP.
1802 Prefix argument gives repeat count; negative argument means search
1803 forward (through later messages).
1804 Interactively, empty argument means use same regexp used last time."
1805 (interactive
1806 (let* ((reversep (>= (prefix-numeric-value current-prefix-arg) 0))
1807 (prompt
1808 (concat (if reversep "Reverse " "") "Rmail search (regexp): "))
1809 regexp)
1810 (if rmail-search-last-regexp
1811 (setq prompt (concat prompt
1812 "(default "
1813 rmail-search-last-regexp
1814 ") ")))
1815 (setq regexp (read-string prompt))
1816 (cond ((not (equal regexp ""))
1817 (setq rmail-search-last-regexp regexp))
1818 ((not rmail-search-last-regexp)
1819 (error "No previous Rmail search string")))
1820 (list rmail-search-last-regexp
1821 (prefix-numeric-value current-prefix-arg))))
1822 (rmail-search regexp (- (or n 1))))
1823
1824 ;; Show the first message which has the `unseen' attribute.
1825 (defun rmail-first-unseen-message ()
1826 (rmail-maybe-set-message-counters)
1827 (let ((current 1)
1828 found)
1829 (save-restriction
1830 (widen)
1831 (while (and (not found) (<= current rmail-total-messages))
1832 (if (rmail-message-labels-p current ", ?\\(unseen\\),")
1833 (setq found current))
1834 (setq current (1+ current))))
1835 ;; Let the caller show the message.
1836 ;; (if found
1837 ;; (rmail-show-message found))
1838 found))
1839
1840 (defun rmail-next-same-subject (n)
1841 "Go to the next mail message having the same subject header.
1842 With prefix argument N, do this N times.
1843 If N is negative, go backwards instead."
1844 (interactive "p")
1845 (let* ((subject (mail-fetch-field "Subject"))
1846 (search-regexp (concat "^Subject: *\\(Re: *\\)?"
1847 (regexp-quote subject)
1848 "\n"))
1849 (forward (> n 0))
1850 (i rmail-current-message)
1851 found)
1852 (if (string-match "Re:[ \t]*" subject)
1853 (setq subject (substring subject (match-end 0))))
1854 (save-excursion
1855 (save-restriction
1856 (widen)
1857 (while (and (/= n 0)
1858 (if forward
1859 (< i rmail-total-messages)
1860 (> i 1)))
1861 (let (done)
1862 (while (and (not done)
1863 (if forward
1864 (< i rmail-total-messages)
1865 (> i 1)))
1866 (setq i (if forward (1+ i) (1- i)))
1867 (goto-char (rmail-msgbeg i))
1868 (search-forward "\n*** EOOH ***\n")
1869 (let ((beg (point)) end)
1870 (search-forward "\n\n")
1871 (setq end (point))
1872 (goto-char beg)
1873 (setq done (re-search-forward search-regexp end t))))
1874 (if done (setq found i)))
1875 (setq n (if forward (1- n) (1+ n))))))
1876 (if found
1877 (rmail-show-message found)
1878 (error "No %s message with same subject"
1879 (if forward "following" "previous")))))
1880
1881 (defun rmail-previous-same-subject (n)
1882 "Go to the previous mail message having the same subject header.
1883 With prefix argument N, do this N times.
1884 If N is negative, go forwards instead."
1885 (interactive "p")
1886 (rmail-next-same-subject (- n)))
1887 \f
1888 ;;;; *** Rmail Message Deletion Commands ***
1889
1890 (defun rmail-message-deleted-p (n)
1891 (= (aref rmail-deleted-vector n) ?D))
1892
1893 (defun rmail-set-message-deleted-p (n state)
1894 (aset rmail-deleted-vector n (if state ?D ?\ )))
1895
1896 (defun rmail-delete-message ()
1897 "Delete this message and stay on it."
1898 (interactive)
1899 (rmail-set-attribute "deleted" t)
1900 (run-hooks 'rmail-delete-message-hook))
1901
1902 (defun rmail-undelete-previous-message ()
1903 "Back up to deleted message, select it, and undelete it."
1904 (interactive)
1905 (let ((msg rmail-current-message))
1906 (while (and (> msg 0)
1907 (not (rmail-message-deleted-p msg)))
1908 (setq msg (1- msg)))
1909 (if (= msg 0)
1910 (error "No previous deleted message")
1911 (if (/= msg rmail-current-message)
1912 (rmail-show-message msg))
1913 (rmail-set-attribute "deleted" nil)
1914 (if (rmail-summary-exists)
1915 (save-excursion
1916 (set-buffer rmail-summary-buffer)
1917 (rmail-summary-mark-undeleted msg)))
1918 (rmail-maybe-display-summary))))
1919
1920 (defun rmail-delete-forward (&optional backward)
1921 "Delete this message and move to next nondeleted one.
1922 Deleted messages stay in the file until the \\[rmail-expunge] command is given.
1923 With prefix argument, delete and move backward.
1924
1925 Returns t if a new message is displayed after the delete, or nil otherwise."
1926 (interactive "P")
1927 (rmail-set-attribute "deleted" t)
1928 (run-hooks 'rmail-delete-message-hook)
1929 (let ((del-msg rmail-current-message))
1930 (if (rmail-summary-exists)
1931 (rmail-select-summary
1932 (rmail-summary-mark-deleted del-msg)))
1933 (prog1 (rmail-next-undeleted-message (if backward -1 1))
1934 (rmail-maybe-display-summary))))
1935
1936 (defun rmail-delete-backward ()
1937 "Delete this message and move to previous nondeleted one.
1938 Deleted messages stay in the file until the \\[rmail-expunge] command is given."
1939 (interactive)
1940 (rmail-delete-forward t))
1941
1942 ;; Compute the message number a given message would have after expunging.
1943 ;; The present number of the message is OLDNUM.
1944 ;; DELETEDVEC should be rmail-deleted-vector.
1945 ;; The value is nil for a message that would be deleted.
1946 (defun rmail-msg-number-after-expunge (deletedvec oldnum)
1947 (if (or (null oldnum) (= (aref deletedvec oldnum) ?D))
1948 nil
1949 (let ((i 0)
1950 (newnum 0))
1951 (while (< i oldnum)
1952 (if (/= (aref deletedvec i) ?D)
1953 (setq newnum (1+ newnum)))
1954 (setq i (1+ i)))
1955 newnum)))
1956
1957 (defun rmail-only-expunge ()
1958 "Actually erase all deleted messages in the file."
1959 (interactive)
1960 (message "Expunging deleted messages...")
1961 ;; Discard all undo records for this buffer.
1962 (or (eq buffer-undo-list t)
1963 (setq buffer-undo-list nil))
1964 (rmail-maybe-set-message-counters)
1965 (let* ((omax (- (buffer-size) (point-max)))
1966 (omin (- (buffer-size) (point-min)))
1967 (opoint (if (and (> rmail-current-message 0)
1968 (rmail-message-deleted-p rmail-current-message))
1969 0
1970 (- (point) (point-min))))
1971 (messages-head (cons (aref rmail-message-vector 0) nil))
1972 (messages-tail messages-head)
1973 ;; Don't make any undo records for the expunging.
1974 (buffer-undo-list t)
1975 (win))
1976 (unwind-protect
1977 (save-excursion
1978 (widen)
1979 (goto-char (point-min))
1980 (let ((counter 0)
1981 (number 1)
1982 (total rmail-total-messages)
1983 (new-message-number rmail-current-message)
1984 (new-summary nil)
1985 (rmailbuf (current-buffer))
1986 (buffer-read-only nil)
1987 (messages rmail-message-vector)
1988 (deleted rmail-deleted-vector)
1989 (summary rmail-summary-vector))
1990 (setq rmail-total-messages nil
1991 rmail-current-message nil
1992 rmail-message-vector nil
1993 rmail-deleted-vector nil
1994 rmail-summary-vector nil)
1995
1996 ;; Find each sendmail buffer that is set to reply
1997 ;; to a message in this buffer, and update its
1998 ;; message number.
1999 (let ((bufs (buffer-list)))
2000 (while bufs
2001 (save-excursion
2002 (set-buffer (car bufs))
2003 (and (boundp 'rmail-send-actions-rmail-buffer)
2004 (eq rmail-send-actions-rmail-buffer rmailbuf)
2005 (setq rmail-send-actions-rmail-msg-number
2006 (rmail-msg-number-after-expunge
2007 deleted
2008 rmail-send-actions-rmail-msg-number))))
2009 (setq bufs (cdr bufs))))
2010
2011 (while (<= number total)
2012 (if (= (aref deleted number) ?D)
2013 (progn
2014 (delete-region
2015 (marker-position (aref messages number))
2016 (marker-position (aref messages (1+ number))))
2017 (move-marker (aref messages number) nil)
2018 (if (> new-message-number counter)
2019 (setq new-message-number (1- new-message-number))))
2020 (setq counter (1+ counter))
2021 (setq messages-tail
2022 (setcdr messages-tail
2023 (cons (aref messages number) nil)))
2024 (setq new-summary
2025 (cons (if (= counter number) (aref summary (1- number)))
2026 new-summary)))
2027 (if (zerop (% (setq number (1+ number)) 20))
2028 (message "Expunging deleted messages...%d" number)))
2029 (setq messages-tail
2030 (setcdr messages-tail
2031 (cons (aref messages number) nil)))
2032 (setq rmail-current-message new-message-number
2033 rmail-total-messages counter
2034 rmail-message-vector (apply 'vector messages-head)
2035 rmail-deleted-vector (make-string (1+ counter) ?\ )
2036 rmail-summary-vector (vconcat (nreverse new-summary))
2037 win t)))
2038 (message "Expunging deleted messages...done")
2039 (if (not win)
2040 (narrow-to-region (- (buffer-size) omin) (- (buffer-size) omax)))
2041 (rmail-show-message
2042 (if (zerop rmail-current-message) 1 nil))
2043 (forward-char opoint))))
2044
2045 (defun rmail-expunge ()
2046 "Erase deleted messages from Rmail file and summary buffer."
2047 (interactive)
2048 (rmail-only-expunge)
2049 (if (rmail-summary-exists)
2050 (rmail-select-summary
2051 (rmail-update-summary))))
2052 \f
2053 ;;;; *** Rmail Mailing Commands ***
2054
2055 (defun rmail-start-mail (&rest args)
2056 (if (and window-system rmail-mail-new-frame)
2057 (prog1
2058 (apply 'mail-other-frame args)
2059 ;; This is not a standard frame parameter;
2060 ;; nothing except sendmail.el looks at it.
2061 (modify-frame-parameters (selected-frame)
2062 '((mail-dedicated-frame . t))))
2063 (apply 'mail-other-window args)))
2064
2065 (defun rmail-mail ()
2066 "Send mail in another window.
2067 While composing the message, use \\[mail-yank-original] to yank the
2068 original message into it."
2069 (interactive)
2070 (rmail-start-mail nil nil nil nil nil (current-buffer)))
2071
2072 (defun rmail-continue ()
2073 "Continue composing outgoing message previously being composed."
2074 (interactive)
2075 (rmail-start-mail t))
2076
2077 (defun rmail-reply (just-sender)
2078 "Reply to the current message.
2079 Normally include CC: to all other recipients of original message;
2080 prefix argument means ignore them. While composing the reply,
2081 use \\[mail-yank-original] to yank the original message into it."
2082 (interactive "P")
2083 (let (from reply-to cc subject date to message-id resent-reply-to
2084 (msgnum rmail-current-message)
2085 (rmail-buffer (current-buffer)))
2086 (save-excursion
2087 (save-restriction
2088 (widen)
2089 (goto-char (rmail-msgbeg rmail-current-message))
2090 (forward-line 1)
2091 (if (= (following-char) ?0)
2092 (narrow-to-region
2093 (progn (forward-line 2)
2094 (point))
2095 (progn (search-forward "\n\n" (rmail-msgend rmail-current-message)
2096 'move)
2097 (point)))
2098 (narrow-to-region (point)
2099 (progn (search-forward "\n*** EOOH ***\n")
2100 (beginning-of-line) (point))))
2101 (setq resent-reply-to (mail-fetch-field "resent-reply-to" t)
2102 from (mail-fetch-field "from")
2103 reply-to (or resent-reply-to
2104 (mail-fetch-field "reply-to" nil t)
2105 from)
2106 cc (cond (just-sender nil)
2107 (resent-reply-to (mail-fetch-field "resent-cc" t))
2108 (t (mail-fetch-field "cc" nil t)))
2109 subject (or (and resent-reply-to
2110 (mail-fetch-field "resent-subject" t))
2111 (mail-fetch-field "subject"))
2112 date (or (and resent-reply-to
2113 (mail-fetch-field "resent-date" t))
2114 (mail-fetch-field "date"))
2115 to (cond (resent-reply-to
2116 (or (mail-fetch-field "resent-to" t)) "")
2117 ((mail-fetch-field "to" nil t))
2118 ;((mail-fetch-field "apparently-to")) ack gag barf
2119 (t ""))
2120 message-id (cond (resent-reply-to
2121 (mail-fetch-field "resent-message-id" t))
2122 ((mail-fetch-field "message-id"))))))
2123 (and (stringp subject)
2124 (setq subject
2125 (concat rmail-reply-prefix
2126 (if (string-match rmail-reply-regexp subject)
2127 (substring subject (match-end 0))
2128 subject))))
2129 (rmail-start-mail nil
2130 (mail-strip-quoted-names reply-to)
2131 subject
2132 (rmail-make-in-reply-to-field from date message-id)
2133 (if just-sender
2134 nil
2135 (let* ((cc-list (rmail-dont-reply-to
2136 (mail-strip-quoted-names
2137 (if (null cc) to (concat to ", " cc))))))
2138 (if (string= cc-list "") nil cc-list)))
2139 (current-buffer)
2140 (list (list '(lambda ()
2141 (let ((msgnum rmail-send-actions-rmail-msg-number))
2142 (save-excursion
2143 (set-buffer rmail-send-actions-rmail-buffer)
2144 (if msgnum
2145 (rmail-set-attribute "answered" t msgnum))))))))
2146 ;; We keep the rmail buffer and message number in these
2147 ;; buffer-local vars in the sendmail buffer,
2148 ;; so that rmail-only-expunge can relocate the message number.
2149 (make-local-variable 'rmail-send-actions-rmail-buffer)
2150 (make-local-variable 'rmail-send-actions-rmail-msg-number)
2151 (setq rmail-send-actions-rmail-buffer rmail-buffer)
2152 (setq rmail-send-actions-rmail-msg-number msgnum)))
2153
2154 (defun rmail-make-in-reply-to-field (from date message-id)
2155 (cond ((not from)
2156 (if message-id
2157 message-id
2158 nil))
2159 (mail-use-rfc822
2160 (require 'rfc822)
2161 (let ((tem (car (rfc822-addresses from))))
2162 (if message-id
2163 (if (string-match
2164 (regexp-quote (if (string-match "@[^@]*\\'" tem)
2165 (substring tem 0 (match-beginning 0))
2166 tem))
2167 message-id)
2168 ;; Message-ID is sufficiently informative
2169 message-id
2170 (concat message-id " (" tem ")"))
2171 ;; Copy TEM, discarding text properties.
2172 (setq tem (copy-sequence tem))
2173 (set-text-properties 0 (length tem) nil tem)
2174 (setq tem (copy-sequence tem))
2175 ;; Use prin1 to fake RFC822 quoting
2176 (let ((field (prin1-to-string tem)))
2177 (if date
2178 (concat field "'s message of " date)
2179 field)))))
2180 ((let* ((foo "[^][\000-\037\177-\377()<>@,;:\\\" ]+")
2181 (bar "[^][\000-\037\177-\377()<>@,;:\\\"]+"))
2182 ;; Can't use format because format loses on \000 (unix *^&%*^&%$!!)
2183 (or (string-match (concat "\\`[ \t]*\\(" bar
2184 "\\)\\(<" foo "@" foo ">\\)?[ \t]*\\'")
2185 ;; "Unix Loser <Foo@bar.edu>" => "Unix Loser"
2186 from)
2187 (string-match (concat "\\`[ \t]*<" foo "@" foo ">[ \t]*(\\("
2188 bar "\\))[ \t]*\\'")
2189 ;; "<Bugs@bar.edu>" (Losing Unix) => "Losing Unix"
2190 from)))
2191 (let ((start (match-beginning 1))
2192 (end (match-end 1)))
2193 ;; Trim whitespace which above regexp match allows
2194 (while (and (< start end)
2195 (memq (aref from start) '(?\t ?\ )))
2196 (setq start (1+ start)))
2197 (while (and (< start end)
2198 (memq (aref from (1- end)) '(?\t ?\ )))
2199 (setq end (1- end)))
2200 (let ((field (substring from start end)))
2201 (if date (setq field (concat "message from " field " on " date)))
2202 (if message-id
2203 ;; "<AA259@bar.edu> (message from Unix Loser on 1-Apr-89)"
2204 (concat message-id " (" field ")")
2205 field))))
2206 (t
2207 ;; If we can't kludge it simply, do it correctly
2208 (let ((mail-use-rfc822 t))
2209 (rmail-make-in-reply-to-field from date message-id)))))
2210 \f
2211 (defun rmail-forward (resend)
2212 "Forward the current message to another user.
2213 With prefix argument, \"resend\" the message instead of forwarding it;
2214 see the documentation of `rmail-resend'."
2215 (interactive "P")
2216 (if resend
2217 (call-interactively 'rmail-resend)
2218 (let ((forward-buffer (current-buffer))
2219 (msgnum rmail-current-message)
2220 (subject (concat "["
2221 (let ((from (or (mail-fetch-field "From")
2222 (mail-fetch-field ">From"))))
2223 (if from
2224 (concat (mail-strip-quoted-names from) ": ")
2225 ""))
2226 (or (mail-fetch-field "Subject") "")
2227 "]")))
2228 ;; If only one window, use it for the mail buffer.
2229 ;; Otherwise, use another window for the mail buffer
2230 ;; so that the Rmail buffer remains visible
2231 ;; and sending the mail will get back to it.
2232 (if (funcall (if (and (not rmail-mail-new-frame) (one-window-p t))
2233 (function mail)
2234 (function rmail-start-mail))
2235 nil nil subject nil nil nil
2236 (list (list (function
2237 (lambda ()
2238 (let ((msgnum
2239 rmail-send-actions-rmail-msg-number))
2240 (save-excursion
2241 (set-buffer rmail-send-actions-rmail-buffer)
2242 (if msgnum
2243 (rmail-set-attribute
2244 "forwarded" t msgnum)))))))))
2245 ;; The mail buffer is now current.
2246 (save-excursion
2247 ;; We keep the rmail buffer and message number in these
2248 ;; buffer-local vars in the sendmail buffer,
2249 ;; so that rmail-only-expunge can relocate the message number.
2250 (make-local-variable 'rmail-send-actions-rmail-buffer)
2251 (make-local-variable 'rmail-send-actions-rmail-msg-number)
2252 (setq rmail-send-actions-rmail-buffer forward-buffer)
2253 (setq rmail-send-actions-rmail-msg-number msgnum)
2254 ;; Insert after header separator--before signature if any.
2255 (goto-char (point-min))
2256 (search-forward-regexp
2257 (concat "^" (regexp-quote mail-header-separator) "$"))
2258 (forward-line 1)
2259 (insert "------- Start of forwarded message -------\n")
2260 ;; Quote lines with `- ' if they start with `-'.
2261 (let ((beg (point)) end)
2262 (insert-buffer-substring forward-buffer)
2263 (goto-char beg)
2264 (while (re-search-forward "^-" nil t)
2265 (beginning-of-line)
2266 (insert "- ")
2267 (forward-line 1))
2268 (goto-char (point-max)))
2269 (let ((end (point)))
2270 (skip-chars-backward "\n")
2271 (if (< (point) end)
2272 (forward-char 1))
2273 (delete-region (point) end))
2274 (insert "------- End of forwarded message -------\n")
2275 (push-mark))))))
2276 \f
2277 (defun rmail-resend (address &optional from comment mail-alias-file)
2278 "Resend current message to ADDRESSES.
2279 ADDRESSES should be a single address, a string consisting of several
2280 addresses separated by commas, or a list of addresses.
2281
2282 Optional FROM is the address to resend the message from, and
2283 defaults to the username of the person redistributing the message.
2284 Optional COMMENT is a string that will be inserted as a comment in the
2285 resent message.
2286 Optional ALIAS-FILE is alternate aliases file to be used by sendmail,
2287 typically for purposes of moderating a list."
2288 (interactive "sResend to: ")
2289 (require 'sendmail)
2290 (require 'mailalias)
2291 (if (not from) (setq from (user-login-name)))
2292 (let ((tembuf (generate-new-buffer " sendmail temp"))
2293 (mail-header-separator "")
2294 (case-fold-search nil)
2295 (mailbuf (current-buffer)))
2296 (unwind-protect
2297 (save-excursion
2298 ;;>> Copy message into temp buffer
2299 (set-buffer tembuf)
2300 (insert-buffer-substring mailbuf)
2301 (goto-char (point-min))
2302 ;; Delete any Sender field, since that's not specifiable.
2303 ; Only delete Sender fields in the actual header.
2304 (re-search-forward "^$" nil 'move)
2305 ; Using "while" here rather than "if" because some buggy mail
2306 ; software may have inserted multiple Sender fields.
2307 (while (re-search-backward "^Sender:" nil t)
2308 (let (beg)
2309 (setq beg (point))
2310 (forward-line 1)
2311 (while (looking-at "[ \t]")
2312 (forward-line 1))
2313 (delete-region beg (point))))
2314 ; Go back to the beginning of the buffer so the Resent- fields
2315 ; are inserted there.
2316 (goto-char (point-min))
2317 ;;>> Insert resent-from:
2318 (insert "Resent-From: " from "\n")
2319 (insert "Resent-Date: " (mail-rfc822-date) "\n")
2320 ;;>> Insert resent-to: and bcc if need be.
2321 (let ((before (point)))
2322 (if mail-self-blind
2323 (insert "Resent-Bcc: " (user-login-name) "\n"))
2324 (insert "Resent-To: " (if (stringp address)
2325 address
2326 (mapconcat 'identity address ",\n\t"))
2327 "\n")
2328 ;; Expand abbrevs in the recipients.
2329 (save-excursion
2330 (if (featurep 'mailabbrev)
2331 (let ((end (point-marker))
2332 (local-abbrev-table mail-abbrevs)
2333 (old-syntax-table (syntax-table)))
2334 (if (and (not (vectorp mail-abbrevs))
2335 (file-exists-p mail-personal-alias-file))
2336 (build-mail-abbrevs))
2337 (set-syntax-table mail-abbrev-syntax-table)
2338 (goto-char before)
2339 (while (and (< (point) end)
2340 (progn (forward-word 1)
2341 (<= (point) end)))
2342 (expand-abbrev))
2343 (set-syntax-table old-syntax-table))
2344 (expand-mail-aliases before (point)))))
2345 ;;>> Set up comment, if any.
2346 (if (and (sequencep comment) (not (zerop (length comment))))
2347 (let ((before (point))
2348 after)
2349 (insert comment)
2350 (or (eolp) (insert "\n"))
2351 (setq after (point))
2352 (goto-char before)
2353 (while (< (point) after)
2354 (insert "Resent-Comment: ")
2355 (forward-line 1))))
2356 ;; Don't expand aliases in the destination fields
2357 ;; of the original message.
2358 (let (mail-aliases)
2359 (funcall send-mail-function)))
2360 (kill-buffer tembuf))
2361 (rmail-set-attribute "resent" t rmail-current-message)))
2362 \f
2363 (defvar mail-unsent-separator
2364 (concat "^ *---+ +Unsent message follows +---+ *$\\|"
2365 "^ *---+ +Returned message +---+ *$\\|"
2366 "^Start of returned message$\\|"
2367 "^ *---+ +Original message +---+ *$\\|"
2368 "^ *--+ +begin message +--+ *$\\|"
2369 "^ *---+ +Original message follows +---+ *$\\|"
2370 "^|? *---+ +Message text follows: +---+ *|?$")
2371 "A regexp that matches the separator before the text of a failed message.")
2372
2373 (defun rmail-retry-failure ()
2374 "Edit a mail message which is based on the contents of the current message.
2375 For a message rejected by the mail system, extract the interesting headers and
2376 the body of the original message.
2377 The variable `mail-unsent-separator' should match the string that
2378 delimits the returned original message.
2379 The variable `rmail-retry-ignored-headers' is a regular expression
2380 specifying headers which should not be copied into the new message."
2381 (interactive)
2382 (require 'mail-utils)
2383 (let ((rmail-buffer (current-buffer))
2384 (msgnum rmail-current-message)
2385 bounce-start bounce-end bounce-indent resending)
2386 (save-excursion
2387 ;; Narrow down to just the quoted original message
2388 (rmail-beginning-of-message)
2389 (let ((case-fold-search t))
2390 (if (search-forward "This is a MIME-encapsulated message\n\n--" nil t)
2391 (let ((codestring
2392 (buffer-substring (progn (beginning-of-line) (point))
2393 (progn (end-of-line) (point)))))
2394 (re-search-forward mail-unsent-separator)
2395 (search-forward codestring)
2396 (or (search-forward "\n\n" nil t)
2397 (error "Cannot find end of Mime data in failed message"))
2398 (setq bounce-start (point))
2399 (save-excursion
2400 (goto-char (point-max))
2401 (search-backward codestring)
2402 (setq bounce-end (point)))
2403 (or (search-forward "\n\n" nil t)
2404 (error "Cannot find end of header in failed message")))
2405 (or (re-search-forward mail-unsent-separator nil t)
2406 (error "Cannot parse this as a failure message"))
2407 (skip-chars-forward "\n")
2408 ;; Support a style of failure message in which the original
2409 ;; message is indented, and included within lines saying
2410 ;; `Start of returned message' and `End of returned message'.
2411 (if (looking-at " +Received:")
2412 (progn
2413 (setq bounce-start (point))
2414 (skip-chars-forward " ")
2415 (setq bounce-indent (- (current-column)))
2416 (goto-char (point-max))
2417 (re-search-backward "^End of returned message$" nil t)
2418 (setq bounce-end (point)))
2419 ;; One message contained a few random lines before the old
2420 ;; message header. The first line of the message started with
2421 ;; two hyphens. A blank line followed these random lines.
2422 ;; The same line beginning with two hyphens was possibly
2423 ;; marking the end of the message.
2424 (if (looking-at "^--")
2425 (let ((boundary (buffer-substring-no-properties
2426 (point)
2427 (progn (end-of-line) (point)))))
2428 (search-forward "\n\n")
2429 (skip-chars-forward "\n")
2430 (setq bounce-start (point))
2431 (goto-char (point-max))
2432 (search-backward (concat "\n\n" boundary) bounce-start t)
2433 (setq bounce-end (point)))
2434 (setq bounce-start (point)
2435 bounce-end (point-max)))
2436 (or (search-forward "\n\n" nil t)
2437 (error "Cannot find end of header in failed message"))
2438 ))))
2439 ;; Start sending a new message; default header fields from the original.
2440 ;; Turn off the usual actions for initializing the message body
2441 ;; because we want to get only the text from the failure message.
2442 (let ((action
2443 ;; This function will be called when the user sends the retry.
2444 ;; It will mark the bounce message as "retried".
2445 (function (lambda ()
2446 (let ((msgnum rmail-send-actions-rmail-msg-number))
2447 (save-excursion
2448 (set-buffer rmail-send-actions-rmail-buffer)
2449 (if msgnum
2450 (rmail-set-attribute "retried" t msgnum)))))))
2451 mail-signature mail-setup-hook)
2452 (if (rmail-start-mail nil nil nil nil nil rmail-buffer
2453 (list (list action)))
2454 ;; Insert original text as initial text of new draft message.
2455 ;; Bind inhibit-read-only since the header delimiter
2456 ;; of the previous message was probably read-only.
2457 (let ((inhibit-read-only t))
2458 ;; We keep the rmail buffer and message number in these
2459 ;; buffer-local vars in the sendmail buffer,
2460 ;; so that the rmail-only-expunge can relocate the message number.
2461 (make-local-variable 'rmail-send-actions-rmail-buffer)
2462 (make-local-variable 'rmail-send-actions-rmail-msg-number)
2463 (setq rmail-send-actions-rmail-buffer rmail-buffer)
2464 (setq rmail-send-actions-rmail-msg-number msgnum)
2465 (erase-buffer)
2466 (insert-buffer-substring rmail-buffer bounce-start bounce-end)
2467 (goto-char (point-min))
2468 (if bounce-indent
2469 (indent-rigidly (point-min) (point-max) bounce-indent))
2470 (rmail-clear-headers rmail-retry-ignored-headers)
2471 (rmail-clear-headers "^sender:\\|^from:\\|^return-path:")
2472 (goto-char (point-min))
2473 (save-restriction
2474 (search-forward "\n\n")
2475 (forward-line -1)
2476 (narrow-to-region (point-min) (point))
2477 (setq resending (mail-fetch-field "resent-to"))
2478 (if mail-self-blind
2479 (if resending
2480 (insert "Resent-Bcc: " (user-login-name) "\n")
2481 (insert "BCC: " (user-login-name) "\n"))))
2482 (insert mail-header-separator)
2483 (mail-position-on-field (if resending "Resent-To" "To") t)
2484 (set-buffer rmail-buffer)
2485 (rmail-beginning-of-message))))))
2486 \f
2487 (defun rmail-summary-exists ()
2488 "Non-nil iff in an RMAIL buffer and an associated summary buffer exists.
2489 In fact, the non-nil value returned is the summary buffer itself."
2490 (and rmail-summary-buffer (buffer-name rmail-summary-buffer)
2491 rmail-summary-buffer))
2492
2493 (defun rmail-summary-displayed ()
2494 "t iff in RMAIL buffer and an associated summary buffer is displayed."
2495 (and rmail-summary-buffer (get-buffer-window rmail-summary-buffer)))
2496
2497 (defvar rmail-redisplay-summary nil
2498 "*Non-nil means Rmail should show the summary when it changes.
2499 This has an effect only if a summary buffer exists.")
2500
2501 (defvar rmail-summary-window-size nil
2502 "*Non-nil means specify the height for an Rmail summary window.")
2503
2504 ;; Put the summary buffer back on the screen, if user wants that.
2505 (defun rmail-maybe-display-summary ()
2506 (let ((selected (selected-window))
2507 window)
2508 ;; If requested, make sure the summary is displayed.
2509 (and rmail-summary-buffer (buffer-name rmail-summary-buffer)
2510 rmail-redisplay-summary
2511 (if (get-buffer-window rmail-summary-buffer 0)
2512 ;; It's already in some frame; show that one.
2513 (let ((frame (window-frame
2514 (get-buffer-window rmail-summary-buffer 0))))
2515 (make-frame-visible frame)
2516 (raise-frame frame))
2517 (display-buffer rmail-summary-buffer)))
2518 ;; If requested, set the height of the summary window.
2519 (and rmail-summary-buffer (buffer-name rmail-summary-buffer)
2520 rmail-summary-window-size
2521 (setq window (get-buffer-window rmail-summary-buffer))
2522 ;; Don't try to change the size if just one window in frame.
2523 (not (eq window (frame-root-window (window-frame window))))
2524 (unwind-protect
2525 (progn
2526 (select-window window)
2527 (enlarge-window (- rmail-summary-window-size
2528 (window-height))))
2529 (select-window selected)))))
2530 \f
2531 ;;;; *** Rmail Local Fontification ***
2532
2533 (defun rmail-fontify-buffer-function ()
2534 ;; This function's symbol is bound to font-lock-fontify-buffer-function.
2535 (make-local-hook 'rmail-show-message-hook)
2536 (add-hook 'rmail-show-message-hook 'rmail-fontify-message nil t)
2537 (rmail-fontify-message)
2538 (setq font-lock-fontified t))
2539
2540 (defun rmail-unfontify-buffer-function ()
2541 ;; This function's symbol is bound to font-lock-fontify-unbuffer-function.
2542 (let ((modified (buffer-modified-p))
2543 (buffer-undo-list t) (inhibit-read-only t)
2544 before-change-functions after-change-functions
2545 buffer-file-name buffer-file-truename)
2546 (save-restriction
2547 (widen)
2548 (remove-hook 'rmail-show-message-hook 'rmail-fontify-message t)
2549 (remove-text-properties (point-min) (point-max) '(rmail-fontified nil))
2550 (font-lock-default-unfontify-buffer))))
2551
2552 (defun rmail-fontify-message ()
2553 ;; Fontify the current message if it is not already fontified.
2554 (if (text-property-any (point-min) (point-max) 'rmail-fontified nil)
2555 (let ((modified (buffer-modified-p))
2556 (buffer-undo-list t) (inhibit-read-only t)
2557 before-change-functions after-change-functions
2558 buffer-file-name buffer-file-truename)
2559 (save-excursion
2560 (save-match-data
2561 (add-text-properties (point-min) (point-max) '(rmail-fontified t))
2562 (font-lock-fontify-region (point-min) (point-max)))))))
2563 \f
2564 ;;;; *** Rmail Specify Inbox Files ***
2565
2566 (autoload 'set-rmail-inbox-list "rmailmsc"
2567 "Set the inbox list of the current RMAIL file to FILE-NAME.
2568 This may be a list of file names separated by commas.
2569 If FILE-NAME is empty, remove any inbox list."
2570 t)
2571
2572 ;;;; *** Rmail Commands for Labels ***
2573
2574 (autoload 'rmail-add-label "rmailkwd"
2575 "Add LABEL to labels associated with current RMAIL message.
2576 Completion is performed over known labels when reading."
2577 t)
2578
2579 (autoload 'rmail-kill-label "rmailkwd"
2580 "Remove LABEL from labels associated with current RMAIL message.
2581 Completion is performed over known labels when reading."
2582 t)
2583
2584 (autoload 'rmail-next-labeled-message "rmailkwd"
2585 "Show next message with LABEL. Defaults to last label used.
2586 With prefix argument N moves forward N messages with this label."
2587 t)
2588
2589 (autoload 'rmail-previous-labeled-message "rmailkwd"
2590 "Show previous message with LABEL. Defaults to last label used.
2591 With prefix argument N moves backward N messages with this label."
2592 t)
2593
2594 (autoload 'rmail-read-label "rmailkwd"
2595 "PROMPT and read with completion an Rmail message label."
2596 t)
2597
2598 ;;;; *** Rmail Edit Mode ***
2599
2600 (autoload 'rmail-edit-current-message "rmailedit"
2601 "Edit the contents of the current message"
2602 t)
2603
2604 ;;;; *** Rmail Sorting ***
2605
2606 (autoload 'rmail-sort-by-date "rmailsort"
2607 "Sort messages of current Rmail file by date.
2608 If prefix argument REVERSE is non-nil, sort them in reverse order." t)
2609
2610 (autoload 'rmail-sort-by-subject "rmailsort"
2611 "Sort messages of current Rmail file by subject.
2612 If prefix argument REVERSE is non-nil, sort them in reverse order." t)
2613
2614 (autoload 'rmail-sort-by-author "rmailsort"
2615 "Sort messages of current Rmail file by author.
2616 If prefix argument REVERSE is non-nil, sort them in reverse order." t)
2617
2618 (autoload 'rmail-sort-by-recipient "rmailsort"
2619 "Sort messages of current Rmail file by recipient.
2620 If prefix argument REVERSE is non-nil, sort them in reverse order." t)
2621
2622 (autoload 'rmail-sort-by-correspondent "rmailsort"
2623 "Sort messages of current Rmail file by other correspondent.
2624 If prefix argument REVERSE is non-nil, sort them in reverse order." t)
2625
2626 (autoload 'rmail-sort-by-lines "rmailsort"
2627 "Sort messages of current Rmail file by number of lines.
2628 If prefix argument REVERSE is non-nil, sort them in reverse order." t)
2629
2630 (autoload 'rmail-sort-by-keywords "rmailsort"
2631 "Sort messages of current Rmail file by labels.
2632 If prefix argument REVERSE is non-nil, sort them in reverse order.
2633 KEYWORDS is a comma-separated list of labels." t)
2634 \f
2635 ;;;; *** Rmail Summary Mode ***
2636
2637 (autoload 'rmail-summary "rmailsum"
2638 "Display a summary of all messages, one line per message."
2639 t)
2640
2641 (autoload 'rmail-summary-by-labels "rmailsum"
2642 "Display a summary of all messages with one or more LABELS.
2643 LABELS should be a string containing the desired labels, separated by commas."
2644 t)
2645
2646 (autoload 'rmail-summary-by-recipients "rmailsum"
2647 "Display a summary of all messages with the given RECIPIENTS.
2648 Normally checks the To, From and Cc fields of headers; but if PRIMARY-ONLY
2649 is non-nil (prefix arg given), only look in the To and From fields.
2650 RECIPIENTS is a string of regexps separated by commas."
2651 t)
2652
2653 (autoload 'rmail-summary-by-regexp "rmailsum"
2654 "Display a summary of all messages according to regexp REGEXP.
2655 If the regular expression is found in the header of the message
2656 \(including in the date and other lines, as well as the subject line),
2657 Emacs will list the header line in the RMAIL-summary."
2658 t)
2659
2660 (autoload 'rmail-summary-by-topic "rmailsum"
2661 "Display a summary of all messages with the given SUBJECT.
2662 Normally checks the Subject field of headers;
2663 but if WHOLE-MESSAGE is non-nil (prefix arg given),
2664 look in the whole message.
2665 SUBJECT is a string of regexps separated by commas."
2666 t)
2667
2668 (autoload 'rmail-summary-by-sender "rmailsum"
2669 "Display a summary of all messages with the given SENDERS.
2670 SENDERS is a string of names separated by commas."
2671 t)
2672 \f
2673 ;;;; *** Rmail output messages to files ***
2674
2675 (autoload 'rmail-output-to-rmail-file "rmailout"
2676 "Append the current message to an Rmail file named FILE-NAME.
2677 If the file does not exist, ask if it should be created.
2678 If file is being visited, the message is appended to the Emacs
2679 buffer visiting that file."
2680 t)
2681
2682 (autoload 'rmail-output "rmailout"
2683 "Append this message to Unix mail file named FILE-NAME."
2684 t)
2685
2686 ;;;; *** Rmail undigestification ***
2687
2688 (autoload 'undigestify-rmail-message "undigest"
2689 "Break up a digest message into its constituent messages.
2690 Leaves original message, deleted, before the undigestified messages."
2691 t)
2692
2693 (provide 'rmail)
2694
2695 ;;; rmail.el ends here