]> code.delx.au - gnu-emacs/blob - lisp/mail/rmail.el
(mail-mode-map): Bind M-TAB to mail-complete.
[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 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 "\\([^ ]*\\) *" ; 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 t))
947 ;; Don't leave the buffer screwed up if we get a disk-full error.
948 (rmail-show-message)))
949
950 (defun rmail-insert-inbox-text (files renamep)
951 (let (file tofile delete-files movemail popmail)
952 (while files
953 (setq file (file-truename
954 (expand-file-name (substitute-in-file-name (car files))))
955 tofile (expand-file-name
956 ;; Generate name to move to from inbox name,
957 ;; in case of multiple inboxes that need moving.
958 (concat ".newmail-" (file-name-nondirectory file))
959 ;; Use the directory of this rmail file
960 ;; because it's a nuisance to use the homedir
961 ;; if that is on a full disk and this rmail
962 ;; file isn't.
963 (file-name-directory
964 (expand-file-name buffer-file-name))))
965 ;; Always use movemail to rename the file,
966 ;; since there can be mailboxes in various directories.
967 (setq movemail t)
968 ;;; ;; If getting from mail spool directory,
969 ;;; ;; use movemail to move rather than just renaming,
970 ;;; ;; so as to interlock with the mailer.
971 ;;; (setq movemail (string= file
972 ;;; (file-truename
973 ;;; (concat rmail-spool-directory
974 ;;; (file-name-nondirectory file)))))
975 (setq popmail (string-match "^po:" (file-name-nondirectory file)))
976 (if popmail (setq file (file-name-nondirectory file)
977 renamep t))
978 (if movemail
979 (progn
980 ;; On some systems, /usr/spool/mail/foo is a directory
981 ;; and the actual inbox is /usr/spool/mail/foo/foo.
982 (if (file-directory-p file)
983 (setq file (expand-file-name (user-login-name)
984 file)))))
985 (cond (popmail
986 (message "Getting mail from post office ..."))
987 ((and (file-exists-p tofile)
988 (/= 0 (nth 7 (file-attributes tofile))))
989 (message "Getting mail from %s..." tofile))
990 ((and (file-exists-p file)
991 (/= 0 (nth 7 (file-attributes file))))
992 (message "Getting mail from %s..." file)))
993 ;; Set TOFILE if have not already done so, and
994 ;; rename or copy the file FILE to TOFILE if and as appropriate.
995 (cond ((not renamep)
996 (setq tofile file))
997 ((or (file-exists-p tofile) (and (not popmail)
998 (not (file-exists-p file))))
999 nil)
1000 ((and (not movemail) (not popmail))
1001 ;; Try copying. If that fails (perhaps no space),
1002 ;; rename instead.
1003 (condition-case nil
1004 (copy-file file tofile nil)
1005 (error
1006 ;; Third arg is t so we can replace existing file TOFILE.
1007 (rename-file file tofile t)))
1008 ;; Make the real inbox file empty.
1009 ;; Leaving it deleted could cause lossage
1010 ;; because mailers often won't create the file.
1011 (condition-case ()
1012 (write-region (point) (point) file)
1013 (file-error nil)))
1014 (t
1015 (let ((errors nil))
1016 (unwind-protect
1017 (save-excursion
1018 (setq errors (generate-new-buffer " *rmail loss*"))
1019 (buffer-disable-undo errors)
1020 (call-process
1021 (or rmail-movemail-program
1022 (expand-file-name "movemail" exec-directory))
1023 nil errors nil file tofile)
1024 (if (not (buffer-modified-p errors))
1025 ;; No output => movemail won
1026 nil
1027 (set-buffer errors)
1028 (subst-char-in-region (point-min) (point-max)
1029 ?\n ?\ )
1030 (goto-char (point-max))
1031 (skip-chars-backward " \t")
1032 (delete-region (point) (point-max))
1033 (goto-char (point-min))
1034 (if (looking-at "movemail: ")
1035 (delete-region (point-min) (match-end 0)))
1036 (beep t)
1037 (message "movemail: %s"
1038 (buffer-substring (point-min)
1039 (point-max)))
1040 (sit-for 3)
1041 nil))
1042 (if errors (kill-buffer errors))))))
1043 ;; At this point, TOFILE contains the name to read:
1044 ;; Either the alternate name (if we renamed)
1045 ;; or the actual inbox (if not renaming).
1046 (if (file-exists-p tofile)
1047 (let (size)
1048 (goto-char (point-max))
1049 (setq size (nth 1 (insert-file-contents tofile)))
1050 (goto-char (point-max))
1051 (or (= (preceding-char) ?\n)
1052 (zerop size)
1053 (insert ?\n))
1054 (setq delete-files (cons tofile delete-files))))
1055 (message "")
1056 (setq files (cdr files)))
1057 delete-files))
1058
1059 ;; the rmail-break-forwarded-messages feature is not implemented
1060 (defun rmail-convert-to-babyl-format ()
1061 (let ((count 0) start
1062 (case-fold-search nil)
1063 (invalid-input-resync
1064 (function (lambda ()
1065 (message "Invalid Babyl format in inbox!")
1066 (sit-for 1)
1067 ;; Try to get back in sync with a real message.
1068 (if (re-search-forward
1069 (concat mmdf-delim1 "\\|^From") nil t)
1070 (beginning-of-line)
1071 (goto-char (point-max)))))))
1072 (goto-char (point-min))
1073 (save-restriction
1074 (while (not (eobp))
1075 (cond ((looking-at "BABYL OPTIONS:");Babyl header
1076 (if (search-forward "\n\^_" nil t)
1077 ;; If we find the proper terminator, delete through there.
1078 (delete-region (point-min) (point))
1079 (funcall invalid-input-resync)
1080 (delete-region (point-min) (point))))
1081 ;; Babyl format message
1082 ((looking-at "\^L")
1083 (or (search-forward "\n\^_" nil t)
1084 (funcall invalid-input-resync))
1085 (setq count (1+ count))
1086 ;; Make sure there is no extra white space after the ^_
1087 ;; at the end of the message.
1088 ;; Narrowing will make sure that whatever follows the junk
1089 ;; will be treated properly.
1090 (delete-region (point)
1091 (save-excursion
1092 (skip-chars-forward " \t\n")
1093 (point)))
1094 (narrow-to-region (point) (point-max)))
1095 ;;*** MMDF format
1096 ((let ((case-fold-search t))
1097 (looking-at mmdf-delim1))
1098 (let ((case-fold-search t))
1099 (replace-match "\^L\n0, unseen,,\n*** EOOH ***\n")
1100 (setq start (point))
1101 (re-search-forward mmdf-delim2 nil t)
1102 (replace-match "\^_"))
1103 (save-excursion
1104 (save-restriction
1105 (narrow-to-region start (1- (point)))
1106 (goto-char (point-min))
1107 (while (search-forward "\n\^_" nil t); single char "\^_"
1108 (replace-match "\n^_")))); 2 chars: "^" and "_"
1109 (narrow-to-region (point) (point-max))
1110 (setq count (1+ count)))
1111 ;;*** Mail format
1112 ((looking-at "^From ")
1113 (setq start (point))
1114 (insert "\^L\n0, unseen,,\n*** EOOH ***\n")
1115 (rmail-nuke-pinhead-header)
1116 ;; If this message has a Content-Length field,
1117 ;; skip to the end of the contents.
1118 (let* ((header-end (save-excursion
1119 (and (re-search-forward "\n\n" nil t)
1120 (1- (point)))))
1121 (case-fold-search t)
1122 (size
1123 ;; Get the numeric value from the Content-Length field.
1124 (save-excursion
1125 ;; Back up to end of prev line,
1126 ;; in case the Content-Length field comes first.
1127 (forward-char -1)
1128 (and (search-forward "\ncontent-length: "
1129 header-end t)
1130 (let ((beg (point))
1131 (eol (progn (end-of-line) (point))))
1132 (string-to-int (buffer-substring beg eol)))))))
1133 (and size
1134 (if (and (natnump size)
1135 (<= (+ header-end size) (point-max))
1136 ;; Make sure this would put us at a position
1137 ;; that we could continue from.
1138 (save-excursion
1139 (goto-char (+ header-end size))
1140 (skip-chars-forward "\n")
1141 (or (eobp)
1142 (and (looking-at "BABYL OPTIONS:")
1143 (search-forward "\n\^_" nil t))
1144 (and (looking-at "\^L")
1145 (search-forward "\n\^_" nil t))
1146 (let ((case-fold-search t))
1147 (looking-at mmdf-delim1))
1148 (looking-at "From "))))
1149 (goto-char (+ header-end size))
1150 (message "Ignoring invalid Content-Length field")
1151 (sit-for 1 0 t))))
1152
1153 (if (re-search-forward
1154 (concat "^[\^_]?\\("
1155 rmail-unix-mail-delimiter
1156 "\\|"
1157 mmdf-delim1 "\\|"
1158 "^BABYL OPTIONS:\\|"
1159 "\^L\n[01],\\)") nil t)
1160 (goto-char (match-beginning 1))
1161 (goto-char (point-max)))
1162 (setq count (1+ count))
1163 (save-excursion
1164 (save-restriction
1165 (narrow-to-region start (point))
1166 (goto-char (point-min))
1167 (while (search-forward "\n\^_" nil t); single char
1168 (replace-match "\n^_")))); 2 chars: "^" and "_"
1169 (insert ?\^_)
1170 (narrow-to-region (point) (point-max)))
1171 ;;
1172 ;; This kludge is because some versions of sendmail.el
1173 ;; insert an extra newline at the beginning that shouldn't
1174 ;; be there. sendmail.el has been fixed, but old versions
1175 ;; may still be in use. -- rms, 7 May 1993.
1176 ((eolp) (delete-char 1))
1177 (t (error "Cannot convert to babyl format")))))
1178 count))
1179
1180 ;; Delete the "From ..." line, creating various other headers with
1181 ;; information from it if they don't already exist. Now puts the
1182 ;; original line into a mail-from: header line for debugging and for
1183 ;; use by the rmail-output function.
1184 (defun rmail-nuke-pinhead-header ()
1185 (save-excursion
1186 (save-restriction
1187 (let ((start (point))
1188 (end (progn
1189 (condition-case ()
1190 (search-forward "\n\n")
1191 (error
1192 (goto-char (point-max))
1193 (insert "\n\n")))
1194 (point)))
1195 has-from has-date)
1196 (narrow-to-region start end)
1197 (let ((case-fold-search t))
1198 (goto-char start)
1199 (setq has-from (search-forward "\nFrom:" nil t))
1200 (goto-char start)
1201 (setq has-date (and (search-forward "\nDate:" nil t) (point)))
1202 (goto-char start))
1203 (let ((case-fold-search nil))
1204 (if (re-search-forward (concat "^" rmail-unix-mail-delimiter) nil t)
1205 (replace-match
1206 (concat
1207 "Mail-from: \\&"
1208 ;; Keep and reformat the date if we don't
1209 ;; have a Date: field.
1210 (if has-date
1211 ""
1212 (concat
1213 "Date: \\3, \\5 \\4 \\9 \\6 "
1214
1215 ;; The timezone could be matched by group 7 or group 10.
1216 ;; If neither of them matched, assume EST, since only
1217 ;; Easterners would be so sloppy.
1218 ;; It's a shame the substitution can't use "\\10".
1219 (cond
1220 ((/= (match-beginning 7) (match-end 7)) "\\7")
1221 ((/= (match-beginning 10) (match-end 10))
1222 (buffer-substring (match-beginning 10)
1223 (match-end 10)))
1224 (t "EST"))
1225 "\n"))
1226 ;; Keep and reformat the sender if we don't
1227 ;; have a From: field.
1228 (if has-from
1229 ""
1230 "From: \\1\n"))
1231 t)))))))
1232 \f
1233 ;;;; *** Rmail Message Formatting and Header Manipulation ***
1234
1235 (defun rmail-reformat-message (beg end)
1236 (goto-char beg)
1237 (forward-line 1)
1238 (if (/= (following-char) ?0)
1239 (error "Bad format in RMAIL file."))
1240 (let ((buffer-read-only nil)
1241 (delta (- (buffer-size) end)))
1242 (delete-char 1)
1243 (insert ?1)
1244 (forward-line 1)
1245 (let ((case-fold-search t))
1246 (while (looking-at "Summary-line:\\|Mail-From:")
1247 (forward-line 1)))
1248 (if (looking-at "\\*\\*\\* EOOH \\*\\*\\*\n")
1249 (delete-region (point)
1250 (progn (forward-line 1) (point))))
1251 (let ((str (buffer-substring (point)
1252 (save-excursion (search-forward "\n\n" end 'move)
1253 (point)))))
1254 (insert str "*** EOOH ***\n")
1255 (narrow-to-region (point) (- (buffer-size) delta)))
1256 (goto-char (point-min))
1257 (if rmail-message-filter (funcall rmail-message-filter))
1258 (if (or rmail-displayed-headers rmail-ignored-headers)
1259 (rmail-clear-headers))))
1260
1261 (defun rmail-clear-headers (&optional ignored-headers)
1262 "Delete all header fields that Rmail should not show.
1263 If the optional argument IGNORED-HEADERS is non-nil,
1264 delete all header fields whose names match that regexp.
1265 Otherwise, if `rmail-displayed-headers' is non-nil,
1266 delete all header fields *except* those whose names match that regexp.
1267 Otherwise, delete all header fields whose names match `rmail-ignored-headers'."
1268 (if (search-forward "\n\n" nil t)
1269 (if (and rmail-displayed-headers (null ignored-headers))
1270 (save-restriction
1271 (narrow-to-region (point-min) (point))
1272 (let ((buffer-read-only nil) lim)
1273 (goto-char (point-min))
1274 (while (save-excursion
1275 (re-search-forward "\n[^ \t]")
1276 (and (not (eobp))
1277 (setq lim (1- (point)))))
1278 (if (save-excursion
1279 (re-search-forward rmail-displayed-headers lim t))
1280 (goto-char lim)
1281 (delete-region (point) lim))))
1282 (goto-char (point-min)))
1283 (or ignored-headers (setq ignored-headers rmail-ignored-headers))
1284 (save-restriction
1285 (narrow-to-region (point-min) (point))
1286 (let ((buffer-read-only nil))
1287 (while (let ((case-fold-search t))
1288 (goto-char (point-min))
1289 (re-search-forward ignored-headers nil t))
1290 (beginning-of-line)
1291 (delete-region (point)
1292 (progn (re-search-forward "\n[^ \t]")
1293 (1- (point))))))))))
1294
1295 (defun rmail-toggle-header ()
1296 "Show original message header if pruned header currently shown, or vice versa."
1297 (interactive)
1298 (rmail-maybe-set-message-counters)
1299 (narrow-to-region (rmail-msgbeg rmail-current-message) (point-max))
1300 (let ((buffer-read-only nil))
1301 (goto-char (point-min))
1302 (forward-line 1)
1303 (if (= (following-char) ?1)
1304 (progn (delete-char 1)
1305 (insert ?0)
1306 (forward-line 1)
1307 (let ((case-fold-search t))
1308 (while (looking-at "Summary-Line:\\|Mail-From:")
1309 (forward-line 1)))
1310 (insert "*** EOOH ***\n")
1311 (forward-char -1)
1312 (search-forward "\n*** EOOH ***\n")
1313 (forward-line -1)
1314 (let ((temp (point)))
1315 (and (search-forward "\n\n" nil t)
1316 (delete-region temp (point))))
1317 (goto-char (point-min))
1318 (search-forward "\n*** EOOH ***\n")
1319 (narrow-to-region (point) (point-max)))
1320 (rmail-reformat-message (point-min) (point-max))))
1321 (rmail-highlight-headers))
1322 \f
1323 ;;;; *** Rmail Attributes and Keywords ***
1324
1325 ;; Make a string describing current message's attributes and keywords
1326 ;; and set it up as the name of a minor mode
1327 ;; so it will appear in the mode line.
1328 (defun rmail-display-labels ()
1329 (let ((blurb "") (beg (point-min-marker)) (end (point-max-marker)))
1330 (save-excursion
1331 (unwind-protect
1332 (progn
1333 (widen)
1334 (goto-char (rmail-msgbeg rmail-current-message))
1335 (forward-line 1)
1336 (if (looking-at "[01],")
1337 (progn
1338 (narrow-to-region (point) (progn (end-of-line) (point)))
1339 ;; Truly valid BABYL format requires a space before each
1340 ;; attribute or keyword name. Put them in if missing.
1341 (let (buffer-read-only)
1342 (goto-char (point-min))
1343 (while (search-forward "," nil t)
1344 (or (looking-at "[ ,]") (eobp)
1345 (insert " "))))
1346 (goto-char (point-max))
1347 (if (search-backward ",," nil 'move)
1348 (progn
1349 (if (> (point) (1+ (point-min)))
1350 (setq blurb (buffer-substring (+ 1 (point-min)) (point))))
1351 (if (> (- (point-max) (point)) 2)
1352 (setq blurb
1353 (concat blurb
1354 ";"
1355 (buffer-substring (+ (point) 3)
1356 (1- (point-max)))))))))))
1357 ;; Note: we don't use save-restriction because that does not work right
1358 ;; if changes are made outside the saved restriction
1359 ;; before that restriction is restored.
1360 (narrow-to-region beg end)
1361 (set-marker beg nil)
1362 (set-marker end nil)))
1363 (while (string-match " +," blurb)
1364 (setq blurb (concat (substring blurb 0 (match-beginning 0)) ","
1365 (substring blurb (match-end 0)))))
1366 (while (string-match ", +" blurb)
1367 (setq blurb (concat (substring blurb 0 (match-beginning 0)) ","
1368 (substring blurb (match-end 0)))))
1369 (setq mode-line-process
1370 (format " %d/%d%s"
1371 rmail-current-message rmail-total-messages blurb))))
1372
1373 ;; Turn an attribute of a message on or off according to STATE.
1374 ;; ATTR is the name of the attribute, as a string.
1375 ;; MSGNUM is message number to change; nil means current message.
1376 (defun rmail-set-attribute (attr state &optional msgnum)
1377 (let ((omax (point-max-marker))
1378 (omin (point-min-marker))
1379 (buffer-read-only nil))
1380 (or msgnum (setq msgnum rmail-current-message))
1381 (if (> msgnum 0)
1382 (unwind-protect
1383 (save-excursion
1384 (widen)
1385 (goto-char (+ 3 (rmail-msgbeg msgnum)))
1386 (let ((curstate
1387 (not
1388 (null (search-backward (concat ", " attr ",")
1389 (prog1 (point) (end-of-line)) t)))))
1390 (or (eq curstate (not (not state)))
1391 (if curstate
1392 (delete-region (point) (1- (match-end 0)))
1393 (beginning-of-line)
1394 (forward-char 2)
1395 (insert " " attr ","))))
1396 (if (string= attr "deleted")
1397 (rmail-set-message-deleted-p msgnum state)))
1398 ;; Note: we don't use save-restriction because that does not work right
1399 ;; if changes are made outside the saved restriction
1400 ;; before that restriction is restored.
1401 (narrow-to-region omin omax)
1402 (set-marker omin nil)
1403 (set-marker omax nil)
1404 (if (= msgnum rmail-current-message)
1405 (rmail-display-labels))))))
1406
1407 ;; Return t if the attributes/keywords line of msg number MSG
1408 ;; contains a match for the regexp LABELS.
1409 (defun rmail-message-labels-p (msg labels)
1410 (save-excursion
1411 (save-restriction
1412 (widen)
1413 (goto-char (rmail-msgbeg msg))
1414 (forward-char 3)
1415 (re-search-backward labels (prog1 (point) (end-of-line)) t))))
1416 \f
1417 ;;;; *** Rmail Message Selection And Support ***
1418
1419 (defun rmail-msgend (n)
1420 (marker-position (aref rmail-message-vector (1+ n))))
1421
1422 (defun rmail-msgbeg (n)
1423 (marker-position (aref rmail-message-vector n)))
1424
1425 (defun rmail-widen-to-current-msgbeg (function)
1426 "Call FUNCTION with point at start of internal data of current message.
1427 Assumes that bounds were previously narrowed to display the message in Rmail.
1428 The bounds are widened enough to move point where desired, then narrowed
1429 again afterward.
1430
1431 FUNCTION may not change the visible text of the message, but it may
1432 change the invisible header text."
1433 (save-excursion
1434 (let ((obeg (- (point-max) (point-min))))
1435 (unwind-protect
1436 (progn
1437 (narrow-to-region (rmail-msgbeg rmail-current-message)
1438 (point-max))
1439 (goto-char (point-min))
1440 (funcall function))
1441 ;; Note: we don't use save-restriction because that does not work right
1442 ;; if changes are made outside the saved restriction
1443 ;; before that restriction is restored.
1444 ;; Here we assume that changes made by FUNCTION
1445 ;; occur before the visible region of the message.
1446 (narrow-to-region (- (point-max) obeg) (point-max))))))
1447
1448 (defun rmail-forget-messages ()
1449 (unwind-protect
1450 (if (vectorp rmail-message-vector)
1451 (let* ((i 0)
1452 (v rmail-message-vector)
1453 (n (length v)))
1454 (while (< i n)
1455 (move-marker (aref v i) nil)
1456 (setq i (1+ i)))))
1457 (setq rmail-message-vector nil)
1458 (setq rmail-deleted-vector nil)))
1459
1460 (defun rmail-maybe-set-message-counters ()
1461 (if (not (and rmail-deleted-vector
1462 rmail-message-vector
1463 rmail-current-message
1464 rmail-total-messages))
1465 (rmail-set-message-counters)))
1466
1467 (defun rmail-count-new-messages (&optional nomsg)
1468 (let* ((case-fold-search nil)
1469 (total-messages 0)
1470 (messages-head nil)
1471 (deleted-head nil))
1472 (or nomsg (message "Counting new messages..."))
1473 (goto-char (point-max))
1474 ;; Put at the end of messages-head
1475 ;; the entry for message N+1, which marks
1476 ;; the end of message N. (N = number of messages).
1477 (search-backward "\n\^_")
1478 (forward-char 1)
1479 (setq messages-head (list (point-marker)))
1480 (rmail-set-message-counters-counter (point-min))
1481 (setq rmail-current-message (1+ rmail-total-messages))
1482 (setq rmail-total-messages
1483 (+ rmail-total-messages total-messages))
1484 (setq rmail-message-vector
1485 (vconcat rmail-message-vector (cdr messages-head)))
1486 (aset rmail-message-vector
1487 rmail-current-message (car messages-head))
1488 (setq rmail-deleted-vector
1489 (concat rmail-deleted-vector deleted-head))
1490 (setq rmail-summary-vector
1491 (vconcat rmail-summary-vector (make-vector total-messages nil)))
1492 (goto-char (point-min))
1493 (or nomsg (message "Counting new messages...done (%d)" total-messages))))
1494
1495 (defun rmail-set-message-counters ()
1496 (rmail-forget-messages)
1497 (save-excursion
1498 (save-restriction
1499 (widen)
1500 (let* ((point-save (point))
1501 (total-messages 0)
1502 (messages-after-point)
1503 (case-fold-search nil)
1504 (messages-head nil)
1505 (deleted-head nil))
1506 (message "Counting messages...")
1507 (goto-char (point-max))
1508 ;; Put at the end of messages-head
1509 ;; the entry for message N+1, which marks
1510 ;; the end of message N. (N = number of messages).
1511 (search-backward "\n\^_" nil t)
1512 (if (/= (point) (point-max)) (forward-char 1))
1513 (setq messages-head (list (point-marker)))
1514 (rmail-set-message-counters-counter (min (point) point-save))
1515 (setq messages-after-point total-messages)
1516 (rmail-set-message-counters-counter)
1517 (setq rmail-total-messages total-messages)
1518 (setq rmail-current-message
1519 (min total-messages
1520 (max 1 (- total-messages messages-after-point))))
1521 (setq rmail-message-vector
1522 (apply 'vector (cons (point-min-marker) messages-head))
1523 rmail-deleted-vector (concat "D" deleted-head)
1524 rmail-summary-vector (make-vector rmail-total-messages nil))
1525 (message "Counting messages...done")))))
1526
1527 (defun rmail-set-message-counters-counter (&optional stop)
1528 (while (search-backward "\n\^_\^L\n" stop t)
1529 (forward-char 1)
1530 (setq messages-head (cons (point-marker) messages-head))
1531 (save-excursion
1532 (setq deleted-head
1533 (cons (if (search-backward ", deleted,"
1534 (prog1 (point)
1535 (forward-line 2))
1536 t)
1537 ?D ?\ )
1538 deleted-head)))
1539 (if (zerop (% (setq total-messages (1+ total-messages)) 20))
1540 (message "Counting messages...%d" total-messages))))
1541
1542 (defun rmail-beginning-of-message ()
1543 "Show current message starting from the beginning."
1544 (interactive)
1545 (rmail-show-message rmail-current-message))
1546
1547 (defun rmail-show-message (&optional n no-summary)
1548 "Show message number N (prefix argument), counting from start of file.
1549 If summary buffer is currently displayed, update current message there also."
1550 (interactive "p")
1551 (rmail-maybe-set-message-counters)
1552 (widen)
1553 (if (zerop rmail-total-messages)
1554 (progn (narrow-to-region (point-min) (1- (point-max)))
1555 (goto-char (point-min))
1556 (setq mode-line-process nil))
1557 (let (blurb)
1558 (if (not n)
1559 (setq n rmail-current-message)
1560 (cond ((<= n 0)
1561 (setq n 1
1562 rmail-current-message 1
1563 blurb "No previous message"))
1564 ((> n rmail-total-messages)
1565 (setq n rmail-total-messages
1566 rmail-current-message rmail-total-messages
1567 blurb "No following message"))
1568 (t
1569 (setq rmail-current-message n))))
1570 (let ((beg (rmail-msgbeg n))
1571 (end (rmail-msgend n)))
1572 (goto-char beg)
1573 (forward-line 1)
1574 (if (= (following-char) ?0)
1575 (progn
1576 (rmail-reformat-message beg end)
1577 (rmail-set-attribute "unseen" nil))
1578 (search-forward "\n*** EOOH ***\n" end t)
1579 (narrow-to-region (point) end))
1580 (goto-char (point-min))
1581 (rmail-display-labels)
1582 (rmail-highlight-headers)
1583 (if transient-mark-mode (deactivate-mark))
1584 (run-hooks 'rmail-show-message-hook)
1585 ;; If there is a summary buffer, try to move to this message
1586 ;; in that buffer. But don't complain if this message
1587 ;; is not mentioned in the summary.
1588 ;; Don't do this at all if we were called on behalf
1589 ;; of cursor motion in the summary buffer.
1590 (and (rmail-summary-exists) (not no-summary)
1591 (let ((curr-msg rmail-current-message))
1592 (rmail-select-summary
1593 (rmail-summary-goto-msg curr-msg t t))))
1594 (if blurb
1595 (message blurb))))))
1596
1597 ;; Find all occurrences of certain fields, and highlight them.
1598 (defun rmail-highlight-headers ()
1599 ;; Do this only if the system supports faces.
1600 (if (and (fboundp 'internal-find-face)
1601 rmail-highlighted-headers)
1602 (save-excursion
1603 (search-forward "\n\n" nil 'move)
1604 (save-restriction
1605 (narrow-to-region (point-min) (point))
1606 (let ((case-fold-search t)
1607 (inhibit-read-only t)
1608 ;; Highlight with boldface if that is available.
1609 ;; Otherwise use the `highlight' face.
1610 (face (or rmail-highlight-face
1611 (if (face-differs-from-default-p 'bold)
1612 'bold 'highlight)))
1613 ;; List of overlays to reuse.
1614 (overlays rmail-overlay-list))
1615 (goto-char (point-min))
1616 (while (re-search-forward rmail-highlighted-headers nil t)
1617 (skip-chars-forward " \t")
1618 (let ((beg (point))
1619 overlay)
1620 (while (progn (forward-line 1)
1621 (looking-at "[ \t]")))
1622 ;; Back up over newline, then trailing spaces or tabs
1623 (forward-char -1)
1624 (while (member (preceding-char) '(? ?\t))
1625 (forward-char -1))
1626 (if overlays
1627 ;; Reuse an overlay we already have.
1628 (progn
1629 (setq overlay (car overlays)
1630 overlays (cdr overlays))
1631 (overlay-put overlay 'face face)
1632 (move-overlay overlay beg (point)))
1633 ;; Make a new overlay and add it to
1634 ;; rmail-overlay-list.
1635 (setq overlay (make-overlay beg (point)))
1636 (overlay-put overlay 'face face)
1637 (setq rmail-overlay-list
1638 (cons overlay rmail-overlay-list))))))))))
1639
1640 (defun rmail-next-message (n)
1641 "Show following message whether deleted or not.
1642 With prefix arg N, moves forward N messages, or backward if N is negative."
1643 (interactive "p")
1644 (rmail-maybe-set-message-counters)
1645 (rmail-show-message (+ rmail-current-message n)))
1646
1647 (defun rmail-previous-message (n)
1648 "Show previous message whether deleted or not.
1649 With prefix arg N, moves backward N messages, or forward if N is negative."
1650 (interactive "p")
1651 (rmail-next-message (- n)))
1652
1653 (defun rmail-next-undeleted-message (n)
1654 "Show following non-deleted message.
1655 With prefix arg N, moves forward N non-deleted messages,
1656 or backward if N is negative.
1657
1658 Returns t if a new message is being shown, nil otherwise."
1659 (interactive "p")
1660 (rmail-maybe-set-message-counters)
1661 (let ((lastwin rmail-current-message)
1662 (current rmail-current-message))
1663 (while (and (> n 0) (< current rmail-total-messages))
1664 (setq current (1+ current))
1665 (if (not (rmail-message-deleted-p current))
1666 (setq lastwin current n (1- n))))
1667 (while (and (< n 0) (> current 1))
1668 (setq current (1- current))
1669 (if (not (rmail-message-deleted-p current))
1670 (setq lastwin current n (1+ n))))
1671 (if (/= lastwin rmail-current-message)
1672 (progn (rmail-show-message lastwin)
1673 t)
1674 (if (< n 0)
1675 (message "No previous nondeleted message"))
1676 (if (> n 0)
1677 (message "No following nondeleted message"))
1678 nil)))
1679
1680 (defun rmail-previous-undeleted-message (n)
1681 "Show previous non-deleted message.
1682 With prefix argument N, moves backward N non-deleted messages,
1683 or forward if N is negative."
1684 (interactive "p")
1685 (rmail-next-undeleted-message (- n)))
1686
1687 (defun rmail-first-message ()
1688 "Show first message in file."
1689 (interactive)
1690 (rmail-maybe-set-message-counters)
1691 (rmail-show-message 1))
1692
1693 (defun rmail-last-message ()
1694 "Show last message in file."
1695 (interactive)
1696 (rmail-maybe-set-message-counters)
1697 (rmail-show-message rmail-total-messages))
1698
1699 (defun rmail-what-message ()
1700 (let ((where (point))
1701 (low 1)
1702 (high rmail-total-messages)
1703 (mid (/ rmail-total-messages 2)))
1704 (while (> (- high low) 1)
1705 (if (>= where (rmail-msgbeg mid))
1706 (setq low mid)
1707 (setq high mid))
1708 (setq mid (+ low (/ (- high low) 2))))
1709 (if (>= where (rmail-msgbeg high)) high low)))
1710
1711 (defun rmail-message-recipients-p (msg recipients &optional primary-only)
1712 (save-restriction
1713 (goto-char (rmail-msgbeg msg))
1714 (search-forward "\n*** EOOH ***\n")
1715 (narrow-to-region (point) (progn (search-forward "\n\n") (point)))
1716 (or (string-match recipients (or (mail-fetch-field "To") ""))
1717 (string-match recipients (or (mail-fetch-field "From") ""))
1718 (if (not primary-only)
1719 (string-match recipients (or (mail-fetch-field "Cc") ""))))))
1720
1721 (defun rmail-message-regexp-p (msg regexp)
1722 "Return t, if for message number MSG, regexp REGEXP matches in the header."
1723 (goto-char (rmail-msgbeg msg))
1724 (let ((end
1725 (save-excursion
1726 (search-forward "*** EOOH ***" (point-max)) (point))))
1727 (re-search-forward regexp end t)))
1728
1729 (defvar rmail-search-last-regexp nil)
1730 (defun rmail-search (regexp &optional n)
1731 "Show message containing next match for REGEXP (but not the current msg).
1732 Prefix argument gives repeat count; negative argument means search
1733 backwards (through earlier messages).
1734 Interactively, empty argument means use same regexp used last time."
1735 (interactive
1736 (let* ((reversep (< (prefix-numeric-value current-prefix-arg) 0))
1737 (prompt
1738 (concat (if reversep "Reverse " "") "Rmail search (regexp): "))
1739 regexp)
1740 (if rmail-search-last-regexp
1741 (setq prompt (concat prompt
1742 "(default "
1743 rmail-search-last-regexp
1744 ") ")))
1745 (setq regexp (read-string prompt))
1746 (cond ((not (equal regexp ""))
1747 (setq rmail-search-last-regexp regexp))
1748 ((not rmail-search-last-regexp)
1749 (error "No previous Rmail search string")))
1750 (list rmail-search-last-regexp
1751 (prefix-numeric-value current-prefix-arg))))
1752 (or n (setq n 1))
1753 (message "%sRmail search for %s..."
1754 (if (< n 0) "Reverse " "")
1755 regexp)
1756 (rmail-maybe-set-message-counters)
1757 (let ((omin (point-min))
1758 (omax (point-max))
1759 (opoint (point))
1760 win
1761 (reversep (< n 0))
1762 (msg rmail-current-message))
1763 (unwind-protect
1764 (progn
1765 (widen)
1766 (while (/= n 0)
1767 ;; Check messages one by one, advancing message number up or down
1768 ;; but searching forward through each message.
1769 (if reversep
1770 (while (and (null win) (> msg 1))
1771 (goto-char (rmail-msgbeg (setq msg (1- msg))))
1772 (setq win (re-search-forward
1773 regexp (rmail-msgend msg) t)))
1774 (while (and (null win) (< msg rmail-total-messages))
1775 (goto-char (rmail-msgbeg (setq msg (1+ msg))))
1776 (setq win (re-search-forward regexp (rmail-msgend msg) t))))
1777 (setq n (+ n (if reversep 1 -1)))))
1778 (if win
1779 (progn
1780 ;; If this is a reverse search and we found a message,
1781 ;; search backward thru this message to position point.
1782 (if reversep
1783 (progn
1784 (goto-char (rmail-msgend msg))
1785 (re-search-backward
1786 regexp (rmail-msgbeg msg) t)))
1787 (setq win (point))
1788 (rmail-show-message msg)
1789 (message "%sRmail search for %s...done"
1790 (if reversep "Reverse " "")
1791 regexp)
1792 (goto-char win))
1793 (goto-char opoint)
1794 (narrow-to-region omin omax)
1795 (ding)
1796 (message "Search failed: %s" regexp)))))
1797
1798 (defun rmail-search-backwards (regexp &optional n)
1799 "Show message containing previous match for REGEXP.
1800 Prefix argument gives repeat count; negative argument means search
1801 forward (through later messages).
1802 Interactively, empty argument means use same regexp used last time."
1803 (interactive
1804 (let* ((reversep (>= (prefix-numeric-value current-prefix-arg) 0))
1805 (prompt
1806 (concat (if reversep "Reverse " "") "Rmail search (regexp): "))
1807 regexp)
1808 (if rmail-search-last-regexp
1809 (setq prompt (concat prompt
1810 "(default "
1811 rmail-search-last-regexp
1812 ") ")))
1813 (setq regexp (read-string prompt))
1814 (cond ((not (equal regexp ""))
1815 (setq rmail-search-last-regexp regexp))
1816 ((not rmail-search-last-regexp)
1817 (error "No previous Rmail search string")))
1818 (list rmail-search-last-regexp
1819 (prefix-numeric-value current-prefix-arg))))
1820 (rmail-search regexp (- (or n 1))))
1821
1822 ;; Show the first message which has the `unseen' attribute.
1823 (defun rmail-first-unseen-message ()
1824 (rmail-maybe-set-message-counters)
1825 (let ((current 1)
1826 found)
1827 (save-restriction
1828 (widen)
1829 (while (and (not found) (<= current rmail-total-messages))
1830 (if (rmail-message-labels-p current ", ?\\(unseen\\),")
1831 (setq found current))
1832 (setq current (1+ current))))
1833 ;; Let the caller show the message.
1834 ;; (if found
1835 ;; (rmail-show-message found))
1836 found))
1837
1838 (defun rmail-next-same-subject (n)
1839 "Go to the next mail message having the same subject header.
1840 With prefix argument N, do this N times.
1841 If N is negative, go backwards instead."
1842 (interactive "p")
1843 (let* ((subject (mail-fetch-field "Subject"))
1844 (search-regexp (concat "^Subject: *\\(Re: *\\)?"
1845 (regexp-quote subject)
1846 "\n"))
1847 (forward (> n 0))
1848 (i rmail-current-message)
1849 found)
1850 (if (string-match "Re:[ \t]*" subject)
1851 (setq subject (substring subject (match-end 0))))
1852 (save-excursion
1853 (save-restriction
1854 (widen)
1855 (while (and (/= n 0)
1856 (if forward
1857 (< i rmail-total-messages)
1858 (> i 1)))
1859 (let (done)
1860 (while (and (not done)
1861 (if forward
1862 (< i rmail-total-messages)
1863 (> i 1)))
1864 (setq i (if forward (1+ i) (1- i)))
1865 (goto-char (rmail-msgbeg i))
1866 (search-forward "\n*** EOOH ***\n")
1867 (let ((beg (point)) end)
1868 (search-forward "\n\n")
1869 (setq end (point))
1870 (goto-char beg)
1871 (setq done (re-search-forward search-regexp end t))))
1872 (if done (setq found i)))
1873 (setq n (if forward (1- n) (1+ n))))))
1874 (if found
1875 (rmail-show-message found)
1876 (error "No %s message with same subject"
1877 (if forward "following" "previous")))))
1878
1879 (defun rmail-previous-same-subject (n)
1880 "Go to the previous mail message having the same subject header.
1881 With prefix argument N, do this N times.
1882 If N is negative, go forwards instead."
1883 (interactive "p")
1884 (rmail-next-same-subject (- n)))
1885 \f
1886 ;;;; *** Rmail Message Deletion Commands ***
1887
1888 (defun rmail-message-deleted-p (n)
1889 (= (aref rmail-deleted-vector n) ?D))
1890
1891 (defun rmail-set-message-deleted-p (n state)
1892 (aset rmail-deleted-vector n (if state ?D ?\ )))
1893
1894 (defun rmail-delete-message ()
1895 "Delete this message and stay on it."
1896 (interactive)
1897 (rmail-set-attribute "deleted" t)
1898 (run-hooks 'rmail-delete-message-hook))
1899
1900 (defun rmail-undelete-previous-message ()
1901 "Back up to deleted message, select it, and undelete it."
1902 (interactive)
1903 (let ((msg rmail-current-message))
1904 (while (and (> msg 0)
1905 (not (rmail-message-deleted-p msg)))
1906 (setq msg (1- msg)))
1907 (if (= msg 0)
1908 (error "No previous deleted message")
1909 (if (/= msg rmail-current-message)
1910 (rmail-show-message msg))
1911 (rmail-set-attribute "deleted" nil)
1912 (if (rmail-summary-exists)
1913 (save-excursion
1914 (set-buffer rmail-summary-buffer)
1915 (rmail-summary-mark-undeleted msg)))
1916 (rmail-maybe-display-summary))))
1917
1918 (defun rmail-delete-forward (&optional backward)
1919 "Delete this message and move to next nondeleted one.
1920 Deleted messages stay in the file until the \\[rmail-expunge] command is given.
1921 With prefix argument, delete and move backward.
1922
1923 Returns t if a new message is displayed after the delete, or nil otherwise."
1924 (interactive "P")
1925 (rmail-set-attribute "deleted" t)
1926 (run-hooks 'rmail-delete-message-hook)
1927 (let ((del-msg rmail-current-message))
1928 (if (rmail-summary-exists)
1929 (rmail-select-summary
1930 (rmail-summary-mark-deleted del-msg)))
1931 (prog1 (rmail-next-undeleted-message (if backward -1 1))
1932 (rmail-maybe-display-summary))))
1933
1934 (defun rmail-delete-backward ()
1935 "Delete this message and move to previous nondeleted one.
1936 Deleted messages stay in the file until the \\[rmail-expunge] command is given."
1937 (interactive)
1938 (rmail-delete-forward t))
1939
1940 ;; Compute the message number a given message would have after expunging.
1941 ;; The present number of the message is OLDNUM.
1942 ;; DELETEDVEC should be rmail-deleted-vector.
1943 ;; The value is nil for a message that would be deleted.
1944 (defun rmail-msg-number-after-expunge (deletedvec oldnum)
1945 (if (or (null oldnum) (= (aref deletedvec oldnum) ?D))
1946 nil
1947 (let ((i 0)
1948 (newnum 0))
1949 (while (< i oldnum)
1950 (if (/= (aref deletedvec i) ?D)
1951 (setq newnum (1+ newnum)))
1952 (setq i (1+ i)))
1953 newnum)))
1954
1955 (defun rmail-only-expunge ()
1956 "Actually erase all deleted messages in the file."
1957 (interactive)
1958 (message "Expunging deleted messages...")
1959 ;; Discard all undo records for this buffer.
1960 (or (eq buffer-undo-list t)
1961 (setq buffer-undo-list nil))
1962 (rmail-maybe-set-message-counters)
1963 (let* ((omax (- (buffer-size) (point-max)))
1964 (omin (- (buffer-size) (point-min)))
1965 (opoint (if (and (> rmail-current-message 0)
1966 (rmail-message-deleted-p rmail-current-message))
1967 0
1968 (- (point) (point-min))))
1969 (messages-head (cons (aref rmail-message-vector 0) nil))
1970 (messages-tail messages-head)
1971 ;; Don't make any undo records for the expunging.
1972 (buffer-undo-list t)
1973 (win))
1974 (unwind-protect
1975 (save-excursion
1976 (widen)
1977 (goto-char (point-min))
1978 (let ((counter 0)
1979 (number 1)
1980 (total rmail-total-messages)
1981 (new-message-number rmail-current-message)
1982 (new-summary nil)
1983 (rmailbuf (current-buffer))
1984 (buffer-read-only nil)
1985 (messages rmail-message-vector)
1986 (deleted rmail-deleted-vector)
1987 (summary rmail-summary-vector))
1988 (setq rmail-total-messages nil
1989 rmail-current-message nil
1990 rmail-message-vector nil
1991 rmail-deleted-vector nil
1992 rmail-summary-vector nil)
1993
1994 ;; Find each sendmail buffer that is set to reply
1995 ;; to a message in this buffer, and update its
1996 ;; message number.
1997 (let ((bufs (buffer-list)))
1998 (while bufs
1999 (save-excursion
2000 (set-buffer (car bufs))
2001 (and (boundp 'rmail-send-actions-rmail-buffer)
2002 (eq rmail-send-actions-rmail-buffer rmailbuf)
2003 (setq rmail-send-actions-rmail-msg-number
2004 (rmail-msg-number-after-expunge
2005 deleted
2006 rmail-send-actions-rmail-msg-number))))
2007 (setq bufs (cdr bufs))))
2008
2009 (while (<= number total)
2010 (if (= (aref deleted number) ?D)
2011 (progn
2012 (delete-region
2013 (marker-position (aref messages number))
2014 (marker-position (aref messages (1+ number))))
2015 (move-marker (aref messages number) nil)
2016 (if (> new-message-number counter)
2017 (setq new-message-number (1- new-message-number))))
2018 (setq counter (1+ counter))
2019 (setq messages-tail
2020 (setcdr messages-tail
2021 (cons (aref messages number) nil)))
2022 (setq new-summary
2023 (cons (if (= counter number) (aref summary (1- number)))
2024 new-summary)))
2025 (if (zerop (% (setq number (1+ number)) 20))
2026 (message "Expunging deleted messages...%d" number)))
2027 (setq messages-tail
2028 (setcdr messages-tail
2029 (cons (aref messages number) nil)))
2030 (setq rmail-current-message new-message-number
2031 rmail-total-messages counter
2032 rmail-message-vector (apply 'vector messages-head)
2033 rmail-deleted-vector (make-string (1+ counter) ?\ )
2034 rmail-summary-vector (vconcat (nreverse new-summary))
2035 win t)))
2036 (message "Expunging deleted messages...done")
2037 (if (not win)
2038 (narrow-to-region (- (buffer-size) omin) (- (buffer-size) omax)))
2039 (rmail-show-message
2040 (if (zerop rmail-current-message) 1 nil))
2041 (forward-char opoint))))
2042
2043 (defun rmail-expunge ()
2044 "Erase deleted messages from Rmail file and summary buffer."
2045 (interactive)
2046 (rmail-only-expunge)
2047 (if (rmail-summary-exists)
2048 (rmail-select-summary
2049 (rmail-update-summary))))
2050 \f
2051 ;;;; *** Rmail Mailing Commands ***
2052
2053 (defun rmail-start-mail (&rest args)
2054 (if (and window-system rmail-mail-new-frame)
2055 (prog1
2056 (apply 'mail-other-frame args)
2057 ;; This is not a standard frame parameter;
2058 ;; nothing except sendmail.el looks at it.
2059 (modify-frame-parameters (selected-frame)
2060 '((mail-dedicated-frame . t))))
2061 (apply 'mail-other-window args)))
2062
2063 (defun rmail-mail ()
2064 "Send mail in another window.
2065 While composing the message, use \\[mail-yank-original] to yank the
2066 original message into it."
2067 (interactive)
2068 (rmail-start-mail nil nil nil nil nil (current-buffer)))
2069
2070 (defun rmail-continue ()
2071 "Continue composing outgoing message previously being composed."
2072 (interactive)
2073 (rmail-start-mail t))
2074
2075 (defun rmail-reply (just-sender)
2076 "Reply to the current message.
2077 Normally include CC: to all other recipients of original message;
2078 prefix argument means ignore them. While composing the reply,
2079 use \\[mail-yank-original] to yank the original message into it."
2080 (interactive "P")
2081 (let (from reply-to cc subject date to message-id resent-reply-to
2082 (msgnum rmail-current-message)
2083 (rmail-buffer (current-buffer)))
2084 (save-excursion
2085 (save-restriction
2086 (widen)
2087 (goto-char (rmail-msgbeg rmail-current-message))
2088 (forward-line 1)
2089 (if (= (following-char) ?0)
2090 (narrow-to-region
2091 (progn (forward-line 2)
2092 (point))
2093 (progn (search-forward "\n\n" (rmail-msgend rmail-current-message)
2094 'move)
2095 (point)))
2096 (narrow-to-region (point)
2097 (progn (search-forward "\n*** EOOH ***\n")
2098 (beginning-of-line) (point))))
2099 (setq resent-reply-to (mail-fetch-field "resent-reply-to" t)
2100 from (mail-fetch-field "from")
2101 reply-to (or resent-reply-to
2102 (mail-fetch-field "reply-to" nil t)
2103 from)
2104 cc (cond (just-sender nil)
2105 (resent-reply-to (mail-fetch-field "resent-cc" t))
2106 (t (mail-fetch-field "cc" nil t)))
2107 subject (or (and resent-reply-to
2108 (mail-fetch-field "resent-subject" t))
2109 (mail-fetch-field "subject"))
2110 date (or (and resent-reply-to
2111 (mail-fetch-field "resent-date" t))
2112 (mail-fetch-field "date"))
2113 to (cond (resent-reply-to
2114 (or (mail-fetch-field "resent-to" t)) "")
2115 ((mail-fetch-field "to" nil t))
2116 ;((mail-fetch-field "apparently-to")) ack gag barf
2117 (t ""))
2118 message-id (cond (resent-reply-to
2119 (mail-fetch-field "resent-message-id" t))
2120 ((mail-fetch-field "message-id"))))))
2121 (and (stringp subject)
2122 (setq subject
2123 (concat rmail-reply-prefix
2124 (if (string-match rmail-reply-regexp subject)
2125 (substring subject (match-end 0))
2126 subject))))
2127 (rmail-start-mail nil
2128 (mail-strip-quoted-names reply-to)
2129 subject
2130 (rmail-make-in-reply-to-field from date message-id)
2131 (if just-sender
2132 nil
2133 (let* ((cc-list (rmail-dont-reply-to
2134 (mail-strip-quoted-names
2135 (if (null cc) to (concat to ", " cc))))))
2136 (if (string= cc-list "") nil cc-list)))
2137 (current-buffer)
2138 (list (list '(lambda ()
2139 (let ((msgnum rmail-send-actions-rmail-msg-number))
2140 (save-excursion
2141 (set-buffer rmail-send-actions-rmail-buffer)
2142 (if msgnum
2143 (rmail-set-attribute "answered" t msgnum))))))))
2144 ;; We keep the rmail buffer and message number in these
2145 ;; buffer-local vars in the sendmail buffer,
2146 ;; so that rmail-only-expunge can relocate the message number.
2147 (make-local-variable 'rmail-send-actions-rmail-buffer)
2148 (make-local-variable 'rmail-send-actions-rmail-msg-number)
2149 (setq rmail-send-actions-rmail-buffer rmail-buffer)
2150 (setq rmail-send-actions-rmail-msg-number msgnum)))
2151
2152 (defun rmail-make-in-reply-to-field (from date message-id)
2153 (cond ((not from)
2154 (if message-id
2155 message-id
2156 nil))
2157 (mail-use-rfc822
2158 (require 'rfc822)
2159 (let ((tem (car (rfc822-addresses from))))
2160 (if message-id
2161 (if (string-match
2162 (regexp-quote (if (string-match "@[^@]*\\'" tem)
2163 (substring tem 0 (match-beginning 0))
2164 tem))
2165 message-id)
2166 ;; Message-ID is sufficiently informative
2167 message-id
2168 (concat message-id " (" tem ")"))
2169 ;; Copy TEM, discarding text properties.
2170 (setq tem (copy-sequence tem))
2171 (set-text-properties 0 (length tem) nil tem)
2172 (setq tem (copy-sequence tem))
2173 ;; Use prin1 to fake RFC822 quoting
2174 (let ((field (prin1-to-string tem)))
2175 (if date
2176 (concat field "'s message of " date)
2177 field)))))
2178 ((let* ((foo "[^][\000-\037\177-\377()<>@,;:\\\" ]+")
2179 (bar "[^][\000-\037\177-\377()<>@,;:\\\"]+"))
2180 ;; Can't use format because format loses on \000 (unix *^&%*^&%$!!)
2181 (or (string-match (concat "\\`[ \t]*\\(" bar
2182 "\\)\\(<" foo "@" foo ">\\)?[ \t]*\\'")
2183 ;; "Unix Loser <Foo@bar.edu>" => "Unix Loser"
2184 from)
2185 (string-match (concat "\\`[ \t]*<" foo "@" foo ">[ \t]*(\\("
2186 bar "\\))[ \t]*\\'")
2187 ;; "<Bugs@bar.edu>" (Losing Unix) => "Losing Unix"
2188 from)))
2189 (let ((start (match-beginning 1))
2190 (end (match-end 1)))
2191 ;; Trim whitespace which above regexp match allows
2192 (while (and (< start end)
2193 (memq (aref from start) '(?\t ?\ )))
2194 (setq start (1+ start)))
2195 (while (and (< start end)
2196 (memq (aref from (1- end)) '(?\t ?\ )))
2197 (setq end (1- end)))
2198 (let ((field (substring from start end)))
2199 (if date (setq field (concat "message from " field " on " date)))
2200 (if message-id
2201 ;; "<AA259@bar.edu> (message from Unix Loser on 1-Apr-89)"
2202 (concat message-id " (" field ")")
2203 field))))
2204 (t
2205 ;; If we can't kludge it simply, do it correctly
2206 (let ((mail-use-rfc822 t))
2207 (rmail-make-in-reply-to-field from date message-id)))))
2208 \f
2209 (defun rmail-forward (resend)
2210 "Forward the current message to another user.
2211 With prefix argument, \"resend\" the message instead of forwarding it;
2212 see the documentation of `rmail-resend'."
2213 (interactive "P")
2214 (if resend
2215 (call-interactively 'rmail-resend)
2216 (let ((forward-buffer (current-buffer))
2217 (msgnum rmail-current-message)
2218 (subject (concat "["
2219 (let ((from (or (mail-fetch-field "From")
2220 (mail-fetch-field ">From"))))
2221 (if from
2222 (concat (mail-strip-quoted-names from) ": ")
2223 ""))
2224 (or (mail-fetch-field "Subject") "")
2225 "]")))
2226 ;; If only one window, use it for the mail buffer.
2227 ;; Otherwise, use another window for the mail buffer
2228 ;; so that the Rmail buffer remains visible
2229 ;; and sending the mail will get back to it.
2230 (if (funcall (if (and (not rmail-mail-new-frame) (one-window-p t))
2231 (function mail)
2232 (function rmail-start-mail))
2233 nil nil subject nil nil nil
2234 (list (list (function
2235 (lambda ()
2236 (let ((msgnum
2237 rmail-send-actions-rmail-msg-number))
2238 (save-excursion
2239 (set-buffer rmail-send-actions-rmail-buffer)
2240 (if msgnum
2241 (rmail-set-attribute
2242 "forwarded" t msgnum)))))))))
2243 ;; The mail buffer is now current.
2244 (save-excursion
2245 ;; We keep the rmail buffer and message number in these
2246 ;; buffer-local vars in the sendmail buffer,
2247 ;; so that rmail-only-expunge can relocate the message number.
2248 (make-local-variable 'rmail-send-actions-rmail-buffer)
2249 (make-local-variable 'rmail-send-actions-rmail-msg-number)
2250 (setq rmail-send-actions-rmail-buffer forward-buffer)
2251 (setq rmail-send-actions-rmail-msg-number msgnum)
2252 ;; Insert after header separator--before signature if any.
2253 (goto-char (point-min))
2254 (search-forward-regexp
2255 (concat "^" (regexp-quote mail-header-separator) "$"))
2256 (forward-line 1)
2257 (insert "------- Start of forwarded message -------\n")
2258 ;; Quote lines with `- ' if they start with `-'.
2259 (let ((beg (point)) end)
2260 (insert-buffer-substring forward-buffer)
2261 (goto-char beg)
2262 (while (re-search-forward "^-" nil t)
2263 (beginning-of-line)
2264 (insert "- ")
2265 (forward-line 1))
2266 (goto-char (point-max)))
2267 (let ((end (point)))
2268 (skip-chars-backward "\n")
2269 (if (< (point) end)
2270 (forward-char 1))
2271 (delete-region (point) end))
2272 (insert "------- End of forwarded message -------\n")
2273 (push-mark))))))
2274 \f
2275 (defun rmail-resend (address &optional from comment mail-alias-file)
2276 "Resend current message to ADDRESSES.
2277 ADDRESSES should be a single address, a string consisting of several
2278 addresses separated by commas, or a list of addresses.
2279
2280 Optional FROM is the address to resend the message from, and
2281 defaults to the username of the person redistributing the message.
2282 Optional COMMENT is a string that will be inserted as a comment in the
2283 resent message.
2284 Optional ALIAS-FILE is alternate aliases file to be used by sendmail,
2285 typically for purposes of moderating a list."
2286 (interactive "sResend to: ")
2287 (require 'sendmail)
2288 (require 'mailalias)
2289 (if (not from) (setq from (user-login-name)))
2290 (let ((tembuf (generate-new-buffer " sendmail temp"))
2291 (mail-header-separator "")
2292 (case-fold-search nil)
2293 (mailbuf (current-buffer)))
2294 (unwind-protect
2295 (save-excursion
2296 ;;>> Copy message into temp buffer
2297 (set-buffer tembuf)
2298 (insert-buffer-substring mailbuf)
2299 (goto-char (point-min))
2300 ;; Delete any Sender field, since that's not specifiable.
2301 ; Only delete Sender fields in the actual header.
2302 (re-search-forward "^$" nil 'move)
2303 ; Using "while" here rather than "if" because some buggy mail
2304 ; software may have inserted multiple Sender fields.
2305 (while (re-search-backward "^Sender:" nil t)
2306 (let (beg)
2307 (setq beg (point))
2308 (forward-line 1)
2309 (while (looking-at "[ \t]")
2310 (forward-line 1))
2311 (delete-region beg (point))))
2312 ; Go back to the beginning of the buffer so the Resent- fields
2313 ; are inserted there.
2314 (goto-char (point-min))
2315 ;;>> Insert resent-from:
2316 (insert "Resent-From: " from "\n")
2317 (insert "Resent-Date: " (mail-rfc822-date) "\n")
2318 ;;>> Insert resent-to: and bcc if need be.
2319 (let ((before (point)))
2320 (if mail-self-blind
2321 (insert "Resent-Bcc: " (user-login-name) "\n"))
2322 (insert "Resent-To: " (if (stringp address)
2323 address
2324 (mapconcat 'identity address ",\n\t"))
2325 "\n")
2326 ;; Expand abbrevs in the recipients.
2327 (save-excursion
2328 (if (featurep 'mailabbrev)
2329 (let ((end (point-marker))
2330 (local-abbrev-table mail-abbrevs)
2331 (old-syntax-table (syntax-table)))
2332 (if (and (not (vectorp mail-abbrevs))
2333 (file-exists-p mail-personal-alias-file))
2334 (build-mail-abbrevs))
2335 (set-syntax-table mail-abbrev-syntax-table)
2336 (goto-char before)
2337 (while (and (< (point) end)
2338 (progn (forward-word 1)
2339 (<= (point) end)))
2340 (expand-abbrev))
2341 (set-syntax-table old-syntax-table))
2342 (expand-mail-aliases before (point)))))
2343 ;;>> Set up comment, if any.
2344 (if (and (sequencep comment) (not (zerop (length comment))))
2345 (let ((before (point))
2346 after)
2347 (insert comment)
2348 (or (eolp) (insert "\n"))
2349 (setq after (point))
2350 (goto-char before)
2351 (while (< (point) after)
2352 (insert "Resent-Comment: ")
2353 (forward-line 1))))
2354 ;; Don't expand aliases in the destination fields
2355 ;; of the original message.
2356 (let (mail-aliases)
2357 (funcall send-mail-function)))
2358 (kill-buffer tembuf))
2359 (rmail-set-attribute "resent" t rmail-current-message)))
2360 \f
2361 (defvar mail-unsent-separator
2362 (concat "^ *---+ +Unsent message follows +---+ *$\\|"
2363 "^ *---+ +Returned message +---+ *$\\|"
2364 "^Start of returned message$\\|"
2365 "^ *---+ +Original message +---+ *$\\|"
2366 "^ *--+ +begin message +--+ *$\\|"
2367 "^ *---+ +Original message follows +---+ *$\\|"
2368 "^|? *---+ +Message text follows: +---+ *|?$")
2369 "A regexp that matches the separator before the text of a failed message.")
2370
2371 (defun rmail-retry-failure ()
2372 "Edit a mail message which is based on the contents of the current message.
2373 For a message rejected by the mail system, extract the interesting headers and
2374 the body of the original message.
2375 The variable `mail-unsent-separator' should match the string that
2376 delimits the returned original message.
2377 The variable `rmail-retry-ignored-headers' is a regular expression
2378 specifying headers which should not be copied into the new message."
2379 (interactive)
2380 (require 'mail-utils)
2381 (let ((rmail-buffer (current-buffer))
2382 (msgnum rmail-current-message)
2383 bounce-start bounce-end bounce-indent resending)
2384 (save-excursion
2385 ;; Narrow down to just the quoted original message
2386 (rmail-beginning-of-message)
2387 (let ((case-fold-search t))
2388 (if (search-forward "This is a MIME-encapsulated message\n\n--" nil t)
2389 (let ((codestring
2390 (buffer-substring (progn (beginning-of-line) (point))
2391 (progn (end-of-line) (point)))))
2392 (re-search-forward mail-unsent-separator)
2393 (search-forward codestring)
2394 (or (search-forward "\n\n" nil t)
2395 (error "Cannot find end of Mime data in failed message"))
2396 (setq bounce-start (point))
2397 (save-excursion
2398 (goto-char (point-max))
2399 (search-backward codestring)
2400 (setq bounce-end (point)))
2401 (or (search-forward "\n\n" nil t)
2402 (error "Cannot find end of header in failed message")))
2403 (or (re-search-forward mail-unsent-separator nil t)
2404 (error "Cannot parse this as a failure message"))
2405 (skip-chars-forward "\n")
2406 ;; Support a style of failure message in which the original
2407 ;; message is indented, and included within lines saying
2408 ;; `Start of returned message' and `End of returned message'.
2409 (if (looking-at " +Received:")
2410 (progn
2411 (setq bounce-start (point))
2412 (skip-chars-forward " ")
2413 (setq bounce-indent (- (current-column)))
2414 (goto-char (point-max))
2415 (re-search-backward "^End of returned message$" nil t)
2416 (setq bounce-end (point)))
2417 ;; One message contained a few random lines before the old
2418 ;; message header. The first line of the message started with
2419 ;; two hyphens. A blank line followed these random lines.
2420 ;; The same line beginning with two hyphens was possibly
2421 ;; marking the end of the message.
2422 (if (looking-at "^--")
2423 (let ((boundary (buffer-substring-no-properties
2424 (point)
2425 (progn (end-of-line) (point)))))
2426 (search-forward "\n\n")
2427 (skip-chars-forward "\n")
2428 (setq bounce-start (point))
2429 (goto-char (point-max))
2430 (search-backward (concat "\n\n" boundary) bounce-start t)
2431 (setq bounce-end (point)))
2432 (setq bounce-start (point)
2433 bounce-end (point-max)))
2434 (or (search-forward "\n\n" nil t)
2435 (error "Cannot find end of header in failed message"))
2436 ))))
2437 ;; Start sending a new message; default header fields from the original.
2438 ;; Turn off the usual actions for initializing the message body
2439 ;; because we want to get only the text from the failure message.
2440 (let ((action
2441 ;; This function will be called when the user sends the retry.
2442 ;; It will mark the bounce message as "retried".
2443 (function (lambda ()
2444 (let ((msgnum rmail-send-actions-rmail-msg-number))
2445 (save-excursion
2446 (set-buffer rmail-send-actions-rmail-buffer)
2447 (if msgnum
2448 (rmail-set-attribute "retried" t msgnum)))))))
2449 mail-signature mail-setup-hook)
2450 (if (rmail-start-mail nil nil nil nil nil rmail-buffer
2451 (list (list action)))
2452 ;; Insert original text as initial text of new draft message.
2453 ;; Bind inhibit-read-only since the header delimiter
2454 ;; of the previous message was probably read-only.
2455 (let ((inhibit-read-only t))
2456 ;; We keep the rmail buffer and message number in these
2457 ;; buffer-local vars in the sendmail buffer,
2458 ;; so that the rmail-only-expunge can relocate the message number.
2459 (make-local-variable 'rmail-send-actions-rmail-buffer)
2460 (make-local-variable 'rmail-send-actions-rmail-msg-number)
2461 (setq rmail-send-actions-rmail-buffer rmail-buffer)
2462 (setq rmail-send-actions-rmail-msg-number msgnum)
2463 (erase-buffer)
2464 (insert-buffer-substring rmail-buffer bounce-start bounce-end)
2465 (goto-char (point-min))
2466 (if bounce-indent
2467 (indent-rigidly (point-min) (point-max) bounce-indent))
2468 (rmail-clear-headers rmail-retry-ignored-headers)
2469 (rmail-clear-headers "^sender:\\|^from:\\|^return-path:")
2470 (goto-char (point-min))
2471 (save-restriction
2472 (search-forward "\n\n")
2473 (forward-line -1)
2474 (narrow-to-region (point-min) (point))
2475 (setq resending (mail-fetch-field "resent-to"))
2476 (if mail-self-blind
2477 (if resending
2478 (insert "Resent-Bcc: " (user-login-name) "\n")
2479 (insert "BCC: " (user-login-name) "\n"))))
2480 (insert mail-header-separator)
2481 (mail-position-on-field (if resending "Resent-To" "To") t)
2482 (set-buffer rmail-buffer)
2483 (rmail-beginning-of-message))))))
2484 \f
2485 (defun rmail-summary-exists ()
2486 "Non-nil iff in an RMAIL buffer and an associated summary buffer exists.
2487 In fact, the non-nil value returned is the summary buffer itself."
2488 (and rmail-summary-buffer (buffer-name rmail-summary-buffer)
2489 rmail-summary-buffer))
2490
2491 (defun rmail-summary-displayed ()
2492 "t iff in RMAIL buffer and an associated summary buffer is displayed."
2493 (and rmail-summary-buffer (get-buffer-window rmail-summary-buffer)))
2494
2495 (defvar rmail-redisplay-summary nil
2496 "*Non-nil means Rmail should show the summary when it changes.
2497 This has an effect only if a summary buffer exists.")
2498
2499 (defvar rmail-summary-window-size nil
2500 "*Non-nil means specify the height for an Rmail summary window.")
2501
2502 ;; Put the summary buffer back on the screen, if user wants that.
2503 (defun rmail-maybe-display-summary ()
2504 (let ((selected (selected-window))
2505 window)
2506 ;; If requested, make sure the summary is displayed.
2507 (and rmail-summary-buffer (buffer-name rmail-summary-buffer)
2508 rmail-redisplay-summary
2509 (if (get-buffer-window rmail-summary-buffer 0)
2510 ;; It's already in some frame; show that one.
2511 (let ((frame (window-frame
2512 (get-buffer-window rmail-summary-buffer 0))))
2513 (make-frame-visible frame)
2514 (raise-frame frame))
2515 (display-buffer rmail-summary-buffer)))
2516 ;; If requested, set the height of the summary window.
2517 (and rmail-summary-buffer (buffer-name rmail-summary-buffer)
2518 rmail-summary-window-size
2519 (setq window (get-buffer-window rmail-summary-buffer))
2520 ;; Don't try to change the size if just one window in frame.
2521 (not (eq window (frame-root-window (window-frame window))))
2522 (unwind-protect
2523 (progn
2524 (select-window window)
2525 (enlarge-window (- rmail-summary-window-size
2526 (window-height))))
2527 (select-window selected)))))
2528 \f
2529 ;;;; *** Rmail Local Fontification ***
2530
2531 (defun rmail-fontify-buffer-function ()
2532 ;; This function's symbol is bound to font-lock-fontify-buffer-function.
2533 (make-local-hook 'rmail-show-message-hook)
2534 (add-hook 'rmail-show-message-hook 'rmail-fontify-message nil t)
2535 (rmail-fontify-message)
2536 (setq font-lock-fontified t))
2537
2538 (defun rmail-unfontify-buffer-function ()
2539 ;; This function's symbol is bound to font-lock-fontify-unbuffer-function.
2540 (let ((modified (buffer-modified-p))
2541 (buffer-undo-list t) (inhibit-read-only t)
2542 before-change-functions after-change-functions
2543 buffer-file-name buffer-file-truename)
2544 (save-restriction
2545 (widen)
2546 (remove-hook 'rmail-show-message-hook 'rmail-fontify-message t)
2547 (remove-text-properties (point-min) (point-max) '(rmail-fontified nil))
2548 (font-lock-default-unfontify-buffer))))
2549
2550 (defun rmail-fontify-message ()
2551 ;; Fontify the current message if it is not already fontified.
2552 (if (text-property-any (point-min) (point-max) 'rmail-fontified nil)
2553 (let ((modified (buffer-modified-p))
2554 (buffer-undo-list t) (inhibit-read-only t)
2555 before-change-functions after-change-functions
2556 buffer-file-name buffer-file-truename)
2557 (save-excursion
2558 (save-match-data
2559 (add-text-properties (point-min) (point-max) '(rmail-fontified t))
2560 (font-lock-fontify-region (point-min) (point-max)))))))
2561 \f
2562 ;;;; *** Rmail Specify Inbox Files ***
2563
2564 (autoload 'set-rmail-inbox-list "rmailmsc"
2565 "Set the inbox list of the current RMAIL file to FILE-NAME.
2566 This may be a list of file names separated by commas.
2567 If FILE-NAME is empty, remove any inbox list."
2568 t)
2569
2570 ;;;; *** Rmail Commands for Labels ***
2571
2572 (autoload 'rmail-add-label "rmailkwd"
2573 "Add LABEL to labels associated with current RMAIL message.
2574 Completion is performed over known labels when reading."
2575 t)
2576
2577 (autoload 'rmail-kill-label "rmailkwd"
2578 "Remove LABEL from labels associated with current RMAIL message.
2579 Completion is performed over known labels when reading."
2580 t)
2581
2582 (autoload 'rmail-next-labeled-message "rmailkwd"
2583 "Show next message with LABEL. Defaults to last label used.
2584 With prefix argument N moves forward N messages with this label."
2585 t)
2586
2587 (autoload 'rmail-previous-labeled-message "rmailkwd"
2588 "Show previous message with LABEL. Defaults to last label used.
2589 With prefix argument N moves backward N messages with this label."
2590 t)
2591
2592 (autoload 'rmail-read-label "rmailkwd"
2593 "PROMPT and read with completion an Rmail message label."
2594 t)
2595
2596 ;;;; *** Rmail Edit Mode ***
2597
2598 (autoload 'rmail-edit-current-message "rmailedit"
2599 "Edit the contents of the current message"
2600 t)
2601
2602 ;;;; *** Rmail Sorting ***
2603
2604 (autoload 'rmail-sort-by-date "rmailsort"
2605 "Sort messages of current Rmail file by date.
2606 If prefix argument REVERSE is non-nil, sort them in reverse order." t)
2607
2608 (autoload 'rmail-sort-by-subject "rmailsort"
2609 "Sort messages of current Rmail file by subject.
2610 If prefix argument REVERSE is non-nil, sort them in reverse order." t)
2611
2612 (autoload 'rmail-sort-by-author "rmailsort"
2613 "Sort messages of current Rmail file by author.
2614 If prefix argument REVERSE is non-nil, sort them in reverse order." t)
2615
2616 (autoload 'rmail-sort-by-recipient "rmailsort"
2617 "Sort messages of current Rmail file by recipient.
2618 If prefix argument REVERSE is non-nil, sort them in reverse order." t)
2619
2620 (autoload 'rmail-sort-by-correspondent "rmailsort"
2621 "Sort messages of current Rmail file by other correspondent.
2622 If prefix argument REVERSE is non-nil, sort them in reverse order." t)
2623
2624 (autoload 'rmail-sort-by-lines "rmailsort"
2625 "Sort messages of current Rmail file by number of lines.
2626 If prefix argument REVERSE is non-nil, sort them in reverse order." t)
2627
2628 (autoload 'rmail-sort-by-keywords "rmailsort"
2629 "Sort messages of current Rmail file by labels.
2630 If prefix argument REVERSE is non-nil, sort them in reverse order.
2631 KEYWORDS is a comma-separated list of labels." t)
2632 \f
2633 ;;;; *** Rmail Summary Mode ***
2634
2635 (autoload 'rmail-summary "rmailsum"
2636 "Display a summary of all messages, one line per message."
2637 t)
2638
2639 (autoload 'rmail-summary-by-labels "rmailsum"
2640 "Display a summary of all messages with one or more LABELS.
2641 LABELS should be a string containing the desired labels, separated by commas."
2642 t)
2643
2644 (autoload 'rmail-summary-by-recipients "rmailsum"
2645 "Display a summary of all messages with the given RECIPIENTS.
2646 Normally checks the To, From and Cc fields of headers; but if PRIMARY-ONLY
2647 is non-nil (prefix arg given), only look in the To and From fields.
2648 RECIPIENTS is a string of regexps separated by commas."
2649 t)
2650
2651 (autoload 'rmail-summary-by-regexp "rmailsum"
2652 "Display a summary of all messages according to regexp REGEXP.
2653 If the regular expression is found in the header of the message
2654 \(including in the date and other lines, as well as the subject line),
2655 Emacs will list the header line in the RMAIL-summary."
2656 t)
2657
2658 (autoload 'rmail-summary-by-topic "rmailsum"
2659 "Display a summary of all messages with the given SUBJECT.
2660 Normally checks the Subject field of headers;
2661 but if WHOLE-MESSAGE is non-nil (prefix arg given),
2662 look in the whole message.
2663 SUBJECT is a string of regexps separated by commas."
2664 t)
2665
2666 (autoload 'rmail-summary-by-sender "rmailsum"
2667 "Display a summary of all messages with the given SENDERS.
2668 SENDERS is a string of names separated by commas."
2669 t)
2670 \f
2671 ;;;; *** Rmail output messages to files ***
2672
2673 (autoload 'rmail-output-to-rmail-file "rmailout"
2674 "Append the current message to an Rmail file named FILE-NAME.
2675 If the file does not exist, ask if it should be created.
2676 If file is being visited, the message is appended to the Emacs
2677 buffer visiting that file."
2678 t)
2679
2680 (autoload 'rmail-output "rmailout"
2681 "Append this message to Unix mail file named FILE-NAME."
2682 t)
2683
2684 ;;;; *** Rmail undigestification ***
2685
2686 (autoload 'undigestify-rmail-message "undigest"
2687 "Break up a digest message into its constituent messages.
2688 Leaves original message, deleted, before the undigestified messages."
2689 t)
2690
2691 (provide 'rmail)
2692
2693 ;;; rmail.el ends here