]> code.delx.au - gnu-emacs/blob - lisp/mail/rmailsum.el
(mail-abbrev-in-expansion-header-p): Use mail-header-end.
[gnu-emacs] / lisp / mail / rmailsum.el
1 ;;; rmailsum.el --- make summary buffers for the mail reader
2
3 ;; Copyright (C) 1985, 1993, 1994, 1995, 1996 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 ;;; Commentary:
26
27 ;; Extended by Bob Weiner of Motorola
28 ;; Provided all commands from rmail-mode in rmail-summary-mode and made key
29 ;; bindings in both modes wholly compatible.
30
31 ;;; Code:
32
33 ;; For rmail-select-summary
34 (require 'rmail)
35
36 ;;;###autoload
37 (defcustom rmail-summary-scroll-between-messages t
38 "*Non-nil means Rmail summary scroll commands move between messages."
39 :type 'boolean
40 :group 'rmail-summary)
41
42 ;;;###autoload
43 (defcustom rmail-summary-line-count-flag t
44 "*Non-nil if Rmail summary should show the number of lines in each message."
45 :type 'boolean
46 :group 'rmail-summary)
47
48 (defvar rmail-summary-font-lock-keywords
49 '(("^....D.*" . font-lock-string-face) ; Deleted.
50 ("^....-.*" . font-lock-type-face) ; Unread.
51 ;; Neither of the below will be highlighted if either of the above are:
52 ("^....[^D-] \\(......\\)" 1 font-lock-keyword-face) ; Date.
53 ("{ \\([^}]+\\),}" 1 font-lock-comment-face)) ; Labels.
54 "Additional expressions to highlight in Rmail Summary mode.")
55
56 ;; Entry points for making a summary buffer.
57
58 ;; Regenerate the contents of the summary
59 ;; using the same selection criterion as last time.
60 ;; M-x revert-buffer in a summary buffer calls this function.
61 (defun rmail-update-summary (&rest ignore)
62 (apply (car rmail-summary-redo) (cdr rmail-summary-redo)))
63
64 ;;;###autoload
65 (defun rmail-summary ()
66 "Display a summary of all messages, one line per message."
67 (interactive)
68 (rmail-new-summary "All" '(rmail-summary) nil))
69
70 ;;;###autoload
71 (defun rmail-summary-by-labels (labels)
72 "Display a summary of all messages with one or more LABELS.
73 LABELS should be a string containing the desired labels, separated by commas."
74 (interactive "sLabels to summarize by: ")
75 (if (string= labels "")
76 (setq labels (or rmail-last-multi-labels
77 (error "No label specified"))))
78 (setq rmail-last-multi-labels labels)
79 (rmail-new-summary (concat "labels " labels)
80 (list 'rmail-summary-by-labels labels)
81 'rmail-message-labels-p
82 (concat ", \\(" (mail-comma-list-regexp labels) "\\),")))
83
84 ;;;###autoload
85 (defun rmail-summary-by-recipients (recipients &optional primary-only)
86 "Display a summary of all messages with the given RECIPIENTS.
87 Normally checks the To, From and Cc fields of headers;
88 but if PRIMARY-ONLY is non-nil (prefix arg given),
89 only look in the To and From fields.
90 RECIPIENTS is a string of regexps separated by commas."
91 (interactive "sRecipients to summarize by: \nP")
92 (rmail-new-summary
93 (concat "recipients " recipients)
94 (list 'rmail-summary-by-recipients recipients primary-only)
95 'rmail-message-recipients-p
96 (mail-comma-list-regexp recipients) primary-only))
97
98 ;;;###autoload
99 (defun rmail-summary-by-regexp (regexp)
100 "Display a summary of all messages according to regexp REGEXP.
101 If the regular expression is found in the header of the message
102 \(including in the date and other lines, as well as the subject line),
103 Emacs will list the header line in the RMAIL-summary."
104 (interactive "sRegexp to summarize by: ")
105 (if (string= regexp "")
106 (setq regexp (or rmail-last-regexp
107 (error "No regexp specified."))))
108 (setq rmail-last-regexp regexp)
109 (rmail-new-summary (concat "regexp " regexp)
110 (list 'rmail-summary-by-regexp regexp)
111 'rmail-message-regexp-p
112 regexp))
113
114 ;; rmail-summary-by-topic
115 ;; 1989 R.A. Schnitzler
116
117 ;;;###autoload
118 (defun rmail-summary-by-topic (subject &optional whole-message)
119 "Display a summary of all messages with the given SUBJECT.
120 Normally checks the Subject field of headers;
121 but if WHOLE-MESSAGE is non-nil (prefix arg given),
122 look in the whole message.
123 SUBJECT is a string of regexps separated by commas."
124 (interactive "sTopics to summarize by: \nP")
125 (rmail-new-summary
126 (concat "about " subject)
127 (list 'rmail-summary-by-topic subject whole-message)
128 'rmail-message-subject-p
129 (mail-comma-list-regexp subject) whole-message))
130
131 (defun rmail-message-subject-p (msg subject &optional whole-message)
132 (save-restriction
133 (goto-char (rmail-msgbeg msg))
134 (search-forward "\n*** EOOH ***\n")
135 (narrow-to-region
136 (point)
137 (progn (search-forward (if whole-message "\^_" "\n\n")) (point)))
138 (goto-char (point-min))
139 (if whole-message (re-search-forward subject nil t)
140 (string-match subject (or (mail-fetch-field "Subject") "")) )))
141
142 ;;;###autoload
143 (defun rmail-summary-by-senders (senders)
144 "Display a summary of all messages with the given SENDERS.
145 SENDERS is a string of names separated by commas."
146 (interactive "sSenders to summarize by: ")
147 (rmail-new-summary
148 (concat "senders " senders)
149 (list 'rmail-summary-by-senders senders)
150 'rmail-message-senders-p
151 (mail-comma-list-regexp senders)))
152
153 (defun rmail-message-senders-p (msg senders)
154 (save-restriction
155 (goto-char (rmail-msgbeg msg))
156 (search-forward "\n*** EOOH ***\n")
157 (narrow-to-region (point) (progn (search-forward "\n\n") (point)))
158 (string-match senders (or (mail-fetch-field "From") ""))))
159 \f
160 ;; General making of a summary buffer.
161
162 (defvar rmail-summary-symbol-number 0)
163
164 (defun rmail-new-summary (description redo-form function &rest args)
165 "Create a summary of selected messages.
166 DESCRIPTION makes part of the mode line of the summary buffer.
167 For each message, FUNCTION is applied to the message number and ARGS...
168 and if the result is non-nil, that message is included.
169 nil for FUNCTION means all messages."
170 (message "Computing summary lines...")
171 (let (sumbuf mesg was-in-summary)
172 (save-excursion
173 ;; Go to the Rmail buffer.
174 (if (eq major-mode 'rmail-summary-mode)
175 (progn
176 (setq was-in-summary t)
177 (set-buffer rmail-buffer)))
178 ;; Find its summary buffer, or make one.
179 (setq sumbuf
180 (if (and rmail-summary-buffer
181 (buffer-name rmail-summary-buffer))
182 rmail-summary-buffer
183 (generate-new-buffer (concat (buffer-name) "-summary"))))
184 (setq mesg rmail-current-message)
185 ;; Filter the messages; make or get their summary lines.
186 (let ((summary-msgs ())
187 (new-summary-line-count 0))
188 (let ((msgnum 1)
189 (buffer-read-only nil)
190 (old-min (point-min-marker))
191 (old-max (point-max-marker)))
192 ;; Can't use save-restriction here; that doesn't work if we
193 ;; plan to modify text outside the original restriction.
194 (save-excursion
195 (widen)
196 (goto-char (point-min))
197 (while (>= rmail-total-messages msgnum)
198 (if (or (null function)
199 (apply function (cons msgnum args)))
200 (setq summary-msgs
201 (cons (cons msgnum (rmail-make-summary-line msgnum))
202 summary-msgs)))
203 (setq msgnum (1+ msgnum)))
204 (setq summary-msgs (nreverse summary-msgs)))
205 (narrow-to-region old-min old-max))
206 ;; Temporarily, while summary buffer is unfinished,
207 ;; we "don't have" a summary.
208 (setq rmail-summary-buffer nil)
209 (save-excursion
210 (let ((rbuf (current-buffer))
211 (vbuf rmail-view-buffer)
212 (total rmail-total-messages))
213 (set-buffer sumbuf)
214 ;; Set up the summary buffer's contents.
215 (let ((buffer-read-only nil))
216 (erase-buffer)
217 (while summary-msgs
218 (princ (cdr (car summary-msgs)) sumbuf)
219 (setq summary-msgs (cdr summary-msgs)))
220 (goto-char (point-min)))
221 ;; Set up the rest of its state and local variables.
222 (setq buffer-read-only t)
223 (rmail-summary-mode)
224 (make-local-variable 'minor-mode-alist)
225 (setq minor-mode-alist (list (list t (concat ": " description))))
226 (setq rmail-buffer rbuf
227 rmail-view-buffer vbuf
228 rmail-summary-redo redo-form
229 rmail-total-messages total))))
230 (setq rmail-summary-buffer sumbuf))
231 ;; Now display the summary buffer and go to the right place in it.
232 (or was-in-summary
233 (progn
234 (if (and (one-window-p)
235 pop-up-windows (not pop-up-frames))
236 ;; If there is just one window, put the summary on the top.
237 (progn
238 (split-window (selected-window) rmail-summary-window-size)
239 (select-window (next-window (frame-first-window)))
240 (pop-to-buffer sumbuf)
241 ;; If pop-to-buffer did not use that window, delete that
242 ;; window. (This can happen if it uses another frame.)
243 (if (not (eq sumbuf (window-buffer (frame-first-window))))
244 (delete-other-windows)))
245 (pop-to-buffer sumbuf))
246 (set-buffer rmail-buffer)
247 ;; This is how rmail makes the summary buffer reappear.
248 ;; We do this here to make the window the proper size.
249 (rmail-select-summary nil)
250 (set-buffer rmail-summary-buffer)))
251 (rmail-summary-goto-msg mesg t t)
252 (rmail-summary-construct-io-menu)
253 (message "Computing summary lines...done")))
254 \f
255 ;; Low levels of generating a summary.
256
257 (defun rmail-make-summary-line (msg)
258 (let ((line (or (aref rmail-summary-vector (1- msg))
259 (progn
260 (setq new-summary-line-count
261 (1+ new-summary-line-count))
262 (if (zerop (% new-summary-line-count 10))
263 (message "Computing summary lines...%d"
264 new-summary-line-count))
265 (rmail-make-summary-line-1 msg)))))
266 ;; Fix up the part of the summary that says "deleted" or "unseen".
267 (aset line 4
268 (if (rmail-message-deleted-p msg) ?\D
269 (if (= ?0 (char-after (+ 3 (rmail-msgbeg msg))))
270 ?\- ?\ )))
271 line))
272
273 ;;;###autoload
274 (defcustom rmail-summary-line-decoder (function identity)
275 "*Function to decode summary-line.
276
277 By default, `identity' is set."
278 :type 'function
279 :group 'rmail-summary)
280
281 (defun rmail-make-summary-line-1 (msg)
282 (goto-char (rmail-msgbeg msg))
283 (let* ((lim (save-excursion (forward-line 2) (point)))
284 pos
285 (labels
286 (progn
287 (forward-char 3)
288 (concat
289 ; (if (save-excursion (re-search-forward ",answered," lim t))
290 ; "*" "")
291 ; (if (save-excursion (re-search-forward ",filed," lim t))
292 ; "!" "")
293 (if (progn (search-forward ",,") (eolp))
294 ""
295 (concat "{"
296 (buffer-substring (point)
297 (progn (end-of-line) (point)))
298 "} ")))))
299 (line
300 (progn
301 (forward-line 1)
302 (if (looking-at "Summary-line: ")
303 (progn
304 (goto-char (match-end 0))
305 (setq line
306 (buffer-substring (point)
307 (progn (forward-line 1) (point)))))))))
308 ;; Obsolete status lines lacking a # should be flushed.
309 (and line
310 (not (string-match "#" line))
311 (progn
312 (delete-region (point)
313 (progn (forward-line -1) (point)))
314 (setq line nil)))
315 ;; If we didn't get a valid status line from the message,
316 ;; make a new one and put it in the message.
317 (or line
318 (let* ((case-fold-search t)
319 (next (rmail-msgend msg))
320 (beg (if (progn (goto-char (rmail-msgbeg msg))
321 (search-forward "\n*** EOOH ***\n" next t))
322 (point)
323 (forward-line 1)
324 (point)))
325 (end (progn (search-forward "\n\n" nil t) (point))))
326 (save-restriction
327 (narrow-to-region beg end)
328 (goto-char beg)
329 (setq line (rmail-make-basic-summary-line)))
330 (goto-char (rmail-msgbeg msg))
331 (forward-line 2)
332 (insert "Summary-line: " line)))
333 (setq pos (string-match "#" line))
334 (aset rmail-summary-vector (1- msg)
335 (funcall rmail-summary-line-decoder
336 (concat (format "%4d " msg)
337 (substring line 0 pos)
338 labels
339 (substring line (1+ pos)))))
340 ))
341
342 (defun rmail-make-basic-summary-line ()
343 (goto-char (point-min))
344 (concat (save-excursion
345 (if (not (re-search-forward "^Date:" nil t))
346 " "
347 (cond ((re-search-forward "\\([^0-9:]\\)\\([0-3]?[0-9]\\)\\([- \t_]+\\)\\([adfjmnos][aceopu][bcglnprtvy]\\)"
348 (save-excursion (end-of-line) (point)) t)
349 (format "%2d-%3s"
350 (string-to-int (buffer-substring
351 (match-beginning 2)
352 (match-end 2)))
353 (buffer-substring
354 (match-beginning 4) (match-end 4))))
355 ((re-search-forward "\\([^a-z]\\)\\([adfjmnos][acepou][bcglnprtvy]\\)\\([-a-z \t_]*\\)\\([0-9][0-9]?\\)"
356 (save-excursion (end-of-line) (point)) t)
357 (format "%2d-%3s"
358 (string-to-int (buffer-substring
359 (match-beginning 4)
360 (match-end 4)))
361 (buffer-substring
362 (match-beginning 2) (match-end 2))))
363 ((re-search-forward "\\(19\\|20\\)\\([0-9][0-9]\\)-\\([01][0-9]\\)-\\([0-3][0-9]\\)"
364 (save-excursion (end-of-line) (point)) t)
365 (format "%2s%2s%2s"
366 (buffer-substring
367 (match-beginning 2) (match-end 2))
368 (buffer-substring
369 (match-beginning 3) (match-end 3))
370 (buffer-substring
371 (match-beginning 4) (match-end 4))))
372 (t "??????"))))
373 " "
374 (save-excursion
375 (if (not (re-search-forward "^From:[ \t]*" nil t))
376 " "
377 (let* ((from (mail-strip-quoted-names
378 (buffer-substring
379 (1- (point))
380 ;; Get all the lines of the From field
381 ;; so that we get a whole comment if there is one,
382 ;; so that mail-strip-quoted-names can discard it.
383 (let ((opoint (point)))
384 (while (progn (forward-line 1)
385 (looking-at "[ \t]")))
386 ;; Back up over newline, then trailing spaces or tabs
387 (forward-char -1)
388 (skip-chars-backward " \t")
389 (point)))))
390 len mch lo)
391 (if (string-match (concat "^\\("
392 (regexp-quote (user-login-name))
393 "\\($\\|@\\)\\|"
394 (regexp-quote
395 ;; Don't lose if run from init file
396 ;; where user-mail-address is not
397 ;; set yet.
398 (or user-mail-address
399 (concat (user-login-name) "@"
400 (or mail-host-address
401 (system-name)))))
402 "\\>\\)")
403 from)
404 (save-excursion
405 (goto-char (point-min))
406 (if (not (re-search-forward "^To:[ \t]*" nil t))
407 nil
408 (setq from
409 (concat "to: "
410 (mail-strip-quoted-names
411 (buffer-substring
412 (point)
413 (progn (end-of-line)
414 (skip-chars-backward " \t")
415 (point)))))))))
416 (setq len (length from))
417 (setq mch (string-match "[@%]" from))
418 (format "%25s"
419 (if (or (not mch) (<= len 25))
420 (substring from (max 0 (- len 25)))
421 (substring from
422 (setq lo (cond ((< (- mch 14) 0) 0)
423 ((< len (+ mch 11))
424 (- len 25))
425 (t (- mch 14))))
426 (min len (+ lo 25))))))))
427 (if rmail-summary-line-count-flag
428 (save-excursion
429 (save-restriction
430 (widen)
431 (let ((beg (rmail-msgbeg msgnum))
432 (end (rmail-msgend msgnum))
433 lines)
434 (save-excursion
435 (goto-char beg)
436 ;; Count only lines in the reformatted header,
437 ;; if we have reformatted it.
438 (search-forward "\n*** EOOH ***\n" end t)
439 (setq lines (count-lines (point) end)))
440 (format (cond
441 ((<= lines 9) " [%d]")
442 ((<= lines 99) " [%d]")
443 ((<= lines 999) " [%3d]")
444 (t "[%d]"))
445 lines))))
446 " ")
447 " #" ;The # is part of the format.
448 (if (re-search-forward "^Subject:" nil t)
449 (progn (skip-chars-forward " \t")
450 (buffer-substring (point)
451 (progn (end-of-line)
452 (point))))
453 (re-search-forward "[\n][\n]+" nil t)
454 (buffer-substring (point) (progn (end-of-line) (point))))
455 "\n"))
456 \f
457 ;; Simple motion in a summary buffer.
458
459 (defun rmail-summary-next-all (&optional number)
460 (interactive "p")
461 (forward-line (if number number 1))
462 ;; It doesn't look nice to move forward past the last message line.
463 (and (eobp) (> number 0)
464 (forward-line -1))
465 (display-buffer rmail-buffer))
466
467 (defun rmail-summary-previous-all (&optional number)
468 (interactive "p")
469 (forward-line (- (if number number 1)))
470 ;; It doesn't look nice to move forward past the last message line.
471 (and (eobp) (< number 0)
472 (forward-line -1))
473 (display-buffer rmail-buffer))
474
475 (defun rmail-summary-next-msg (&optional number)
476 "Display next non-deleted msg from rmail file.
477 With optional prefix argument NUMBER, moves forward this number of non-deleted
478 messages, or backward if NUMBER is negative."
479 (interactive "p")
480 (forward-line 0)
481 (and (> number 0) (end-of-line))
482 (let ((count (if (< number 0) (- number) number))
483 (search (if (> number 0) 're-search-forward 're-search-backward))
484 (non-del-msg-found nil))
485 (while (and (> count 0) (setq non-del-msg-found
486 (or (funcall search "^....[^D]" nil t)
487 non-del-msg-found)))
488 (setq count (1- count))))
489 (beginning-of-line)
490 (display-buffer rmail-view-buffer)
491 )
492
493 (defun rmail-summary-previous-msg (&optional number)
494 (interactive "p")
495 (rmail-summary-next-msg (- (if number number 1))))
496
497 (defun rmail-summary-next-labeled-message (n labels)
498 "Show next message with LABEL. Defaults to last labels used.
499 With prefix argument N moves forward N messages with these labels."
500 (interactive "p\nsMove to next msg with labels: ")
501 (let (msg)
502 (save-excursion
503 (set-buffer rmail-buffer)
504 (rmail-next-labeled-message n labels)
505 (setq msg rmail-current-message))
506 (rmail-summary-goto-msg msg)))
507
508 (defun rmail-summary-previous-labeled-message (n labels)
509 "Show previous message with LABEL. Defaults to last labels used.
510 With prefix argument N moves backward N messages with these labels."
511 (interactive "p\nsMove to previous msg with labels: ")
512 (let (msg)
513 (save-excursion
514 (set-buffer rmail-buffer)
515 (rmail-previous-labeled-message n labels)
516 (setq msg rmail-current-message))
517 (rmail-summary-goto-msg msg)))
518
519 (defun rmail-summary-next-same-subject (n)
520 "Go to the next message in the summary having the same subject.
521 With prefix argument N, do this N times.
522 If N is negative, go backwards."
523 (interactive "p")
524 (let (subject search-regexp i found
525 (forward (> n 0)))
526 (save-excursion
527 (set-buffer rmail-buffer)
528 (setq subject (mail-fetch-field "Subject"))
529 (setq i rmail-current-message))
530 (if (string-match "Re:[ \t]*" subject)
531 (setq subject (substring subject (match-end 0))))
532 (setq search-regexp (concat "^Subject: *\\(Re: *\\)?"
533 (regexp-quote subject)
534 "\n"))
535 (save-excursion
536 (while (and (/= n 0)
537 (if forward
538 (not (eobp))
539 (not (bobp))))
540 (let (done)
541 (while (and (not done)
542 (if forward
543 (not (eobp))
544 (not (bobp))))
545 ;; Advance thru summary.
546 (forward-line (if forward 1 -1))
547 ;; Get msg number of this line.
548 (setq i (string-to-int
549 (buffer-substring (point)
550 (min (point-max) (+ 5 (point))))))
551 ;; See if that msg has desired subject.
552 (save-excursion
553 (set-buffer rmail-buffer)
554 (save-restriction
555 (widen)
556 (goto-char (rmail-msgbeg i))
557 (search-forward "\n*** EOOH ***\n")
558 (let ((beg (point)) end)
559 (search-forward "\n\n")
560 (setq end (point))
561 (goto-char beg)
562 (setq done (re-search-forward search-regexp end t))))))
563 (if done (setq found i)))
564 (setq n (if forward (1- n) (1+ n)))))
565 (if found
566 (rmail-summary-goto-msg found)
567 (error "No %s message with same subject"
568 (if forward "following" "previous")))))
569
570 (defun rmail-summary-previous-same-subject (n)
571 "Go to the previous message in the summary having the same subject.
572 With prefix argument N, do this N times.
573 If N is negative, go forwards instead."
574 (interactive "p")
575 (rmail-summary-next-same-subject (- n)))
576 \f
577 ;; Delete and undelete summary commands.
578
579 (defun rmail-summary-delete-forward (&optional count)
580 "Delete this message and move to next nondeleted one.
581 Deleted messages stay in the file until the \\[rmail-expunge] command is given.
582 A prefix argument serves as a repeat count;
583 a negative argument means to delete and move backward."
584 (interactive "p")
585 (unless (numberp count) (setq count 1))
586 (let (end del-msg
587 (backward (< count 0)))
588 (while (/= count 0)
589 (rmail-summary-goto-msg)
590 (with-current-buffer rmail-buffer
591 (rmail-delete-message)
592 (setq del-msg rmail-current-message))
593 (rmail-summary-mark-deleted del-msg)
594 (while (and (not (if backward (bobp) (eobp)))
595 (save-excursion (beginning-of-line)
596 (looking-at " *[0-9]+D")))
597 (forward-line (if backward -1 1)))
598 ;; It looks ugly to move to the empty line at end of buffer.
599 (and (eobp) (not backward)
600 (forward-line -1))
601 (setq count
602 (if (> count 0) (1- count) (1+ count))))))
603
604 (defun rmail-summary-delete-backward (&optional count)
605 "Delete this message and move to previous nondeleted one.
606 Deleted messages stay in the file until the \\[rmail-expunge] command is given.
607 A prefix argument serves as a repeat count;
608 a negative argument means to delete and move forward."
609 (interactive "p")
610 (rmail-summary-delete-forward (- count)))
611
612 (defun rmail-summary-mark-deleted (&optional n undel)
613 ;; Since third arg is t, this only alters the summary, not the Rmail buf.
614 (and n (rmail-summary-goto-msg n t t))
615 (or (eobp)
616 (not (overlay-get rmail-summary-overlay 'face))
617 (let ((buffer-read-only nil))
618 (skip-chars-forward " ")
619 (skip-chars-forward "[0-9]")
620 (if undel
621 (if (looking-at "D")
622 (progn (delete-char 1) (insert " ")))
623 (delete-char 1)
624 (insert "D"))))
625 (beginning-of-line))
626
627 (defun rmail-summary-mark-undeleted (n)
628 (rmail-summary-mark-deleted n t))
629
630 (defun rmail-summary-deleted-p (&optional n)
631 (save-excursion
632 (and n (rmail-summary-goto-msg n nil t))
633 (skip-chars-forward " ")
634 (skip-chars-forward "[0-9]")
635 (looking-at "D")))
636
637 (defun rmail-summary-undelete (&optional arg)
638 "Undelete current message.
639 Optional prefix ARG means undelete ARG previous messages."
640 (interactive "p")
641 (if (/= arg 1)
642 (rmail-summary-undelete-many arg)
643 (let ((buffer-read-only nil)
644 (opoint (point)))
645 (end-of-line)
646 (cond ((re-search-backward "\\(^ *[0-9]*\\)\\(D\\)" nil t)
647 (replace-match "\\1 ")
648 (rmail-summary-goto-msg)
649 (pop-to-buffer rmail-buffer)
650 (and (rmail-message-deleted-p rmail-current-message)
651 (rmail-undelete-previous-message))
652 (pop-to-buffer rmail-summary-buffer))
653 (t (goto-char opoint))))))
654
655 (defun rmail-summary-undelete-many (&optional n)
656 "Undelete all deleted msgs, optional prefix arg N means undelete N prev msgs."
657 (interactive "P")
658 (save-excursion
659 (set-buffer rmail-buffer)
660 (let* ((init-msg (if n rmail-current-message rmail-total-messages))
661 (rmail-current-message init-msg)
662 (n (or n rmail-total-messages))
663 (msgs-undeled 0))
664 (while (and (> rmail-current-message 0)
665 (< msgs-undeled n))
666 (if (rmail-message-deleted-p rmail-current-message)
667 (progn (rmail-set-attribute "deleted" nil)
668 (setq msgs-undeled (1+ msgs-undeled))))
669 (setq rmail-current-message (1- rmail-current-message)))
670 (set-buffer rmail-summary-buffer)
671 (setq rmail-current-message init-msg msgs-undeled 0)
672 (while (and (> rmail-current-message 0)
673 (< msgs-undeled n))
674 (if (rmail-summary-deleted-p rmail-current-message)
675 (progn (rmail-summary-mark-undeleted rmail-current-message)
676 (setq msgs-undeled (1+ msgs-undeled))))
677 (setq rmail-current-message (1- rmail-current-message))))
678 (rmail-summary-goto-msg)))
679 \f
680 ;; Rmail Summary mode is suitable only for specially formatted data.
681 (put 'rmail-summary-mode 'mode-class 'special)
682
683 (defun rmail-summary-mode ()
684 "Rmail Summary Mode is invoked from Rmail Mode by using \\<rmail-mode-map>\\[rmail-summary].
685 As commands are issued in the summary buffer, they are applied to the
686 corresponding mail messages in the rmail buffer.
687
688 All normal editing commands are turned off.
689 Instead, nearly all the Rmail mode commands are available,
690 though many of them move only among the messages in the summary.
691
692 These additional commands exist:
693
694 \\[rmail-summary-undelete-many] Undelete all or prefix arg deleted messages.
695 \\[rmail-summary-wipe] Delete the summary and go to the Rmail buffer.
696
697 Commands for sorting the summary:
698
699 \\[rmail-summary-sort-by-date] Sort by date.
700 \\[rmail-summary-sort-by-subject] Sort by subject.
701 \\[rmail-summary-sort-by-author] Sort by author.
702 \\[rmail-summary-sort-by-recipient] Sort by recipient.
703 \\[rmail-summary-sort-by-correspondent] Sort by correspondent.
704 \\[rmail-summary-sort-by-lines] Sort by lines.
705 \\[rmail-summary-sort-by-keywords] Sort by keywords."
706 (interactive)
707 (kill-all-local-variables)
708 (setq major-mode 'rmail-summary-mode)
709 (setq mode-name "RMAIL Summary")
710 (setq truncate-lines t)
711 (setq buffer-read-only t)
712 (set-syntax-table text-mode-syntax-table)
713 (make-local-variable 'rmail-buffer)
714 (make-local-variable 'rmail-view-buffer)
715 (make-local-variable 'rmail-total-messages)
716 (make-local-variable 'rmail-current-message)
717 (setq rmail-current-message nil)
718 (make-local-variable 'rmail-summary-redo)
719 (setq rmail-summary-redo nil)
720 (make-local-variable 'revert-buffer-function)
721 (make-local-hook 'post-command-hook)
722 (make-local-variable 'font-lock-defaults)
723 (setq font-lock-defaults '(rmail-summary-font-lock-keywords t))
724 (rmail-summary-enable)
725 (run-hooks 'rmail-summary-mode-hook))
726
727 ;; Summary features need to be disabled during edit mode.
728 (defun rmail-summary-disable ()
729 (use-local-map text-mode-map)
730 (remove-hook 'post-command-hook 'rmail-summary-rmail-update t)
731 (setq revert-buffer-function nil))
732
733 (defun rmail-summary-enable ()
734 (use-local-map rmail-summary-mode-map)
735 (add-hook 'post-command-hook 'rmail-summary-rmail-update nil t)
736 (setq revert-buffer-function 'rmail-update-summary))
737
738 (defvar rmail-summary-put-back-unseen nil
739 "Used for communicating between calls to `rmail-summary-rmail-update'.
740 If it moves to a message within an Incremental Search, and removes
741 the `unseen' attribute from that message, it sets this flag
742 so that if the next motion between messages is in the same Incremental
743 Search, the `unseen' attribute is restored.")
744
745 ;; Show in Rmail the message described by the summary line that point is on,
746 ;; but only if the Rmail buffer is already visible.
747 ;; This is a post-command-hook in summary buffers.
748 (defun rmail-summary-rmail-update ()
749 (let (buffer-read-only)
750 (save-excursion
751 ;; If at end of buffer, pretend we are on the last text line.
752 (if (eobp)
753 (forward-line -1))
754 (beginning-of-line)
755 (skip-chars-forward " ")
756 (let ((msg-num (string-to-int (buffer-substring
757 (point)
758 (progn (skip-chars-forward "0-9")
759 (point))))))
760 ;; Always leave `unseen' removed
761 ;; if we get out of isearch mode.
762 ;; Don't let a subsequent isearch restore that `unseen'.
763 (if (not isearch-mode)
764 (setq rmail-summary-put-back-unseen nil))
765
766 (or (eq rmail-current-message msg-num)
767 (let ((window (get-buffer-window rmail-view-buffer t))
768 (owin (selected-window)))
769 (if isearch-mode
770 (save-excursion
771 (set-buffer rmail-buffer)
772 ;; If we first saw the previous message in this search,
773 ;; and we have gone to a different message while searching,
774 ;; put back `unseen' on the former one.
775 (rmail-set-attribute "unseen" t
776 rmail-current-message)
777 ;; Arrange to do that later, for the new current message,
778 ;; if it still has `unseen'.
779 (setq rmail-summary-put-back-unseen
780 (rmail-message-labels-p msg-num ", ?\\(unseen\\),")))
781 (setq rmail-summary-put-back-unseen nil))
782
783 ;; Go to the desired message.
784 (setq rmail-current-message msg-num)
785
786 ;; Update the summary to show the message has been seen.
787 (if (= (following-char) ?-)
788 (progn
789 (delete-char 1)
790 (insert " ")))
791
792 (if window
793 ;; Using save-window-excursion would cause the new value
794 ;; of point to get lost.
795 (unwind-protect
796 (progn
797 (select-window window)
798 (rmail-show-message msg-num t))
799 (select-window owin))
800 (if (buffer-name rmail-buffer)
801 (save-excursion
802 (set-buffer rmail-buffer)
803 (rmail-show-message msg-num t))))))
804 (rmail-summary-update-highlight nil)))))
805 \f
806 (defvar rmail-summary-mode-map nil)
807
808 (if rmail-summary-mode-map
809 nil
810 (setq rmail-summary-mode-map (make-keymap))
811 (suppress-keymap rmail-summary-mode-map)
812
813 (define-key rmail-summary-mode-map [mouse-2] 'rmail-summary-mouse-goto-message)
814 (define-key rmail-summary-mode-map "a" 'rmail-summary-add-label)
815 (define-key rmail-summary-mode-map "b" 'rmail-summary-bury)
816 (define-key rmail-summary-mode-map "c" 'rmail-summary-continue)
817 (define-key rmail-summary-mode-map "d" 'rmail-summary-delete-forward)
818 (define-key rmail-summary-mode-map "\C-d" 'rmail-summary-delete-backward)
819 (define-key rmail-summary-mode-map "e" 'rmail-summary-edit-current-message)
820 (define-key rmail-summary-mode-map "f" 'rmail-summary-forward)
821 (define-key rmail-summary-mode-map "g" 'rmail-summary-get-new-mail)
822 (define-key rmail-summary-mode-map "h" 'rmail-summary)
823 (define-key rmail-summary-mode-map "i" 'rmail-summary-input)
824 (define-key rmail-summary-mode-map "j" 'rmail-summary-goto-msg)
825 (define-key rmail-summary-mode-map "k" 'rmail-summary-kill-label)
826 (define-key rmail-summary-mode-map "l" 'rmail-summary-by-labels)
827 (define-key rmail-summary-mode-map "\e\C-h" 'rmail-summary)
828 (define-key rmail-summary-mode-map "\e\C-l" 'rmail-summary-by-labels)
829 (define-key rmail-summary-mode-map "\e\C-r" 'rmail-summary-by-recipients)
830 (define-key rmail-summary-mode-map "\e\C-s" 'rmail-summary-by-regexp)
831 (define-key rmail-summary-mode-map "\e\C-t" 'rmail-summary-by-topic)
832 (define-key rmail-summary-mode-map "m" 'rmail-summary-mail)
833 (define-key rmail-summary-mode-map "\M-m" 'rmail-summary-retry-failure)
834 (define-key rmail-summary-mode-map "n" 'rmail-summary-next-msg)
835 (define-key rmail-summary-mode-map "\en" 'rmail-summary-next-all)
836 (define-key rmail-summary-mode-map "\e\C-n" 'rmail-summary-next-labeled-message)
837 (define-key rmail-summary-mode-map "o" 'rmail-summary-output-to-rmail-file)
838 (define-key rmail-summary-mode-map "\C-o" 'rmail-summary-output)
839 (define-key rmail-summary-mode-map "p" 'rmail-summary-previous-msg)
840 (define-key rmail-summary-mode-map "\ep" 'rmail-summary-previous-all)
841 (define-key rmail-summary-mode-map "\e\C-p" 'rmail-summary-previous-labeled-message)
842 (define-key rmail-summary-mode-map "q" 'rmail-summary-quit)
843 (define-key rmail-summary-mode-map "r" 'rmail-summary-reply)
844 (define-key rmail-summary-mode-map "s" 'rmail-summary-expunge-and-save)
845 (define-key rmail-summary-mode-map "\es" 'rmail-summary-search)
846 (define-key rmail-summary-mode-map "t" 'rmail-summary-toggle-header)
847 (define-key rmail-summary-mode-map "u" 'rmail-summary-undelete)
848 (define-key rmail-summary-mode-map "\M-u" 'rmail-summary-undelete-many)
849 (define-key rmail-summary-mode-map "w" 'rmail-summary-wipe)
850 (define-key rmail-summary-mode-map "x" 'rmail-summary-expunge)
851 (define-key rmail-summary-mode-map "." 'rmail-summary-beginning-of-message)
852 (define-key rmail-summary-mode-map "<" 'rmail-summary-first-message)
853 (define-key rmail-summary-mode-map ">" 'rmail-summary-last-message)
854 (define-key rmail-summary-mode-map " " 'rmail-summary-scroll-msg-up)
855 (define-key rmail-summary-mode-map "\177" 'rmail-summary-scroll-msg-down)
856 (define-key rmail-summary-mode-map "?" 'describe-mode)
857 (define-key rmail-summary-mode-map "\C-c\C-n" 'rmail-summary-next-same-subject)
858 (define-key rmail-summary-mode-map "\C-c\C-p" 'rmail-summary-previous-same-subject)
859 (define-key rmail-summary-mode-map "\C-c\C-s\C-d"
860 'rmail-summary-sort-by-date)
861 (define-key rmail-summary-mode-map "\C-c\C-s\C-s"
862 'rmail-summary-sort-by-subject)
863 (define-key rmail-summary-mode-map "\C-c\C-s\C-a"
864 'rmail-summary-sort-by-author)
865 (define-key rmail-summary-mode-map "\C-c\C-s\C-r"
866 'rmail-summary-sort-by-recipient)
867 (define-key rmail-summary-mode-map "\C-c\C-s\C-c"
868 'rmail-summary-sort-by-correspondent)
869 (define-key rmail-summary-mode-map "\C-c\C-s\C-l"
870 'rmail-summary-sort-by-lines)
871 (define-key rmail-summary-mode-map "\C-c\C-s\C-k"
872 'rmail-summary-sort-by-keywords)
873 )
874 \f
875 ;;; Menu bar bindings.
876
877 (define-key rmail-summary-mode-map [menu-bar] (make-sparse-keymap))
878
879 (define-key rmail-summary-mode-map [menu-bar classify]
880 (cons "Classify" (make-sparse-keymap "Classify")))
881
882 (define-key rmail-summary-mode-map [menu-bar classify output-menu]
883 '("Output (Rmail Menu)..." . rmail-summary-output-menu))
884
885 (define-key rmail-summary-mode-map [menu-bar classify input-menu]
886 '("Input Rmail File (menu)..." . rmail-input-menu))
887
888 (define-key rmail-summary-mode-map [menu-bar classify input-menu]
889 '(nil))
890
891 (define-key rmail-summary-mode-map [menu-bar classify output-menu]
892 '(nil))
893
894 (define-key rmail-summary-mode-map [menu-bar classify output-inbox]
895 '("Output (inbox)..." . rmail-summary-output))
896
897 (define-key rmail-summary-mode-map [menu-bar classify output]
898 '("Output (Rmail)..." . rmail-summary-output-to-rmail-file))
899
900 (define-key rmail-summary-mode-map [menu-bar classify kill-label]
901 '("Kill Label..." . rmail-summary-kill-label))
902
903 (define-key rmail-summary-mode-map [menu-bar classify add-label]
904 '("Add Label..." . rmail-summary-add-label))
905
906 (define-key rmail-summary-mode-map [menu-bar summary]
907 (cons "Summary" (make-sparse-keymap "Summary")))
908
909 (define-key rmail-summary-mode-map [menu-bar summary senders]
910 '("By Senders..." . rmail-summary-by-senders))
911
912 (define-key rmail-summary-mode-map [menu-bar summary labels]
913 '("By Labels..." . rmail-summary-by-labels))
914
915 (define-key rmail-summary-mode-map [menu-bar summary recipients]
916 '("By Recipients..." . rmail-summary-by-recipients))
917
918 (define-key rmail-summary-mode-map [menu-bar summary topic]
919 '("By Topic..." . rmail-summary-by-topic))
920
921 (define-key rmail-summary-mode-map [menu-bar summary regexp]
922 '("By Regexp..." . rmail-summary-by-regexp))
923
924 (define-key rmail-summary-mode-map [menu-bar summary all]
925 '("All" . rmail-summary))
926
927 (define-key rmail-summary-mode-map [menu-bar mail]
928 (cons "Mail" (make-sparse-keymap "Mail")))
929
930 (define-key rmail-summary-mode-map [menu-bar mail rmail-summary-get-new-mail]
931 '("Get New Mail" . rmail-summary-get-new-mail))
932
933 (define-key rmail-summary-mode-map [menu-bar mail lambda]
934 '("----"))
935
936 (define-key rmail-summary-mode-map [menu-bar mail continue]
937 '("Continue" . rmail-summary-continue))
938
939 (define-key rmail-summary-mode-map [menu-bar mail resend]
940 '("Re-send..." . rmail-summary-resend))
941
942 (define-key rmail-summary-mode-map [menu-bar mail forward]
943 '("Forward" . rmail-summary-forward))
944
945 (define-key rmail-summary-mode-map [menu-bar mail retry]
946 '("Retry" . rmail-summary-retry-failure))
947
948 (define-key rmail-summary-mode-map [menu-bar mail reply]
949 '("Reply" . rmail-summary-reply))
950
951 (define-key rmail-summary-mode-map [menu-bar mail mail]
952 '("Mail" . rmail-summary-mail))
953
954 (define-key rmail-summary-mode-map [menu-bar delete]
955 (cons "Delete" (make-sparse-keymap "Delete")))
956
957 (define-key rmail-summary-mode-map [menu-bar delete expunge/save]
958 '("Expunge/Save" . rmail-summary-expunge-and-save))
959
960 (define-key rmail-summary-mode-map [menu-bar delete expunge]
961 '("Expunge" . rmail-summary-expunge))
962
963 (define-key rmail-summary-mode-map [menu-bar delete undelete]
964 '("Undelete" . rmail-summary-undelete))
965
966 (define-key rmail-summary-mode-map [menu-bar delete delete]
967 '("Delete" . rmail-summary-delete-forward))
968
969 (define-key rmail-summary-mode-map [menu-bar move]
970 (cons "Move" (make-sparse-keymap "Move")))
971
972 (define-key rmail-summary-mode-map [menu-bar move search-back]
973 '("Search Back..." . rmail-summary-search-backward))
974
975 (define-key rmail-summary-mode-map [menu-bar move search]
976 '("Search..." . rmail-summary-search))
977
978 (define-key rmail-summary-mode-map [menu-bar move previous]
979 '("Previous Nondeleted" . rmail-summary-previous-msg))
980
981 (define-key rmail-summary-mode-map [menu-bar move next]
982 '("Next Nondeleted" . rmail-summary-next-msg))
983
984 (define-key rmail-summary-mode-map [menu-bar move last]
985 '("Last" . rmail-summary-last-message))
986
987 (define-key rmail-summary-mode-map [menu-bar move first]
988 '("First" . rmail-summary-first-message))
989
990 (define-key rmail-summary-mode-map [menu-bar move previous]
991 '("Previous" . rmail-summary-previous-all))
992
993 (define-key rmail-summary-mode-map [menu-bar move next]
994 '("Next" . rmail-summary-next-all))
995 \f
996 (defvar rmail-summary-overlay nil)
997 (put 'rmail-summary-overlay 'permanent-local t)
998
999 (defun rmail-summary-mouse-goto-message (event)
1000 "Select the message whose summary line you click on."
1001 (interactive "@e")
1002 (goto-char (posn-point (event-end event)))
1003 (rmail-summary-goto-msg))
1004
1005 (defun rmail-summary-goto-msg (&optional n nowarn skip-rmail)
1006 "Go to message N in the summary buffer and the Rmail buffer.
1007 If N is nil, use the message corresponding to point in the summary
1008 and move to that message in the Rmail buffer.
1009
1010 If NOWARN, don't say anything if N is out of range.
1011 If SKIP-RMAIL, don't do anything to the Rmail buffer."
1012 (interactive "P")
1013 (if (consp n) (setq n (prefix-numeric-value n)))
1014 (if (eobp) (forward-line -1))
1015 (beginning-of-line)
1016 (let* ((obuf (current-buffer))
1017 (buf rmail-buffer)
1018 (cur (point))
1019 message-not-found
1020 (curmsg (string-to-int
1021 (buffer-substring (point)
1022 (min (point-max) (+ 5 (point))))))
1023 (total (save-excursion (set-buffer buf) rmail-total-messages)))
1024 ;; If message number N was specified, find that message's line
1025 ;; or set message-not-found.
1026 ;; If N wasn't specified or that message can't be found.
1027 ;; set N by default.
1028 (if (not n)
1029 (setq n curmsg)
1030 (if (< n 1)
1031 (progn (message "No preceding message")
1032 (setq n 1)))
1033 (if (> n total)
1034 (progn (message "No following message")
1035 (goto-char (point-max))
1036 (rmail-summary-goto-msg nil nowarn skip-rmail)))
1037 (goto-char (point-min))
1038 (if (not (re-search-forward (format "^%4d[^0-9]" n) nil t))
1039 (progn (or nowarn (message "Message %d not found" n))
1040 (setq n curmsg)
1041 (setq message-not-found t)
1042 (goto-char cur))))
1043 (beginning-of-line)
1044 (skip-chars-forward " ")
1045 (skip-chars-forward "0-9")
1046 (save-excursion (if (= (following-char) ?-)
1047 (let ((buffer-read-only nil))
1048 (delete-char 1)
1049 (insert " "))))
1050 (rmail-summary-update-highlight message-not-found)
1051 (beginning-of-line)
1052 (if skip-rmail
1053 nil
1054 (let ((selwin (selected-window)))
1055 (unwind-protect
1056 (progn (pop-to-buffer buf)
1057 (rmail-show-message n))
1058 (select-window selwin)
1059 ;; The actions above can alter the current buffer. Preserve it.
1060 (set-buffer obuf))))))
1061
1062 ;; Update the highlighted line in an rmail summary buffer.
1063 ;; That should be current. We highlight the line point is on.
1064 ;; If NOT-FOUND is non-nil, we turn off highlighting.
1065 (defun rmail-summary-update-highlight (not-found)
1066 ;; Make sure we have an overlay to use.
1067 (or rmail-summary-overlay
1068 (progn
1069 (make-local-variable 'rmail-summary-overlay)
1070 (setq rmail-summary-overlay (make-overlay (point) (point)))))
1071 ;; If this message is in the summary, use the overlay to highlight it.
1072 ;; Otherwise, don't highlight anything.
1073 (if not-found
1074 (overlay-put rmail-summary-overlay 'face nil)
1075 (move-overlay rmail-summary-overlay
1076 (save-excursion (beginning-of-line)
1077 (skip-chars-forward " ")
1078 (point))
1079 (save-excursion (end-of-line) (point)))
1080 (overlay-put rmail-summary-overlay 'face 'highlight)))
1081 \f
1082 (defun rmail-summary-scroll-msg-up (&optional dist)
1083 "Scroll the Rmail window forward.
1084 If the Rmail window is displaying the end of a message,
1085 advance to the next message."
1086 (interactive "P")
1087 (if (eq dist '-)
1088 (rmail-summary-scroll-msg-down nil)
1089 (let ((rmail-buffer-window (get-buffer-window rmail-view-buffer)))
1090 (if rmail-buffer-window
1091 (if (let ((rmail-summary-window (selected-window)))
1092 (select-window rmail-buffer-window)
1093 (prog1
1094 ;; Is EOB visible in the buffer?
1095 (save-excursion
1096 (let ((ht (window-height (selected-window))))
1097 (move-to-window-line (- ht 2))
1098 (end-of-line)
1099 (eobp)))
1100 (select-window rmail-summary-window)))
1101 (if (not rmail-summary-scroll-between-messages)
1102 (error "End of buffer")
1103 (rmail-summary-next-msg (or dist 1)))
1104 (let ((other-window-scroll-buffer rmail-view-buffer))
1105 (scroll-other-window dist)))
1106 ;; If it isn't visible at all, show the beginning.
1107 (rmail-summary-beginning-of-message)))))
1108
1109 (defun rmail-summary-scroll-msg-down (&optional dist)
1110 "Scroll the Rmail window backward.
1111 If the Rmail window is now displaying the beginning of a message,
1112 move to the previous message."
1113 (interactive "P")
1114 (if (eq dist '-)
1115 (rmail-summary-scroll-msg-up nil)
1116 (let ((rmail-buffer-window (get-buffer-window rmail-buffer)))
1117 (if rmail-buffer-window
1118 (if (let ((rmail-summary-window (selected-window)))
1119 (select-window rmail-buffer-window)
1120 (prog1
1121 ;; Is BOB visible in the buffer?
1122 (save-excursion
1123 (move-to-window-line 0)
1124 (beginning-of-line)
1125 (bobp))
1126 (select-window rmail-summary-window)))
1127 (if (not rmail-summary-scroll-between-messages)
1128 (error "Beginning of buffer")
1129 (rmail-summary-previous-msg (or dist 1)))
1130 (let ((other-window-scroll-buffer rmail-buffer))
1131 (scroll-other-window-down dist)))
1132 ;; If it isn't visible at all, show the beginning.
1133 (rmail-summary-beginning-of-message)))))
1134
1135 (defun rmail-summary-beginning-of-message ()
1136 "Show current message from the beginning."
1137 (interactive)
1138 (if (and (one-window-p) (not pop-up-frames))
1139 ;; If there is just one window, put the summary on the top.
1140 (let ((buffer rmail-buffer))
1141 (split-window (selected-window) rmail-summary-window-size)
1142 (select-window (frame-first-window))
1143 (pop-to-buffer rmail-buffer)
1144 ;; If pop-to-buffer did not use that window, delete that
1145 ;; window. (This can happen if it uses another frame.)
1146 (or (eq buffer (window-buffer (next-window (frame-first-window))))
1147 (delete-other-windows)))
1148 (pop-to-buffer rmail-buffer))
1149 (beginning-of-buffer)
1150 (pop-to-buffer rmail-summary-buffer))
1151
1152 (defun rmail-summary-bury ()
1153 "Bury the Rmail buffer and the Rmail summary buffer."
1154 (interactive)
1155 (let ((buffer-to-bury (current-buffer)))
1156 (let (window)
1157 (while (setq window (get-buffer-window rmail-buffer))
1158 (set-window-buffer window (other-buffer rmail-buffer)))
1159 (bury-buffer rmail-buffer))
1160 (switch-to-buffer (other-buffer buffer-to-bury))
1161 (bury-buffer buffer-to-bury)))
1162
1163 (defun rmail-summary-quit ()
1164 "Quit out of Rmail and Rmail summary."
1165 (interactive)
1166 (rmail-summary-wipe)
1167 (rmail-quit))
1168
1169 (defun rmail-summary-wipe ()
1170 "Kill and wipe away Rmail summary, remaining within Rmail."
1171 (interactive)
1172 (save-excursion (set-buffer rmail-buffer) (setq rmail-summary-buffer nil))
1173 (let ((local-rmail-buffer rmail-buffer))
1174 (kill-buffer (current-buffer))
1175 ;; Delete window if not only one.
1176 (if (not (eq (selected-window) (next-window nil 'no-minibuf)))
1177 (delete-window))
1178 ;; Switch windows to the rmail buffer, or switch to it in this window.
1179 (pop-to-buffer local-rmail-buffer)))
1180
1181 (defun rmail-summary-expunge ()
1182 "Actually erase all deleted messages and recompute summary headers."
1183 (interactive)
1184 (save-excursion
1185 (set-buffer rmail-buffer)
1186 (rmail-only-expunge))
1187 (rmail-update-summary))
1188
1189 (defun rmail-summary-expunge-and-save ()
1190 "Expunge and save RMAIL file."
1191 (interactive)
1192 (save-excursion
1193 (set-buffer rmail-buffer)
1194 (rmail-only-expunge))
1195 (rmail-update-summary)
1196 (save-excursion
1197 (set-buffer rmail-buffer)
1198 (save-buffer))
1199 (set-buffer-modified-p nil))
1200
1201 (defun rmail-summary-get-new-mail (&optional file-name)
1202 "Get new mail and recompute summary headers.
1203
1204 Optionally you can specify the file to get new mail from. In this case,
1205 the file of new mail is not changed or deleted. Noninteractively, you can
1206 pass the inbox file name as an argument. Interactively, a prefix
1207 argument says to read a file name and use that file as the inbox."
1208 (interactive
1209 (list (if current-prefix-arg
1210 (read-file-name "Get new mail from file: "))))
1211 (let (msg)
1212 (save-excursion
1213 (set-buffer rmail-buffer)
1214 (rmail-get-new-mail file-name)
1215 ;; Get the proper new message number.
1216 (setq msg rmail-current-message))
1217 ;; Make sure that message is displayed.
1218 (or (zerop msg)
1219 (rmail-summary-goto-msg msg))))
1220
1221 (defun rmail-summary-input (filename)
1222 "Run Rmail on file FILENAME."
1223 (interactive "FRun rmail on RMAIL file: ")
1224 ;; We switch windows here, then display the other Rmail file there.
1225 (pop-to-buffer rmail-buffer)
1226 (rmail filename))
1227
1228 (defun rmail-summary-first-message ()
1229 "Show first message in Rmail file from summary buffer."
1230 (interactive)
1231 (beginning-of-buffer))
1232
1233 (defun rmail-summary-last-message ()
1234 "Show last message in Rmail file from summary buffer."
1235 (interactive)
1236 (end-of-buffer)
1237 (forward-line -1))
1238
1239 (defvar rmail-summary-edit-map nil)
1240 (if rmail-summary-edit-map
1241 nil
1242 (setq rmail-summary-edit-map
1243 (nconc (make-sparse-keymap) text-mode-map))
1244 (define-key rmail-summary-edit-map "\C-c\C-c" 'rmail-cease-edit)
1245 (define-key rmail-summary-edit-map "\C-c\C-]" 'rmail-abort-edit))
1246
1247 (defun rmail-summary-edit-current-message ()
1248 "Edit the contents of this message."
1249 (interactive)
1250 (pop-to-buffer rmail-buffer)
1251 (rmail-edit-current-message)
1252 (use-local-map rmail-summary-edit-map))
1253
1254 (defun rmail-summary-cease-edit ()
1255 "Finish editing message, then go back to Rmail summary buffer."
1256 (interactive)
1257 (rmail-cease-edit)
1258 (pop-to-buffer rmail-summary-buffer))
1259
1260 (defun rmail-summary-abort-edit ()
1261 "Abort edit of current message; restore original contents.
1262 Go back to summary buffer."
1263 (interactive)
1264 (rmail-abort-edit)
1265 (pop-to-buffer rmail-summary-buffer))
1266
1267 (defun rmail-summary-search-backward (regexp &optional n)
1268 "Show message containing next match for REGEXP.
1269 Prefix argument gives repeat count; negative argument means search
1270 backwards (through earlier messages).
1271 Interactively, empty argument means use same regexp used last time."
1272 (interactive
1273 (let* ((reversep (>= (prefix-numeric-value current-prefix-arg) 0))
1274 (prompt
1275 (concat (if reversep "Reverse " "") "Rmail search (regexp): "))
1276 regexp)
1277 (if rmail-search-last-regexp
1278 (setq prompt (concat prompt
1279 "(default "
1280 rmail-search-last-regexp
1281 ") ")))
1282 (setq regexp (read-string prompt))
1283 (cond ((not (equal regexp ""))
1284 (setq rmail-search-last-regexp regexp))
1285 ((not rmail-search-last-regexp)
1286 (error "No previous Rmail search string")))
1287 (list rmail-search-last-regexp
1288 (prefix-numeric-value current-prefix-arg))))
1289 ;; Don't use save-excursion because that prevents point from moving
1290 ;; properly in the summary buffer.
1291 (let ((buffer (current-buffer)))
1292 (unwind-protect
1293 (progn
1294 (set-buffer rmail-buffer)
1295 (rmail-search regexp (- n)))
1296 (set-buffer buffer))))
1297
1298 (defun rmail-summary-search (regexp &optional n)
1299 "Show message containing next match for REGEXP.
1300 Prefix argument gives repeat count; negative argument means search
1301 backwards (through earlier messages).
1302 Interactively, empty argument means use same regexp used last time."
1303 (interactive
1304 (let* ((reversep (< (prefix-numeric-value current-prefix-arg) 0))
1305 (prompt
1306 (concat (if reversep "Reverse " "") "Rmail search (regexp): "))
1307 regexp)
1308 (if rmail-search-last-regexp
1309 (setq prompt (concat prompt
1310 "(default "
1311 rmail-search-last-regexp
1312 ") ")))
1313 (setq regexp (read-string prompt))
1314 (cond ((not (equal regexp ""))
1315 (setq rmail-search-last-regexp regexp))
1316 ((not rmail-search-last-regexp)
1317 (error "No previous Rmail search string")))
1318 (list rmail-search-last-regexp
1319 (prefix-numeric-value current-prefix-arg))))
1320 ;; Don't use save-excursion because that prevents point from moving
1321 ;; properly in the summary buffer.
1322 (let ((buffer (current-buffer)))
1323 (unwind-protect
1324 (progn
1325 (set-buffer rmail-buffer)
1326 (rmail-search regexp n))
1327 (set-buffer buffer))))
1328
1329 (defun rmail-summary-toggle-header ()
1330 "Show original message header if pruned header currently shown, or vice versa."
1331 (interactive)
1332 (save-excursion
1333 (set-buffer rmail-buffer)
1334 (rmail-toggle-header))
1335 ;; Inside save-excursion, some changes to point in the RMAIL buffer are lost.
1336 ;; Set point to point-min in the RMAIL buffer, if it is visible.
1337 (let ((window (get-buffer-window rmail-buffer)))
1338 (if window
1339 ;; Using save-window-excursion would lose the new value of point.
1340 (let ((owin (selected-window)))
1341 (unwind-protect
1342 (progn
1343 (select-window window)
1344 (goto-char (point-min)))
1345 (select-window owin))))))
1346
1347
1348 (defun rmail-summary-add-label (label)
1349 "Add LABEL to labels associated with current Rmail message.
1350 Completion is performed over known labels when reading."
1351 (interactive (list (save-excursion
1352 (set-buffer rmail-buffer)
1353 (rmail-read-label "Add label"))))
1354 (save-excursion
1355 (set-buffer rmail-buffer)
1356 (rmail-add-label label)))
1357
1358 (defun rmail-summary-kill-label (label)
1359 "Remove LABEL from labels associated with current Rmail message.
1360 Completion is performed over known labels when reading."
1361 (interactive (list (save-excursion
1362 (set-buffer rmail-buffer)
1363 (rmail-read-label "Kill label"))))
1364 (save-excursion
1365 (set-buffer rmail-buffer)
1366 (rmail-set-label label nil)))
1367 \f
1368 ;;;; *** Rmail Summary Mailing Commands ***
1369
1370 (defun rmail-summary-mail ()
1371 "Send mail in another window.
1372 While composing the message, use \\[mail-yank-original] to yank the
1373 original message into it."
1374 (interactive)
1375 (let ((window (get-buffer-window rmail-buffer)))
1376 (if window
1377 (select-window window)
1378 (set-buffer rmail-buffer)))
1379 (rmail-start-mail nil nil nil nil nil (current-buffer))
1380 (use-local-map (copy-keymap (current-local-map)))
1381 (define-key (current-local-map)
1382 "\C-c\C-c" 'rmail-summary-send-and-exit))
1383
1384 (defun rmail-summary-continue ()
1385 "Continue composing outgoing message previously being composed."
1386 (interactive)
1387 (let ((window (get-buffer-window rmail-buffer)))
1388 (if window
1389 (select-window window)
1390 (set-buffer rmail-buffer)))
1391 (rmail-start-mail t))
1392
1393 (defun rmail-summary-reply (just-sender)
1394 "Reply to the current message.
1395 Normally include CC: to all other recipients of original message;
1396 prefix argument means ignore them. While composing the reply,
1397 use \\[mail-yank-original] to yank the original message into it."
1398 (interactive "P")
1399 (let ((window (get-buffer-window rmail-buffer)))
1400 (if window
1401 (select-window window)
1402 (set-buffer rmail-buffer)))
1403 (rmail-reply just-sender)
1404 (use-local-map (copy-keymap (current-local-map)))
1405 (define-key (current-local-map)
1406 "\C-c\C-c" 'rmail-summary-send-and-exit))
1407
1408 (defun rmail-summary-retry-failure ()
1409 "Edit a mail message which is based on the contents of the current message.
1410 For a message rejected by the mail system, extract the interesting headers and
1411 the body of the original message; otherwise copy the current message."
1412 (interactive)
1413 (let ((window (get-buffer-window rmail-buffer)))
1414 (if window
1415 (select-window window)
1416 (set-buffer rmail-buffer)))
1417 (rmail-retry-failure)
1418 (use-local-map (copy-keymap (current-local-map)))
1419 (define-key (current-local-map)
1420 "\C-c\C-c" 'rmail-summary-send-and-exit))
1421
1422 (defun rmail-summary-send-and-exit ()
1423 "Send mail reply and return to summary buffer."
1424 (interactive)
1425 (mail-send-and-exit t))
1426
1427 (defun rmail-summary-forward (resend)
1428 "Forward the current message to another user.
1429 With prefix argument, \"resend\" the message instead of forwarding it;
1430 see the documentation of `rmail-resend'."
1431 (interactive "P")
1432 (save-excursion
1433 (let ((window (get-buffer-window rmail-buffer)))
1434 (if window
1435 (select-window window)
1436 (set-buffer rmail-buffer)))
1437 (rmail-forward resend)
1438 (use-local-map (copy-keymap (current-local-map)))
1439 (define-key (current-local-map)
1440 "\C-c\C-c" 'rmail-summary-send-and-exit)))
1441
1442 (defun rmail-summary-resend ()
1443 "Resend current message using 'rmail-resend'."
1444 (interactive)
1445 (save-excursion
1446 (let ((window (get-buffer-window rmail-buffer)))
1447 (if window
1448 (select-window window)
1449 (set-buffer rmail-buffer)))
1450 (call-interactively 'rmail-resend)))
1451 \f
1452 ;; Summary output commands.
1453
1454 (defun rmail-summary-output-to-rmail-file (&optional file-name)
1455 "Append the current message to an Rmail file named FILE-NAME.
1456 If the file does not exist, ask if it should be created.
1457 If file is being visited, the message is appended to the Emacs
1458 buffer visiting that file."
1459 (interactive)
1460 (save-excursion
1461 (set-buffer rmail-buffer)
1462 (let ((rmail-delete-after-output nil))
1463 (if file-name
1464 (rmail-output-to-rmail-file file-name)
1465 (call-interactively 'rmail-output-to-rmail-file))))
1466 (if rmail-delete-after-output
1467 (rmail-summary-delete-forward nil)))
1468
1469 (defun rmail-summary-output-menu ()
1470 "Output current message to another Rmail file, chosen with a menu.
1471 Also set the default for subsequent \\[rmail-output-to-rmail-file] commands.
1472 The variables `rmail-secondary-file-directory' and
1473 `rmail-secondary-file-regexp' control which files are offered in the menu."
1474 (interactive)
1475 (save-excursion
1476 (set-buffer rmail-buffer)
1477 (let ((rmail-delete-after-output nil))
1478 (call-interactively 'rmail-output-menu)))
1479 (if rmail-delete-after-output
1480 (rmail-summary-delete-forward nil)))
1481
1482 (defun rmail-summary-output ()
1483 "Append this message to Unix mail file named FILE-NAME."
1484 (interactive)
1485 (save-excursion
1486 (set-buffer rmail-buffer)
1487 (let ((rmail-delete-after-output nil))
1488 (call-interactively 'rmail-output)))
1489 (if rmail-delete-after-output
1490 (rmail-summary-delete-forward nil)))
1491
1492 (defun rmail-summary-construct-io-menu ()
1493 (let ((files (rmail-find-all-files rmail-secondary-file-directory)))
1494 (if files
1495 (progn
1496 (define-key rmail-summary-mode-map [menu-bar classify input-menu]
1497 (cons "Input Rmail File"
1498 (rmail-list-to-menu "Input Rmail File"
1499 files
1500 'rmail-summary-input)))
1501 (define-key rmail-summary-mode-map [menu-bar classify output-menu]
1502 (cons "Output Rmail File"
1503 (rmail-list-to-menu "Output Rmail File"
1504 files
1505 'rmail-summary-output-to-rmail-file))))
1506 (define-key rmail-summary-mode-map [menu-bar classify input-menu]
1507 '("Input Rmail File" . rmail-disable-menu))
1508 (define-key rmail-summary-mode-map [menu-bar classify output-menu]
1509 '("Output Rmail File" . rmail-disable-menu)))))
1510
1511 \f
1512 ;; Sorting messages in Rmail Summary buffer.
1513
1514 (defun rmail-summary-sort-by-date (reverse)
1515 "Sort messages of current Rmail summary by date.
1516 If prefix argument REVERSE is non-nil, sort them in reverse order."
1517 (interactive "P")
1518 (rmail-sort-from-summary (function rmail-sort-by-date) reverse))
1519
1520 (defun rmail-summary-sort-by-subject (reverse)
1521 "Sort messages of current Rmail summary by subject.
1522 If prefix argument REVERSE is non-nil, sort them in reverse order."
1523 (interactive "P")
1524 (rmail-sort-from-summary (function rmail-sort-by-subject) reverse))
1525
1526 (defun rmail-summary-sort-by-author (reverse)
1527 "Sort messages of current Rmail summary by author.
1528 If prefix argument REVERSE is non-nil, sort them in reverse order."
1529 (interactive "P")
1530 (rmail-sort-from-summary (function rmail-sort-by-author) reverse))
1531
1532 (defun rmail-summary-sort-by-recipient (reverse)
1533 "Sort messages of current Rmail summary by recipient.
1534 If prefix argument REVERSE is non-nil, sort them in reverse order."
1535 (interactive "P")
1536 (rmail-sort-from-summary (function rmail-sort-by-recipient) reverse))
1537
1538 (defun rmail-summary-sort-by-correspondent (reverse)
1539 "Sort messages of current Rmail summary by other correspondent.
1540 If prefix argument REVERSE is non-nil, sort them in reverse order."
1541 (interactive "P")
1542 (rmail-sort-from-summary (function rmail-sort-by-correspondent) reverse))
1543
1544 (defun rmail-summary-sort-by-lines (reverse)
1545 "Sort messages of current Rmail summary by lines of the message.
1546 If prefix argument REVERSE is non-nil, sort them in reverse order."
1547 (interactive "P")
1548 (rmail-sort-from-summary (function rmail-sort-by-lines) reverse))
1549
1550 (defun rmail-summary-sort-by-keywords (reverse labels)
1551 "Sort messages of current Rmail summary by keywords.
1552 If prefix argument REVERSE is non-nil, sort them in reverse order.
1553 KEYWORDS is a comma-separated list of labels."
1554 (interactive "P\nsSort by labels: ")
1555 (rmail-sort-from-summary
1556 (function (lambda (reverse)
1557 (rmail-sort-by-keywords reverse labels)))
1558 reverse))
1559
1560 (defun rmail-sort-from-summary (sortfun reverse)
1561 "Sort Rmail messages from Summary buffer and update it after sorting."
1562 (require 'rmailsort)
1563 (let ((selwin (selected-window)))
1564 (unwind-protect
1565 (progn (pop-to-buffer rmail-buffer)
1566 (funcall sortfun reverse))
1567 (select-window selwin))))
1568
1569 ;;; rmailsum.el ends here