]> code.delx.au - gnu-emacs/blob - lisp/mail/rmailsum.el
(webjump-to-javaapi): Function deleted.
[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))
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 (define-key rmail-summary-mode-map "a" 'rmail-summary-add-label)
813 (define-key rmail-summary-mode-map "b" 'rmail-summary-bury)
814 (define-key rmail-summary-mode-map "c" 'rmail-summary-continue)
815 (define-key rmail-summary-mode-map "d" 'rmail-summary-delete-forward)
816 (define-key rmail-summary-mode-map "\C-d" 'rmail-summary-delete-backward)
817 (define-key rmail-summary-mode-map "e" 'rmail-summary-edit-current-message)
818 (define-key rmail-summary-mode-map "f" 'rmail-summary-forward)
819 (define-key rmail-summary-mode-map "g" 'rmail-summary-get-new-mail)
820 (define-key rmail-summary-mode-map "h" 'rmail-summary)
821 (define-key rmail-summary-mode-map "i" 'rmail-summary-input)
822 (define-key rmail-summary-mode-map "j" 'rmail-summary-goto-msg)
823 (define-key rmail-summary-mode-map "k" 'rmail-summary-kill-label)
824 (define-key rmail-summary-mode-map "l" 'rmail-summary-by-labels)
825 (define-key rmail-summary-mode-map "\e\C-h" 'rmail-summary)
826 (define-key rmail-summary-mode-map "\e\C-l" 'rmail-summary-by-labels)
827 (define-key rmail-summary-mode-map "\e\C-r" 'rmail-summary-by-recipients)
828 (define-key rmail-summary-mode-map "\e\C-s" 'rmail-summary-by-regexp)
829 (define-key rmail-summary-mode-map "\e\C-t" 'rmail-summary-by-topic)
830 (define-key rmail-summary-mode-map "m" 'rmail-summary-mail)
831 (define-key rmail-summary-mode-map "\M-m" 'rmail-summary-retry-failure)
832 (define-key rmail-summary-mode-map "n" 'rmail-summary-next-msg)
833 (define-key rmail-summary-mode-map "\en" 'rmail-summary-next-all)
834 (define-key rmail-summary-mode-map "\e\C-n" 'rmail-summary-next-labeled-message)
835 (define-key rmail-summary-mode-map "o" 'rmail-summary-output-to-rmail-file)
836 (define-key rmail-summary-mode-map "\C-o" 'rmail-summary-output)
837 (define-key rmail-summary-mode-map "p" 'rmail-summary-previous-msg)
838 (define-key rmail-summary-mode-map "\ep" 'rmail-summary-previous-all)
839 (define-key rmail-summary-mode-map "\e\C-p" 'rmail-summary-previous-labeled-message)
840 (define-key rmail-summary-mode-map "q" 'rmail-summary-quit)
841 (define-key rmail-summary-mode-map "r" 'rmail-summary-reply)
842 (define-key rmail-summary-mode-map "s" 'rmail-summary-expunge-and-save)
843 (define-key rmail-summary-mode-map "\es" 'rmail-summary-search)
844 (define-key rmail-summary-mode-map "t" 'rmail-summary-toggle-header)
845 (define-key rmail-summary-mode-map "u" 'rmail-summary-undelete)
846 (define-key rmail-summary-mode-map "\M-u" 'rmail-summary-undelete-many)
847 (define-key rmail-summary-mode-map "w" 'rmail-summary-wipe)
848 (define-key rmail-summary-mode-map "x" 'rmail-summary-expunge)
849 (define-key rmail-summary-mode-map "." 'rmail-summary-beginning-of-message)
850 (define-key rmail-summary-mode-map "<" 'rmail-summary-first-message)
851 (define-key rmail-summary-mode-map ">" 'rmail-summary-last-message)
852 (define-key rmail-summary-mode-map " " 'rmail-summary-scroll-msg-up)
853 (define-key rmail-summary-mode-map "\177" 'rmail-summary-scroll-msg-down)
854 (define-key rmail-summary-mode-map "?" 'describe-mode)
855 (define-key rmail-summary-mode-map "\C-c\C-n" 'rmail-summary-next-same-subject)
856 (define-key rmail-summary-mode-map "\C-c\C-p" 'rmail-summary-previous-same-subject)
857 (define-key rmail-summary-mode-map "\C-c\C-s\C-d"
858 'rmail-summary-sort-by-date)
859 (define-key rmail-summary-mode-map "\C-c\C-s\C-s"
860 'rmail-summary-sort-by-subject)
861 (define-key rmail-summary-mode-map "\C-c\C-s\C-a"
862 'rmail-summary-sort-by-author)
863 (define-key rmail-summary-mode-map "\C-c\C-s\C-r"
864 'rmail-summary-sort-by-recipient)
865 (define-key rmail-summary-mode-map "\C-c\C-s\C-c"
866 'rmail-summary-sort-by-correspondent)
867 (define-key rmail-summary-mode-map "\C-c\C-s\C-l"
868 'rmail-summary-sort-by-lines)
869 (define-key rmail-summary-mode-map "\C-c\C-s\C-k"
870 'rmail-summary-sort-by-keywords)
871 )
872 \f
873 ;;; Menu bar bindings.
874
875 (define-key rmail-summary-mode-map [menu-bar] (make-sparse-keymap))
876
877 (define-key rmail-summary-mode-map [menu-bar classify]
878 (cons "Classify" (make-sparse-keymap "Classify")))
879
880 (define-key rmail-summary-mode-map [menu-bar classify output-menu]
881 '("Output (Rmail Menu)..." . rmail-summary-output-menu))
882
883 (define-key rmail-summary-mode-map [menu-bar classify input-menu]
884 '("Input Rmail File (menu)..." . rmail-input-menu))
885
886 (define-key rmail-summary-mode-map [menu-bar classify input-menu]
887 '(nil))
888
889 (define-key rmail-summary-mode-map [menu-bar classify output-menu]
890 '(nil))
891
892 (define-key rmail-summary-mode-map [menu-bar classify output-inbox]
893 '("Output (inbox)..." . rmail-summary-output))
894
895 (define-key rmail-summary-mode-map [menu-bar classify output]
896 '("Output (Rmail)..." . rmail-summary-output-to-rmail-file))
897
898 (define-key rmail-summary-mode-map [menu-bar classify kill-label]
899 '("Kill Label..." . rmail-summary-kill-label))
900
901 (define-key rmail-summary-mode-map [menu-bar classify add-label]
902 '("Add Label..." . rmail-summary-add-label))
903
904 (define-key rmail-summary-mode-map [menu-bar summary]
905 (cons "Summary" (make-sparse-keymap "Summary")))
906
907 (define-key rmail-summary-mode-map [menu-bar summary senders]
908 '("By Senders..." . rmail-summary-by-senders))
909
910 (define-key rmail-summary-mode-map [menu-bar summary labels]
911 '("By Labels..." . rmail-summary-by-labels))
912
913 (define-key rmail-summary-mode-map [menu-bar summary recipients]
914 '("By Recipients..." . rmail-summary-by-recipients))
915
916 (define-key rmail-summary-mode-map [menu-bar summary topic]
917 '("By Topic..." . rmail-summary-by-topic))
918
919 (define-key rmail-summary-mode-map [menu-bar summary regexp]
920 '("By Regexp..." . rmail-summary-by-regexp))
921
922 (define-key rmail-summary-mode-map [menu-bar summary all]
923 '("All" . rmail-summary))
924
925 (define-key rmail-summary-mode-map [menu-bar mail]
926 (cons "Mail" (make-sparse-keymap "Mail")))
927
928 (define-key rmail-summary-mode-map [menu-bar mail rmail-summary-get-new-mail]
929 '("Get New Mail" . rmail-summary-get-new-mail))
930
931 (define-key rmail-summary-mode-map [menu-bar mail lambda]
932 '("----"))
933
934 (define-key rmail-summary-mode-map [menu-bar mail continue]
935 '("Continue" . rmail-summary-continue))
936
937 (define-key rmail-summary-mode-map [menu-bar mail resend]
938 '("Re-send..." . rmail-summary-resend))
939
940 (define-key rmail-summary-mode-map [menu-bar mail forward]
941 '("Forward" . rmail-summary-forward))
942
943 (define-key rmail-summary-mode-map [menu-bar mail retry]
944 '("Retry" . rmail-summary-retry-failure))
945
946 (define-key rmail-summary-mode-map [menu-bar mail reply]
947 '("Reply" . rmail-summary-reply))
948
949 (define-key rmail-summary-mode-map [menu-bar mail mail]
950 '("Mail" . rmail-summary-mail))
951
952 (define-key rmail-summary-mode-map [menu-bar delete]
953 (cons "Delete" (make-sparse-keymap "Delete")))
954
955 (define-key rmail-summary-mode-map [menu-bar delete expunge/save]
956 '("Expunge/Save" . rmail-summary-expunge-and-save))
957
958 (define-key rmail-summary-mode-map [menu-bar delete expunge]
959 '("Expunge" . rmail-summary-expunge))
960
961 (define-key rmail-summary-mode-map [menu-bar delete undelete]
962 '("Undelete" . rmail-summary-undelete))
963
964 (define-key rmail-summary-mode-map [menu-bar delete delete]
965 '("Delete" . rmail-summary-delete-forward))
966
967 (define-key rmail-summary-mode-map [menu-bar move]
968 (cons "Move" (make-sparse-keymap "Move")))
969
970 (define-key rmail-summary-mode-map [menu-bar move search-back]
971 '("Search Back..." . rmail-summary-search-backward))
972
973 (define-key rmail-summary-mode-map [menu-bar move search]
974 '("Search..." . rmail-summary-search))
975
976 (define-key rmail-summary-mode-map [menu-bar move previous]
977 '("Previous Nondeleted" . rmail-summary-previous-msg))
978
979 (define-key rmail-summary-mode-map [menu-bar move next]
980 '("Next Nondeleted" . rmail-summary-next-msg))
981
982 (define-key rmail-summary-mode-map [menu-bar move last]
983 '("Last" . rmail-summary-last-message))
984
985 (define-key rmail-summary-mode-map [menu-bar move first]
986 '("First" . rmail-summary-first-message))
987
988 (define-key rmail-summary-mode-map [menu-bar move previous]
989 '("Previous" . rmail-summary-previous-all))
990
991 (define-key rmail-summary-mode-map [menu-bar move next]
992 '("Next" . rmail-summary-next-all))
993 \f
994 (defvar rmail-summary-overlay nil)
995 (put 'rmail-summary-overlay 'permanent-local t)
996
997 ;; Go to message N in the summary buffer which is current,
998 ;; and in the corresponding Rmail buffer.
999 ;; If N is nil, use the message corresponding to point in the summary
1000 ;; and move to that message in the Rmail buffer.
1001
1002 ;; If NOWARN, don't say anything if N is out of range.
1003 ;; If SKIP-RMAIL, don't do anything to the Rmail buffer.
1004
1005 (defun rmail-summary-goto-msg (&optional n nowarn skip-rmail)
1006 (interactive "P")
1007 (if (consp n) (setq n (prefix-numeric-value n)))
1008 (if (eobp) (forward-line -1))
1009 (beginning-of-line)
1010 (let* ((obuf (current-buffer))
1011 (buf rmail-buffer)
1012 (cur (point))
1013 message-not-found
1014 (curmsg (string-to-int
1015 (buffer-substring (point)
1016 (min (point-max) (+ 5 (point))))))
1017 (total (save-excursion (set-buffer buf) rmail-total-messages)))
1018 ;; If message number N was specified, find that message's line
1019 ;; or set message-not-found.
1020 ;; If N wasn't specified or that message can't be found.
1021 ;; set N by default.
1022 (if (not n)
1023 (setq n curmsg)
1024 (if (< n 1)
1025 (progn (message "No preceding message")
1026 (setq n 1)))
1027 (if (> n total)
1028 (progn (message "No following message")
1029 (goto-char (point-max))
1030 (rmail-summary-goto-msg nil nowarn skip-rmail)))
1031 (goto-char (point-min))
1032 (if (not (re-search-forward (format "^%4d[^0-9]" n) nil t))
1033 (progn (or nowarn (message "Message %d not found" n))
1034 (setq n curmsg)
1035 (setq message-not-found t)
1036 (goto-char cur))))
1037 (beginning-of-line)
1038 (skip-chars-forward " ")
1039 (skip-chars-forward "0-9")
1040 (save-excursion (if (= (following-char) ?-)
1041 (let ((buffer-read-only nil))
1042 (delete-char 1)
1043 (insert " "))))
1044 (rmail-summary-update-highlight message-not-found)
1045 (beginning-of-line)
1046 (if skip-rmail
1047 nil
1048 (let ((selwin (selected-window)))
1049 (unwind-protect
1050 (progn (pop-to-buffer buf)
1051 (rmail-show-message n))
1052 (select-window selwin)
1053 ;; The actions above can alter the current buffer. Preserve it.
1054 (set-buffer obuf))))))
1055
1056 ;; Update the highlighted line in an rmail summary buffer.
1057 ;; That should be current. We highlight the line point is on.
1058 ;; If NOT-FOUND is non-nil, we turn off highlighting.
1059 (defun rmail-summary-update-highlight (not-found)
1060 ;; Make sure we have an overlay to use.
1061 (or rmail-summary-overlay
1062 (progn
1063 (make-local-variable 'rmail-summary-overlay)
1064 (setq rmail-summary-overlay (make-overlay (point) (point)))))
1065 ;; If this message is in the summary, use the overlay to highlight it.
1066 ;; Otherwise, don't highlight anything.
1067 (if not-found
1068 (overlay-put rmail-summary-overlay 'face nil)
1069 (move-overlay rmail-summary-overlay
1070 (save-excursion (beginning-of-line)
1071 (skip-chars-forward " ")
1072 (point))
1073 (save-excursion (end-of-line) (point)))
1074 (overlay-put rmail-summary-overlay 'face 'highlight)))
1075 \f
1076 (defun rmail-summary-scroll-msg-up (&optional dist)
1077 "Scroll the Rmail window forward.
1078 If the Rmail window is displaying the end of a message,
1079 advance to the next message."
1080 (interactive "P")
1081 (if (eq dist '-)
1082 (rmail-summary-scroll-msg-down nil)
1083 (let ((rmail-buffer-window (get-buffer-window rmail-view-buffer)))
1084 (if rmail-buffer-window
1085 (if (let ((rmail-summary-window (selected-window)))
1086 (select-window rmail-buffer-window)
1087 (prog1
1088 ;; Is EOB visible in the buffer?
1089 (save-excursion
1090 (let ((ht (window-height (selected-window))))
1091 (move-to-window-line (- ht 2))
1092 (end-of-line)
1093 (eobp)))
1094 (select-window rmail-summary-window)))
1095 (if (not rmail-summary-scroll-between-messages)
1096 (error "End of buffer")
1097 (rmail-summary-next-msg (or dist 1)))
1098 (let ((other-window-scroll-buffer rmail-view-buffer))
1099 (scroll-other-window dist)))
1100 ;; If it isn't visible at all, show the beginning.
1101 (rmail-summary-beginning-of-message)))))
1102
1103 (defun rmail-summary-scroll-msg-down (&optional dist)
1104 "Scroll the Rmail window backward.
1105 If the Rmail window is now displaying the beginning of a message,
1106 move to the previous message."
1107 (interactive "P")
1108 (if (eq dist '-)
1109 (rmail-summary-scroll-msg-up nil)
1110 (let ((rmail-buffer-window (get-buffer-window rmail-buffer)))
1111 (if rmail-buffer-window
1112 (if (let ((rmail-summary-window (selected-window)))
1113 (select-window rmail-buffer-window)
1114 (prog1
1115 ;; Is BOB visible in the buffer?
1116 (save-excursion
1117 (move-to-window-line 0)
1118 (beginning-of-line)
1119 (bobp))
1120 (select-window rmail-summary-window)))
1121 (if (not rmail-summary-scroll-between-messages)
1122 (error "Beginning of buffer")
1123 (rmail-summary-previous-msg (or dist 1)))
1124 (let ((other-window-scroll-buffer rmail-buffer))
1125 (scroll-other-window-down dist)))
1126 ;; If it isn't visible at all, show the beginning.
1127 (rmail-summary-beginning-of-message)))))
1128
1129 (defun rmail-summary-beginning-of-message ()
1130 "Show current message from the beginning."
1131 (interactive)
1132 (if (and (one-window-p) (not pop-up-frames))
1133 ;; If there is just one window, put the summary on the top.
1134 (let ((buffer rmail-buffer))
1135 (split-window (selected-window) rmail-summary-window-size)
1136 (select-window (frame-first-window))
1137 (pop-to-buffer rmail-buffer)
1138 ;; If pop-to-buffer did not use that window, delete that
1139 ;; window. (This can happen if it uses another frame.)
1140 (or (eq buffer (window-buffer (next-window (frame-first-window))))
1141 (delete-other-windows)))
1142 (pop-to-buffer rmail-buffer))
1143 (beginning-of-buffer)
1144 (pop-to-buffer rmail-summary-buffer))
1145
1146 (defun rmail-summary-bury ()
1147 "Bury the Rmail buffer and the Rmail summary buffer."
1148 (interactive)
1149 (let ((buffer-to-bury (current-buffer)))
1150 (let (window)
1151 (while (setq window (get-buffer-window rmail-buffer))
1152 (set-window-buffer window (other-buffer rmail-buffer)))
1153 (bury-buffer rmail-buffer))
1154 (switch-to-buffer (other-buffer buffer-to-bury))
1155 (bury-buffer buffer-to-bury)))
1156
1157 (defun rmail-summary-quit ()
1158 "Quit out of Rmail and Rmail summary."
1159 (interactive)
1160 (rmail-summary-wipe)
1161 (rmail-quit))
1162
1163 (defun rmail-summary-wipe ()
1164 "Kill and wipe away Rmail summary, remaining within Rmail."
1165 (interactive)
1166 (save-excursion (set-buffer rmail-buffer) (setq rmail-summary-buffer nil))
1167 (let ((local-rmail-buffer rmail-buffer))
1168 (kill-buffer (current-buffer))
1169 ;; Delete window if not only one.
1170 (if (not (eq (selected-window) (next-window nil 'no-minibuf)))
1171 (delete-window))
1172 ;; Switch windows to the rmail buffer, or switch to it in this window.
1173 (pop-to-buffer local-rmail-buffer)))
1174
1175 (defun rmail-summary-expunge ()
1176 "Actually erase all deleted messages and recompute summary headers."
1177 (interactive)
1178 (save-excursion
1179 (set-buffer rmail-buffer)
1180 (rmail-only-expunge))
1181 (rmail-update-summary))
1182
1183 (defun rmail-summary-expunge-and-save ()
1184 "Expunge and save RMAIL file."
1185 (interactive)
1186 (save-excursion
1187 (set-buffer rmail-buffer)
1188 (rmail-only-expunge))
1189 (rmail-update-summary)
1190 (save-excursion
1191 (set-buffer rmail-buffer)
1192 (save-buffer))
1193 (set-buffer-modified-p nil))
1194
1195 (defun rmail-summary-get-new-mail ()
1196 "Get new mail and recompute summary headers."
1197 (interactive)
1198 (let (msg)
1199 (save-excursion
1200 (set-buffer rmail-buffer)
1201 (rmail-get-new-mail)
1202 ;; Get the proper new message number.
1203 (setq msg rmail-current-message))
1204 ;; Make sure that message is displayed.
1205 (or (zerop msg)
1206 (rmail-summary-goto-msg msg))))
1207
1208 (defun rmail-summary-input (filename)
1209 "Run Rmail on file FILENAME."
1210 (interactive "FRun rmail on RMAIL file: ")
1211 ;; We switch windows here, then display the other Rmail file there.
1212 (pop-to-buffer rmail-buffer)
1213 (rmail filename))
1214
1215 (defun rmail-summary-first-message ()
1216 "Show first message in Rmail file from summary buffer."
1217 (interactive)
1218 (beginning-of-buffer))
1219
1220 (defun rmail-summary-last-message ()
1221 "Show last message in Rmail file from summary buffer."
1222 (interactive)
1223 (end-of-buffer)
1224 (forward-line -1))
1225
1226 (defvar rmail-summary-edit-map nil)
1227 (if rmail-summary-edit-map
1228 nil
1229 (setq rmail-summary-edit-map
1230 (nconc (make-sparse-keymap) text-mode-map))
1231 (define-key rmail-summary-edit-map "\C-c\C-c" 'rmail-cease-edit)
1232 (define-key rmail-summary-edit-map "\C-c\C-]" 'rmail-abort-edit))
1233
1234 (defun rmail-summary-edit-current-message ()
1235 "Edit the contents of this message."
1236 (interactive)
1237 (pop-to-buffer rmail-buffer)
1238 (rmail-edit-current-message)
1239 (use-local-map rmail-summary-edit-map))
1240
1241 (defun rmail-summary-cease-edit ()
1242 "Finish editing message, then go back to Rmail summary buffer."
1243 (interactive)
1244 (rmail-cease-edit)
1245 (pop-to-buffer rmail-summary-buffer))
1246
1247 (defun rmail-summary-abort-edit ()
1248 "Abort edit of current message; restore original contents.
1249 Go back to summary buffer."
1250 (interactive)
1251 (rmail-abort-edit)
1252 (pop-to-buffer rmail-summary-buffer))
1253
1254 (defun rmail-summary-search-backward (regexp &optional n)
1255 "Show message containing next match for REGEXP.
1256 Prefix argument gives repeat count; negative argument means search
1257 backwards (through earlier messages).
1258 Interactively, empty argument means use same regexp used last time."
1259 (interactive
1260 (let* ((reversep (>= (prefix-numeric-value current-prefix-arg) 0))
1261 (prompt
1262 (concat (if reversep "Reverse " "") "Rmail search (regexp): "))
1263 regexp)
1264 (if rmail-search-last-regexp
1265 (setq prompt (concat prompt
1266 "(default "
1267 rmail-search-last-regexp
1268 ") ")))
1269 (setq regexp (read-string prompt))
1270 (cond ((not (equal regexp ""))
1271 (setq rmail-search-last-regexp regexp))
1272 ((not rmail-search-last-regexp)
1273 (error "No previous Rmail search string")))
1274 (list rmail-search-last-regexp
1275 (prefix-numeric-value current-prefix-arg))))
1276 ;; Don't use save-excursion because that prevents point from moving
1277 ;; properly in the summary buffer.
1278 (let ((buffer (current-buffer)))
1279 (unwind-protect
1280 (progn
1281 (set-buffer rmail-buffer)
1282 (rmail-search regexp (- n)))
1283 (set-buffer buffer))))
1284
1285 (defun rmail-summary-search (regexp &optional n)
1286 "Show message containing next match for REGEXP.
1287 Prefix argument gives repeat count; negative argument means search
1288 backwards (through earlier messages).
1289 Interactively, empty argument means use same regexp used last time."
1290 (interactive
1291 (let* ((reversep (< (prefix-numeric-value current-prefix-arg) 0))
1292 (prompt
1293 (concat (if reversep "Reverse " "") "Rmail search (regexp): "))
1294 regexp)
1295 (if rmail-search-last-regexp
1296 (setq prompt (concat prompt
1297 "(default "
1298 rmail-search-last-regexp
1299 ") ")))
1300 (setq regexp (read-string prompt))
1301 (cond ((not (equal regexp ""))
1302 (setq rmail-search-last-regexp regexp))
1303 ((not rmail-search-last-regexp)
1304 (error "No previous Rmail search string")))
1305 (list rmail-search-last-regexp
1306 (prefix-numeric-value current-prefix-arg))))
1307 ;; Don't use save-excursion because that prevents point from moving
1308 ;; properly in the summary buffer.
1309 (let ((buffer (current-buffer)))
1310 (unwind-protect
1311 (progn
1312 (set-buffer rmail-buffer)
1313 (rmail-search regexp n))
1314 (set-buffer buffer))))
1315
1316 (defun rmail-summary-toggle-header ()
1317 "Show original message header if pruned header currently shown, or vice versa."
1318 (interactive)
1319 (save-excursion
1320 (set-buffer rmail-buffer)
1321 (rmail-toggle-header))
1322 ;; Inside save-excursion, some changes to point in the RMAIL buffer are lost.
1323 ;; Set point to point-min in the RMAIL buffer, if it is visible.
1324 (let ((window (get-buffer-window rmail-buffer)))
1325 (if window
1326 ;; Using save-window-excursion would lose the new value of point.
1327 (let ((owin (selected-window)))
1328 (unwind-protect
1329 (progn
1330 (select-window window)
1331 (goto-char (point-min)))
1332 (select-window owin))))))
1333
1334
1335 (defun rmail-summary-add-label (label)
1336 "Add LABEL to labels associated with current Rmail message.
1337 Completion is performed over known labels when reading."
1338 (interactive (list (save-excursion
1339 (set-buffer rmail-buffer)
1340 (rmail-read-label "Add label"))))
1341 (save-excursion
1342 (set-buffer rmail-buffer)
1343 (rmail-add-label label)))
1344
1345 (defun rmail-summary-kill-label (label)
1346 "Remove LABEL from labels associated with current Rmail message.
1347 Completion is performed over known labels when reading."
1348 (interactive (list (save-excursion
1349 (set-buffer rmail-buffer)
1350 (rmail-read-label "Kill label"))))
1351 (save-excursion
1352 (set-buffer rmail-buffer)
1353 (rmail-set-label label nil)))
1354 \f
1355 ;;;; *** Rmail Summary Mailing Commands ***
1356
1357 (defun rmail-summary-mail ()
1358 "Send mail in another window.
1359 While composing the message, use \\[mail-yank-original] to yank the
1360 original message into it."
1361 (interactive)
1362 (let ((window (get-buffer-window rmail-buffer)))
1363 (if window
1364 (select-window window)
1365 (set-buffer rmail-buffer)))
1366 (rmail-start-mail nil nil nil nil nil (current-buffer))
1367 (use-local-map (copy-keymap (current-local-map)))
1368 (define-key (current-local-map)
1369 "\C-c\C-c" 'rmail-summary-send-and-exit))
1370
1371 (defun rmail-summary-continue ()
1372 "Continue composing outgoing message previously being composed."
1373 (interactive)
1374 (let ((window (get-buffer-window rmail-buffer)))
1375 (if window
1376 (select-window window)
1377 (set-buffer rmail-buffer)))
1378 (rmail-start-mail t))
1379
1380 (defun rmail-summary-reply (just-sender)
1381 "Reply to the current message.
1382 Normally include CC: to all other recipients of original message;
1383 prefix argument means ignore them. While composing the reply,
1384 use \\[mail-yank-original] to yank the original message into it."
1385 (interactive "P")
1386 (let ((window (get-buffer-window rmail-buffer)))
1387 (if window
1388 (select-window window)
1389 (set-buffer rmail-buffer)))
1390 (rmail-reply just-sender)
1391 (use-local-map (copy-keymap (current-local-map)))
1392 (define-key (current-local-map)
1393 "\C-c\C-c" 'rmail-summary-send-and-exit))
1394
1395 (defun rmail-summary-retry-failure ()
1396 "Edit a mail message which is based on the contents of the current message.
1397 For a message rejected by the mail system, extract the interesting headers and
1398 the body of the original message; otherwise copy the current message."
1399 (interactive)
1400 (let ((window (get-buffer-window rmail-buffer)))
1401 (if window
1402 (select-window window)
1403 (set-buffer rmail-buffer)))
1404 (rmail-retry-failure)
1405 (use-local-map (copy-keymap (current-local-map)))
1406 (define-key (current-local-map)
1407 "\C-c\C-c" 'rmail-summary-send-and-exit))
1408
1409 (defun rmail-summary-send-and-exit ()
1410 "Send mail reply and return to summary buffer."
1411 (interactive)
1412 (mail-send-and-exit t))
1413
1414 (defun rmail-summary-forward (resend)
1415 "Forward the current message to another user.
1416 With prefix argument, \"resend\" the message instead of forwarding it;
1417 see the documentation of `rmail-resend'."
1418 (interactive "P")
1419 (save-excursion
1420 (let ((window (get-buffer-window rmail-buffer)))
1421 (if window
1422 (select-window window)
1423 (set-buffer rmail-buffer)))
1424 (rmail-forward resend)
1425 (use-local-map (copy-keymap (current-local-map)))
1426 (define-key (current-local-map)
1427 "\C-c\C-c" 'rmail-summary-send-and-exit)))
1428
1429 (defun rmail-summary-resend ()
1430 "Resend current message using 'rmail-resend'."
1431 (interactive)
1432 (save-excursion
1433 (let ((window (get-buffer-window rmail-buffer)))
1434 (if window
1435 (select-window window)
1436 (set-buffer rmail-buffer)))
1437 (call-interactively 'rmail-resend)))
1438 \f
1439 ;; Summary output commands.
1440
1441 (defun rmail-summary-output-to-rmail-file (&optional file-name)
1442 "Append the current message to an Rmail file named FILE-NAME.
1443 If the file does not exist, ask if it should be created.
1444 If file is being visited, the message is appended to the Emacs
1445 buffer visiting that file."
1446 (interactive)
1447 (save-excursion
1448 (set-buffer rmail-buffer)
1449 (let ((rmail-delete-after-output nil))
1450 (if file-name
1451 (rmail-output-to-rmail-file file-name)
1452 (call-interactively 'rmail-output-to-rmail-file))))
1453 (if rmail-delete-after-output
1454 (rmail-summary-delete-forward nil)))
1455
1456 (defun rmail-summary-output-menu ()
1457 "Output current message to another Rmail file, chosen with a menu.
1458 Also set the default for subsequent \\[rmail-output-to-rmail-file] commands.
1459 The variables `rmail-secondary-file-directory' and
1460 `rmail-secondary-file-regexp' control which files are offered in the menu."
1461 (interactive)
1462 (save-excursion
1463 (set-buffer rmail-buffer)
1464 (let ((rmail-delete-after-output nil))
1465 (call-interactively 'rmail-output-menu)))
1466 (if rmail-delete-after-output
1467 (rmail-summary-delete-forward nil)))
1468
1469 (defun rmail-summary-output ()
1470 "Append this message to Unix mail file named FILE-NAME."
1471 (interactive)
1472 (save-excursion
1473 (set-buffer rmail-buffer)
1474 (let ((rmail-delete-after-output nil))
1475 (call-interactively 'rmail-output)))
1476 (if rmail-delete-after-output
1477 (rmail-summary-delete-forward nil)))
1478
1479 (defun rmail-summary-construct-io-menu ()
1480 (let ((files (rmail-find-all-files rmail-secondary-file-directory)))
1481 (if files
1482 (progn
1483 (define-key rmail-summary-mode-map [menu-bar classify input-menu]
1484 (cons "Input Rmail File"
1485 (rmail-list-to-menu "Input Rmail File"
1486 files
1487 'rmail-summary-input)))
1488 (define-key rmail-summary-mode-map [menu-bar classify output-menu]
1489 (cons "Output Rmail File"
1490 (rmail-list-to-menu "Output Rmail File"
1491 files
1492 'rmail-summary-output-to-rmail-file))))
1493 (define-key rmail-summary-mode-map [menu-bar classify input-menu]
1494 '("Input Rmail File" . rmail-disable-menu))
1495 (define-key rmail-summary-mode-map [menu-bar classify output-menu]
1496 '("Output Rmail File" . rmail-disable-menu)))))
1497
1498 \f
1499 ;; Sorting messages in Rmail Summary buffer.
1500
1501 (defun rmail-summary-sort-by-date (reverse)
1502 "Sort messages of current Rmail summary by date.
1503 If prefix argument REVERSE is non-nil, sort them in reverse order."
1504 (interactive "P")
1505 (rmail-sort-from-summary (function rmail-sort-by-date) reverse))
1506
1507 (defun rmail-summary-sort-by-subject (reverse)
1508 "Sort messages of current Rmail summary by subject.
1509 If prefix argument REVERSE is non-nil, sort them in reverse order."
1510 (interactive "P")
1511 (rmail-sort-from-summary (function rmail-sort-by-subject) reverse))
1512
1513 (defun rmail-summary-sort-by-author (reverse)
1514 "Sort messages of current Rmail summary by author.
1515 If prefix argument REVERSE is non-nil, sort them in reverse order."
1516 (interactive "P")
1517 (rmail-sort-from-summary (function rmail-sort-by-author) reverse))
1518
1519 (defun rmail-summary-sort-by-recipient (reverse)
1520 "Sort messages of current Rmail summary by recipient.
1521 If prefix argument REVERSE is non-nil, sort them in reverse order."
1522 (interactive "P")
1523 (rmail-sort-from-summary (function rmail-sort-by-recipient) reverse))
1524
1525 (defun rmail-summary-sort-by-correspondent (reverse)
1526 "Sort messages of current Rmail summary by other correspondent.
1527 If prefix argument REVERSE is non-nil, sort them in reverse order."
1528 (interactive "P")
1529 (rmail-sort-from-summary (function rmail-sort-by-correspondent) reverse))
1530
1531 (defun rmail-summary-sort-by-lines (reverse)
1532 "Sort messages of current Rmail summary by lines of the message.
1533 If prefix argument REVERSE is non-nil, sort them in reverse order."
1534 (interactive "P")
1535 (rmail-sort-from-summary (function rmail-sort-by-lines) reverse))
1536
1537 (defun rmail-summary-sort-by-keywords (reverse labels)
1538 "Sort messages of current Rmail summary by keywords.
1539 If prefix argument REVERSE is non-nil, sort them in reverse order.
1540 KEYWORDS is a comma-separated list of labels."
1541 (interactive "P\nsSort by labels: ")
1542 (rmail-sort-from-summary
1543 (function (lambda (reverse)
1544 (rmail-sort-by-keywords reverse labels)))
1545 reverse))
1546
1547 (defun rmail-sort-from-summary (sortfun reverse)
1548 "Sort Rmail messages from Summary buffer and update it after sorting."
1549 (require 'rmailsort)
1550 (let ((selwin (selected-window)))
1551 (unwind-protect
1552 (progn (pop-to-buffer rmail-buffer)
1553 (funcall sortfun reverse))
1554 (select-window selwin))))
1555
1556 ;;; rmailsum.el ends here