home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / emacs-19.28-src.tgz / tar.out / fsf / emacs / lisp / rmailsum.el < prev    next >
Lisp/Scheme  |  1996-09-28  |  44KB  |  1,203 lines

  1. ;;; rmailsum.el --- make summary buffers for the mail reader
  2.  
  3. ;; Copyright (C) 1985, 1993, 1994 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
  22. ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  23.  
  24. ;;; Commentary:
  25.  
  26. ;; Extended by Bob Weiner of Motorola
  27. ;;   Provided all commands from rmail-mode in rmail-summary-mode and made key
  28. ;;   bindings in both modes wholly compatible.
  29.  
  30. ;;; Code:
  31.  
  32. ;; Entry points for making a summary buffer.
  33.  
  34. ;; Regenerate the contents of the summary
  35. ;; using the same selection criterion as last time.
  36. ;; M-x revert-buffer in a summary buffer calls this function.
  37. (defun rmail-update-summary (&rest ignore)
  38.   (apply (car rmail-summary-redo) (cdr rmail-summary-redo)))
  39.  
  40. (defun rmail-summary ()
  41.   "Display a summary of all messages, one line per message."
  42.   (interactive)
  43.   (rmail-new-summary "All" '(rmail-summary) nil))
  44.  
  45. (defun rmail-summary-by-labels (labels)
  46.   "Display a summary of all messages with one or more LABELS.
  47. LABELS should be a string containing the desired labels, separated by commas."
  48.   (interactive "sLabels to summarize by: ")
  49.   (if (string= labels "")
  50.       (setq labels (or rmail-last-multi-labels
  51.                (error "No label specified"))))
  52.   (setq rmail-last-multi-labels labels)
  53.   (rmail-new-summary (concat "labels " labels)
  54.              (list 'rmail-summary-by-labels labels)
  55.              'rmail-message-labels-p
  56.              (concat ", \\(" (mail-comma-list-regexp labels) "\\),")))
  57.  
  58. (defun rmail-summary-by-recipients (recipients &optional primary-only)
  59.   "Display a summary of all messages with the given RECIPIENTS.
  60. Normally checks the To, From and Cc fields of headers;
  61. but if PRIMARY-ONLY is non-nil (prefix arg given),
  62.  only look in the To and From fields.
  63. RECIPIENTS is a string of regexps separated by commas."
  64.   (interactive "sRecipients to summarize by: \nP")
  65.   (rmail-new-summary
  66.    (concat "recipients " recipients)
  67.    (list 'rmail-summary-by-recipients recipients primary-only)
  68.    'rmail-message-recipients-p
  69.    (mail-comma-list-regexp recipients) primary-only))
  70.  
  71. (defun rmail-summary-by-regexp (regexp)
  72.   "Display a summary of all messages according to regexp REGEXP.
  73. If the regular expression is found in the header of the message
  74. \(including in the date and other lines, as well as the subject line),
  75. Emacs will list the header line in the RMAIL-summary."
  76.   (interactive "sRegexp to summarize by: ")
  77.   (if (string= regexp "")
  78.       (setq regexp (or rmail-last-regexp
  79.              (error "No regexp specified."))))
  80.   (setq rmail-last-regexp regexp)
  81.   (rmail-new-summary (concat "regexp " regexp)
  82.              (list 'rmail-summary-by-regexp regexp)
  83.              'rmail-message-regexp-p
  84.                      regexp))
  85.  
  86. ;; rmail-summary-by-topic
  87. ;; 1989 R.A. Schnitzler
  88.  
  89. (defun rmail-summary-by-topic (subject &optional whole-message)
  90.   "Display a summary of all messages with the given SUBJECT.
  91. Normally checks the Subject field of headers;
  92. but if WHOLE-MESSAGE is non-nil (prefix arg given), 
  93.  look in the whole message.
  94. SUBJECT is a string of regexps separated by commas."
  95.   (interactive "sTopics to summarize by: \nP")
  96.   (rmail-new-summary
  97.    (concat "about " subject)
  98.    (list 'rmail-summary-by-topic subject whole-message)
  99.    'rmail-message-subject-p
  100.    (mail-comma-list-regexp subject) whole-message))
  101.  
  102. (defun rmail-message-subject-p (msg subject &optional whole-message)
  103.   (save-restriction
  104.     (goto-char (rmail-msgbeg msg))
  105.     (search-forward "\n*** EOOH ***\n")
  106.     (narrow-to-region
  107.      (point)
  108.      (progn (search-forward (if whole-message "\^_" "\n\n")) (point)))
  109.     (goto-char (point-min))
  110.     (if whole-message (re-search-forward subject nil t)
  111.       (string-match subject (or (mail-fetch-field "Subject") "")) )))
  112.  
  113. (defun rmail-summary-by-senders (senders)
  114.   "Display a summary of all messages with the given SENDERS.
  115. SENDERS is a string of names separated by commas."
  116.   (interactive "sSenders to summarize by: ")
  117.   (rmail-new-summary
  118.    (concat "senders " senders)
  119.    (list 'rmail-summary-by-senders senders)
  120.    'rmail-message-senders-p
  121.    (mail-comma-list-regexp senders)))
  122.  
  123. (defun rmail-message-senders-p (msg senders)
  124.   (save-restriction
  125.     (goto-char (rmail-msgbeg msg))
  126.     (search-forward "\n*** EOOH ***\n")
  127.     (narrow-to-region (point) (progn (search-forward "\n\n") (point)))
  128.     (string-match senders (or (mail-fetch-field "From") ""))))
  129.  
  130. ;; General making of a summary buffer.
  131.  
  132. (defvar rmail-summary-symbol-number 0)
  133.  
  134. (defun rmail-new-summary (description redo-form function &rest args)
  135.   "Create a summary of selected messages.
  136. DESCRIPTION makes part of the mode line of the summary buffer.
  137. For each message, FUNCTION is applied to the message number and ARGS...
  138. and if the result is non-nil, that message is included.
  139. nil for FUNCTION means all messages."
  140.   (message "Computing summary lines...")
  141.   (let (sumbuf mesg was-in-summary)
  142.     (save-excursion
  143.       ;; Go to the Rmail buffer.
  144.       (if (eq major-mode 'rmail-summary-mode)
  145.       (progn
  146.         (setq was-in-summary t)
  147.         (set-buffer rmail-buffer)))
  148.       ;; Find its summary buffer, or make one.
  149.       (setq sumbuf
  150.         (if (and rmail-summary-buffer
  151.              (buffer-name rmail-summary-buffer))
  152.         rmail-summary-buffer
  153.           (generate-new-buffer (concat (buffer-name) "-summary"))))
  154.       (setq mesg rmail-current-message)
  155.       ;; Filter the messages; make or get their summary lines.
  156.       (let ((summary-msgs ())
  157.         (new-summary-line-count 0))
  158.     (let ((msgnum 1)
  159.           (buffer-read-only nil)
  160.           (old-min (point-min-marker))
  161.           (old-max (point-max-marker)))
  162.       ;; Can't use save-restriction here; that doesn't work if we
  163.       ;; plan to modify text outside the original restriction.
  164.       (save-excursion
  165.         (widen)
  166.         (goto-char (point-min))
  167.         (while (>= rmail-total-messages msgnum)
  168.           (if (or (null function)
  169.               (apply function (cons msgnum args)))
  170.           (setq summary-msgs
  171.             (cons (cons msgnum (rmail-make-summary-line msgnum))
  172.                   summary-msgs)))
  173.           (setq msgnum (1+ msgnum)))
  174.         (setq summary-msgs (nreverse summary-msgs)))
  175.       (narrow-to-region old-min old-max))
  176.     ;; Temporarily, while summary buffer is unfinished,
  177.     ;; we "don't have" a summary.
  178.     (setq rmail-summary-buffer nil)
  179.     (save-excursion
  180.       (let ((rbuf (current-buffer))
  181.         (total rmail-total-messages))
  182.         (set-buffer sumbuf)
  183.         ;; Set up the summary buffer's contents.
  184.         (let ((buffer-read-only nil))
  185.           (erase-buffer)
  186.           (while summary-msgs
  187.         (princ (cdr (car summary-msgs)) sumbuf)
  188.         (setq summary-msgs (cdr summary-msgs)))
  189.           (goto-char (point-min)))
  190.         ;; Set up the rest of its state and local variables.
  191.         (setq buffer-read-only t)
  192.         (rmail-summary-mode)
  193.         (make-local-variable 'minor-mode-alist)
  194.         (setq minor-mode-alist (list '(t (concat ": " description))))
  195.         (setq rmail-buffer rbuf
  196.           rmail-summary-redo redo-form
  197.           rmail-total-messages total))))
  198.       (setq rmail-summary-buffer sumbuf))
  199.     ;; Now display the summary buffer and go to the right place in it.
  200.     (or was-in-summary
  201.     (if (one-window-p)
  202.         ;; If there is just one window, put the summary on the top.
  203.         (progn
  204.           (split-window)
  205.           (select-window (next-window (frame-first-window)))
  206.           (pop-to-buffer sumbuf)
  207.           ;; If pop-to-buffer did not use that window, delete that
  208.           ;; window.  (This can happen if it uses another frame.)
  209.           (if (not (eq sumbuf (window-buffer (frame-first-window))))
  210.           (delete-other-windows)))
  211.       (pop-to-buffer sumbuf)))
  212.     (rmail-summary-goto-msg mesg t t)
  213.     (message "Computing summary lines...done")))
  214.  
  215. ;; Low levels of generating a summary.
  216.  
  217. (defun rmail-make-summary-line (msg)
  218.   (let ((line (or (aref rmail-summary-vector (1- msg))
  219.           (progn
  220.             (setq new-summary-line-count
  221.               (1+ new-summary-line-count))
  222.             (if (zerop (% new-summary-line-count 10))
  223.             (message "Computing summary lines...%d"
  224.                  new-summary-line-count))
  225.             (rmail-make-summary-line-1 msg)))))
  226.     ;; Fix up the part of the summary that says "deleted" or "unseen".
  227.     (aset line 4
  228.       (if (rmail-message-deleted-p msg) ?\D
  229.         (if (= ?0 (char-after (+ 3 (rmail-msgbeg msg))))
  230.         ?\- ?\ )))
  231.     line))
  232.  
  233. (defun rmail-make-summary-line-1 (msg)
  234.   (goto-char (rmail-msgbeg msg))
  235.   (let* ((lim (save-excursion (forward-line 2) (point)))
  236.      pos
  237.      (labels
  238.       (progn
  239.         (forward-char 3)
  240.         (concat
  241. ;         (if (save-excursion (re-search-forward ",answered," lim t))
  242. ;         "*" "")
  243. ;         (if (save-excursion (re-search-forward ",filed," lim t))
  244. ;         "!" "")
  245.          (if (progn (search-forward ",,") (eolp))
  246.          ""
  247.            (concat "{"
  248.                (buffer-substring (point)
  249.                      (progn (end-of-line) (point)))
  250.                "} ")))))
  251.      (line
  252.       (progn
  253.         (forward-line 1)
  254.         (if (looking-at "Summary-line: ")
  255.         (progn
  256.           (goto-char (match-end 0))
  257.           (setq line
  258.             (buffer-substring (point)
  259.                       (progn (forward-line 1) (point)))))))))
  260.     ;; Obsolete status lines lacking a # should be flushed.
  261.     (and line
  262.      (not (string-match "#" line))
  263.      (progn
  264.        (delete-region (point)
  265.               (progn (forward-line -1) (point)))
  266.        (setq line nil)))
  267.     ;; If we didn't get a valid status line from the message,
  268.     ;; make a new one and put it in the message.
  269.     (or line
  270.     (let* ((case-fold-search t)
  271.            (next (rmail-msgend msg))
  272.            (beg (if (progn (goto-char (rmail-msgbeg msg))
  273.                    (search-forward "\n*** EOOH ***\n" next t))
  274.             (point)
  275.               (forward-line 1)
  276.               (point)))
  277.            (end (progn (search-forward "\n\n" nil t) (point))))
  278.       (save-restriction
  279.         (narrow-to-region beg end)
  280.         (goto-char beg)
  281.         (setq line (rmail-make-basic-summary-line)))
  282.       (goto-char (rmail-msgbeg msg))
  283.       (forward-line 2)
  284.       (insert "Summary-line: " line)))
  285.     (setq pos (string-match "#" line))
  286.     (aset rmail-summary-vector (1- msg)
  287.       (concat (format "%4d  " msg)
  288.           (substring line 0 pos)
  289.           labels
  290.           (substring line (1+ pos))))))
  291.  
  292. (defun rmail-make-basic-summary-line ()
  293.   (goto-char (point-min))
  294.   (concat (save-excursion
  295.         (if (not (re-search-forward "^Date:" nil t))
  296.         "      "
  297.           (cond ((re-search-forward "\\([^0-9:]\\)\\([0-3]?[0-9]\\)\\([- \t_]+\\)\\([adfjmnos][aceopu][bcglnprtvy]\\)"
  298.               (save-excursion (end-of-line) (point)) t)
  299.              (format "%2d-%3s"
  300.                  (string-to-int (buffer-substring
  301.                          (match-beginning 2)
  302.                          (match-end 2)))
  303.                  (buffer-substring
  304.                   (match-beginning 4) (match-end 4))))
  305.             ((re-search-forward "\\([^a-z]\\)\\([adfjmnos][acepou][bcglnprtvy]\\)\\([-a-z \t_]*\\)\\([0-9][0-9]?\\)"
  306.               (save-excursion (end-of-line) (point)) t)
  307.              (format "%2d-%3s"
  308.                  (string-to-int (buffer-substring
  309.                          (match-beginning 4)
  310.                          (match-end 4)))
  311.                  (buffer-substring
  312.                   (match-beginning 2) (match-end 2))))
  313.             (t "??????"))))
  314.       "  "
  315.       (save-excursion
  316.         (if (not (re-search-forward "^From:[ \t]*" nil t))
  317.         "                         "
  318.           (let* ((from (mail-strip-quoted-names
  319.                 (buffer-substring
  320.                  (1- (point))
  321.                  ;; Get all the lines of the From field
  322.                  ;; so that we get a whole comment if there is one,
  323.                  ;; so that mail-strip-quoted-names can discard it.
  324.                  (let ((opoint (point)))
  325.                    (while (progn (forward-line 1)
  326.                          (looking-at "[ \t]")))
  327.                    ;; Back up over newline, then trailing spaces or tabs
  328.                    (forward-char -1)
  329.                    (skip-chars-backward " \t")
  330.                    (point)))))
  331.                      len mch lo)
  332.         (if (string-match (concat "^"
  333.                       (regexp-quote (user-login-name))
  334.                       "\\($\\|@\\)")
  335.                   from)
  336.             (save-excursion
  337.               (goto-char (point-min))
  338.               (if (not (re-search-forward "^To:[ \t]*" nil t))
  339.               nil
  340.             (setq from
  341.                   (concat "to: "
  342.                       (mail-strip-quoted-names
  343.                        (buffer-substring
  344.                     (point)
  345.                     (progn (end-of-line)
  346.                            (skip-chars-backward " \t")
  347.                            (point)))))))))
  348.         (setq len (length from))
  349.         (setq mch (string-match "[@%]" from))
  350.         (format "%25s"
  351.             (if (or (not mch) (<= len 25))
  352.                 (substring from (max 0 (- len 25)))
  353.               (substring from
  354.                      (setq lo (cond ((< (- mch 14) 0) 0)
  355.                             ((< len (+ mch 11))
  356.                              (- len 25))
  357.                             (t (- mch 14))))
  358.                      (min len (+ lo 25))))))))
  359.       "  #"
  360.       (if (re-search-forward "^Subject:" nil t)
  361.           (progn (skip-chars-forward " \t")
  362.              (buffer-substring (point)
  363.                        (progn (end-of-line)
  364.                           (point))))
  365.         (re-search-forward "[\n][\n]+" nil t)
  366.         (buffer-substring (point) (progn (end-of-line) (point))))
  367.       "\n"))
  368.  
  369. ;; Simple motion in a summary buffer.
  370.  
  371. (defun rmail-summary-next-all (&optional number)
  372.   (interactive "p")
  373.   (forward-line (if number number 1))
  374.   (display-buffer rmail-buffer))
  375.  
  376. (defun rmail-summary-previous-all (&optional number)
  377.   (interactive "p")
  378.   (forward-line (- (if number number 1)))
  379.   (display-buffer rmail-buffer))
  380.  
  381. (defun rmail-summary-next-msg (&optional number)
  382.   "Display next non-deleted msg from rmail file.
  383. With optional prefix argument NUMBER, moves forward this number of non-deleted
  384. messages, or backward if NUMBER is negative."
  385.   (interactive "p")
  386.   (forward-line 0)
  387.   (and (> number 0) (end-of-line))
  388.   (let ((count (if (< number 0) (- number) number))
  389.     (search (if (> number 0) 're-search-forward 're-search-backward))
  390.     (non-del-msg-found nil))
  391.     (while (and (> count 0) (setq non-del-msg-found
  392.                   (or (funcall search "^....[^D]" nil t)
  393.                       non-del-msg-found)))
  394.       (setq count (1- count))))
  395.   (beginning-of-line)
  396.   (display-buffer rmail-buffer))
  397.  
  398. (defun rmail-summary-previous-msg (&optional number)
  399.   (interactive "p")
  400.   (rmail-summary-next-msg (- (if number number 1))))
  401.  
  402. (defun rmail-summary-next-labeled-message (n labels)
  403.   "Show next message with LABEL.  Defaults to last labels used.
  404. With prefix argument N moves forward N messages with these labels."
  405.   (interactive "p\nsMove to next msg with labels: ")
  406.   (save-excursion
  407.     (set-buffer rmail-buffer)
  408.     (rmail-next-labeled-message n labels)))
  409.  
  410. (defun rmail-summary-previous-labeled-message (n labels)
  411.   "Show previous message with LABEL.  Defaults to last labels used.
  412. With prefix argument N moves backward N messages with these labels."
  413.   (interactive "p\nsMove to previous msg with labels: ")
  414.   (save-excursion
  415.     (set-buffer rmail-buffer)
  416.     (rmail-previous-labeled-message n labels)))
  417.  
  418. ;; Delete and undelete summary commands.
  419.  
  420. (defun rmail-summary-delete-forward (&optional backward)
  421.   "Delete this message and move to next nondeleted one.
  422. Deleted messages stay in the file until the \\[rmail-expunge] command is given.
  423. With prefix argument, delete and move backward."
  424.   (interactive "P")
  425.   (let (end)
  426.     (rmail-summary-goto-msg)
  427.     (pop-to-buffer rmail-buffer)
  428.     (rmail-delete-message)
  429.     (let ((del-msg rmail-current-message))
  430.       (pop-to-buffer rmail-summary-buffer)
  431.       (rmail-summary-mark-deleted del-msg)
  432.       (while (and (not (if backward (bobp) (eobp)))
  433.           (save-excursion (beginning-of-line)
  434.                   (looking-at " +[0-9]+D")))
  435.     (forward-line (if backward -1 1))))))
  436.  
  437. (defun rmail-summary-delete-backward ()
  438.   "Delete this message and move to previous nondeleted one.
  439. Deleted messages stay in the file until the \\[rmail-expunge] command is given."
  440.   (interactive)
  441.   (rmail-summary-delete-forward t))
  442.  
  443. (defun rmail-summary-mark-deleted (&optional n undel)
  444.   (and n (rmail-summary-goto-msg n t t))
  445.   (or (eobp)
  446.       (let ((buffer-read-only nil))
  447.     (skip-chars-forward " ")
  448.     (skip-chars-forward "[0-9]")
  449.     (if undel
  450.         (if (looking-at "D")
  451.         (progn (delete-char 1) (insert " ")))
  452.       (delete-char 1)
  453.       (insert "D"))))
  454.   (beginning-of-line))
  455.  
  456. (defun rmail-summary-mark-undeleted (n)
  457.   (rmail-summary-mark-deleted n t))
  458.  
  459. (defun rmail-summary-deleted-p (&optional n)
  460.   (save-excursion
  461.     (and n (rmail-summary-goto-msg n nil t))
  462.     (skip-chars-forward " ")
  463.     (skip-chars-forward "[0-9]")
  464.     (looking-at "D")))
  465.  
  466. (defun rmail-summary-undelete (&optional arg)
  467.   "Undelete current message.
  468. Optional prefix ARG means undelete ARG previous messages."
  469.   (interactive "p")
  470.   (if (/= arg 1)
  471.       (rmail-summary-undelete-many arg)
  472.     (let ((buffer-read-only nil)
  473.       (opoint (point)))
  474.       (end-of-line)
  475.       (cond ((re-search-backward "\\(^ *[0-9]*\\)\\(D\\)" nil t)
  476.          (replace-match "\\1 ")
  477.          (rmail-summary-goto-msg)
  478.          (pop-to-buffer rmail-buffer)
  479.          (and (rmail-message-deleted-p rmail-current-message)
  480.           (rmail-undelete-previous-message))
  481.          (pop-to-buffer rmail-summary-buffer))
  482.         (t (goto-char opoint))))))
  483.  
  484. (defun rmail-summary-undelete-many (&optional n)
  485.   "Undelete all deleted msgs, optional prefix arg N means undelete N prev msgs."
  486.   (interactive "P")
  487.   (save-excursion
  488.     (set-buffer rmail-buffer)
  489.     (let* ((init-msg (if n rmail-current-message rmail-total-messages))
  490.        (rmail-current-message init-msg)
  491.        (n (or n rmail-total-messages))
  492.        (msgs-undeled 0))
  493.       (while (and (> rmail-current-message 0)
  494.           (< msgs-undeled n))
  495.     (if (rmail-message-deleted-p rmail-current-message)
  496.         (progn (rmail-set-attribute "deleted" nil)
  497.            (setq msgs-undeled (1+ msgs-undeled))))
  498.     (setq rmail-current-message (1- rmail-current-message)))
  499.       (set-buffer rmail-summary-buffer)
  500.       (setq rmail-current-message init-msg msgs-undeled 0)
  501.       (while (and (> rmail-current-message 0)
  502.           (< msgs-undeled n))
  503.     (if (rmail-summary-deleted-p rmail-current-message)
  504.         (progn (rmail-summary-mark-undeleted rmail-current-message)
  505.            (setq msgs-undeled (1+ msgs-undeled))))
  506.     (setq rmail-current-message (1- rmail-current-message))))
  507.     (rmail-summary-goto-msg)))
  508.  
  509. ;; Rmail Summary mode is suitable only for specially formatted data.
  510. (put 'rmail-summary-mode 'mode-class 'special)
  511.  
  512. (defun rmail-summary-mode ()
  513.   "Rmail Summary Mode is invoked from Rmail Mode by using \\<rmail-mode-map>\\[rmail-summary].
  514. As commands are issued in the summary buffer, they are applied to the
  515. corresponding mail messages in the rmail buffer.
  516.  
  517. All normal editing commands are turned off.
  518. Instead, nearly all the Rmail mode commands are available,
  519. though many of them move only among the messages in the summary.
  520.  
  521. These additional commands exist:
  522.  
  523. \\[rmail-summary-undelete-many]    Undelete all or prefix arg deleted messages.
  524. \\[rmail-summary-wipe] Delete the summary and go to the Rmail buffer.
  525.  
  526. Commands for sorting the summary:
  527.  
  528. \\[rmail-summary-sort-by-date] Sort by date.
  529. \\[rmail-summary-sort-by-subject] Sort by subject.
  530. \\[rmail-summary-sort-by-author] Sort by author.
  531. \\[rmail-summary-sort-by-recipient] Sort by recipient.
  532. \\[rmail-summary-sort-by-correspondent] Sort by correspondent.
  533. \\[rmail-summary-sort-by-lines] Sort by lines.
  534. \\[rmail-summary-sort-by-keywords] Sort by keywords."
  535.   (interactive)
  536.   (kill-all-local-variables)
  537.   (setq major-mode 'rmail-summary-mode)
  538.   (setq mode-name "RMAIL Summary")
  539.   (setq truncate-lines t)
  540.   (setq buffer-read-only t)
  541.   (set-syntax-table text-mode-syntax-table)
  542.   (make-local-variable 'rmail-buffer)
  543.   (make-local-variable 'rmail-total-messages)
  544.   (make-local-variable 'rmail-current-message)
  545.   (setq rmail-current-message nil)
  546.   (make-local-variable 'rmail-summary-redo)
  547.   (setq rmail-summary-redo nil)
  548.   (make-local-variable 'revert-buffer-function)
  549.   (make-local-variable 'post-command-hook)
  550.   (rmail-summary-enable)
  551.   (run-hooks 'rmail-summary-mode-hook))
  552.  
  553. ;; Summary features need to be disabled during edit mode.
  554. (defun rmail-summary-disable ()
  555.   (use-local-map text-mode-map)
  556.   (remove-hook 'post-command-hook 'rmail-summary-rmail-update)
  557.   (setq revert-buffer-function nil))
  558.  
  559. (defun rmail-summary-enable ()
  560.   (use-local-map rmail-summary-mode-map)
  561.   (add-hook 'post-command-hook 'rmail-summary-rmail-update)
  562.   (setq revert-buffer-function 'rmail-update-summary))
  563.  
  564. ;; Show in Rmail the message described by the summary line that point is on,
  565. ;; but only if the Rmail buffer is already visible.
  566. ;; This is a post-command-hook in summary buffers.
  567. (defun rmail-summary-rmail-update ()
  568.   (let (buffer-read-only)
  569.     (save-excursion
  570.       ;; If at end of buffer, pretend we are on the last text line.
  571.       (if (eobp)
  572.       (forward-line -1))
  573.       (beginning-of-line)
  574.       (skip-chars-forward " ")
  575.       (let ((msg-num (string-to-int (buffer-substring
  576.                      (point)
  577.                      (progn (skip-chars-forward "0-9")
  578.                         (point))))))
  579.     (or (eq rmail-current-message msg-num)
  580.         (let ((window (get-buffer-window rmail-buffer))
  581.           (owin (selected-window)))
  582.           (setq rmail-current-message msg-num)
  583.           (if (= (following-char) ?-)
  584.           (progn
  585.             (delete-char 1)
  586.             (insert " ")))
  587.           (if window
  588.           ;; Using save-window-excursion would cause the new value
  589.           ;; of point to get lost.
  590.           (unwind-protect
  591.               (progn
  592.             (select-window window)
  593.             (rmail-show-message msg-num))
  594.             (select-window owin))
  595.         (if (buffer-name rmail-buffer)
  596.             (save-excursion
  597.               (set-buffer rmail-buffer)
  598.               (rmail-show-message msg-num))))))))))
  599.  
  600. (defvar rmail-summary-mode-map nil)
  601.  
  602. (if rmail-summary-mode-map
  603.     nil
  604.   (setq rmail-summary-mode-map (make-keymap))
  605.   (suppress-keymap rmail-summary-mode-map)
  606.   (define-key rmail-summary-mode-map "a"      'rmail-summary-add-label)
  607.   (define-key rmail-summary-mode-map "c"      'rmail-summary-continue)
  608.   (define-key rmail-summary-mode-map "d"      'rmail-summary-delete-forward)
  609.   (define-key rmail-summary-mode-map "\C-d"   'rmail-summary-delete-backward)
  610.   (define-key rmail-summary-mode-map "e"      'rmail-summary-edit-current-message)
  611.   (define-key rmail-summary-mode-map "f"      'rmail-summary-forward)
  612.   (define-key rmail-summary-mode-map "g"      'rmail-summary-get-new-mail)
  613.   (define-key rmail-summary-mode-map "h"      'rmail-summary)
  614.   (define-key rmail-summary-mode-map "i"      'rmail-summary-input)
  615.   (define-key rmail-summary-mode-map "j"      'rmail-summary-goto-msg)
  616.   (define-key rmail-summary-mode-map "k"      'rmail-summary-kill-label)
  617.   (define-key rmail-summary-mode-map "l"      'rmail-summary-by-labels)
  618.   (define-key rmail-summary-mode-map "\e\C-h" 'rmail-summary)
  619.   (define-key rmail-summary-mode-map "\e\C-l" 'rmail-summary-by-labels)
  620.   (define-key rmail-summary-mode-map "\e\C-r" 'rmail-summary-by-recipients)
  621.   (define-key rmail-summary-mode-map "\e\C-s" 'rmail-summary-by-regexp)
  622.   (define-key rmail-summary-mode-map "\e\C-t" 'rmail-summary-by-topic)
  623.   (define-key rmail-summary-mode-map "m"      'rmail-summary-mail)
  624.   (define-key rmail-summary-mode-map "\M-m"   'rmail-summary-retry-failure)
  625.   (define-key rmail-summary-mode-map "n"      'rmail-summary-next-msg)
  626.   (define-key rmail-summary-mode-map "\en"    'rmail-summary-next-all)
  627.   (define-key rmail-summary-mode-map "\e\C-n" 'rmail-summary-next-labeled-message)
  628.   (define-key rmail-summary-mode-map "o"      'rmail-summary-output-to-rmail-file)
  629.   (define-key rmail-summary-mode-map "\C-o"   'rmail-summary-output)
  630.   (define-key rmail-summary-mode-map "p"      'rmail-summary-previous-msg)
  631.   (define-key rmail-summary-mode-map "\ep"    'rmail-summary-previous-all)
  632.   (define-key rmail-summary-mode-map "\e\C-p" 'rmail-summary-previous-labeled-message)
  633.   (define-key rmail-summary-mode-map "q"      'rmail-summary-quit)
  634.   (define-key rmail-summary-mode-map "r"      'rmail-summary-reply)
  635.   (define-key rmail-summary-mode-map "s"      'rmail-summary-expunge-and-save)
  636.   (define-key rmail-summary-mode-map "\es"    'rmail-summary-search)
  637.   (define-key rmail-summary-mode-map "t"      'rmail-summary-toggle-header)
  638.   (define-key rmail-summary-mode-map "u"      'rmail-summary-undelete)
  639.   (define-key rmail-summary-mode-map "\M-u"   'rmail-summary-undelete-many)
  640.   (define-key rmail-summary-mode-map "w"      'rmail-summary-wipe)
  641.   (define-key rmail-summary-mode-map "x"      'rmail-summary-expunge)
  642.   (define-key rmail-summary-mode-map "."      'rmail-summary-beginning-of-message)
  643.   (define-key rmail-summary-mode-map "<"      'rmail-summary-first-message)
  644.   (define-key rmail-summary-mode-map ">"      'rmail-summary-last-message)
  645.   (define-key rmail-summary-mode-map " "      'rmail-summary-scroll-msg-up)
  646.   (define-key rmail-summary-mode-map "\177"   'rmail-summary-scroll-msg-down)
  647.   (define-key rmail-summary-mode-map "?"      'describe-mode)
  648.   (define-key rmail-summary-mode-map "\C-c\C-s\C-d"
  649.     'rmail-summary-sort-by-date)
  650.   (define-key rmail-summary-mode-map "\C-c\C-s\C-s"
  651.     'rmail-summary-sort-by-subject)
  652.   (define-key rmail-summary-mode-map "\C-c\C-s\C-a"
  653.     'rmail-summary-sort-by-author)
  654.   (define-key rmail-summary-mode-map "\C-c\C-s\C-r"
  655.     'rmail-summary-sort-by-recipient)
  656.   (define-key rmail-summary-mode-map "\C-c\C-s\C-c"
  657.     'rmail-summary-sort-by-correspondent)
  658.   (define-key rmail-summary-mode-map "\C-c\C-s\C-l"
  659.     'rmail-summary-sort-by-lines)
  660.   (define-key rmail-summary-mode-map "\C-c\C-s\C-k"
  661.     'rmail-summary-sort-by-keywords)
  662.   )
  663.  
  664. ;;; Menu bar bindings.
  665.  
  666. (define-key rmail-summary-mode-map [menu-bar] (make-sparse-keymap))
  667.  
  668. (define-key rmail-summary-mode-map [menu-bar classify]
  669.   (cons "Classify" (make-sparse-keymap "Classify")))
  670.  
  671. (define-key rmail-summary-mode-map [menu-bar classify output-menu]
  672.   '("Output (Rmail Menu)..." . rmail-summary-output-menu))
  673.  
  674. (define-key rmail-summary-mode-map [menu-bar classify input-menu]
  675.   '("Input Rmail file (menu)..." . rmail-input-menu))
  676.  
  677. (define-key rmail-summary-mode-map [menu-bar classify output-inbox]
  678.   '("Output (inbox)..." . rmail-summary-output))
  679.  
  680. (define-key rmail-summary-mode-map [menu-bar classify output]
  681.   '("Output (Rmail)..." . rmail-summary-output-to-rmail-file))
  682.  
  683. (define-key rmail-summary-mode-map [menu-bar classify kill-label]
  684.   '("Kill Label..." . rmail-summary-kill-label))
  685.  
  686. (define-key rmail-summary-mode-map [menu-bar classify add-label]
  687.   '("Add Label..." . rmail-summary-add-label))
  688.  
  689. (define-key rmail-summary-mode-map [menu-bar summary]
  690.   (cons "Summary" (make-sparse-keymap "Summary")))
  691.  
  692. (define-key rmail-summary-mode-map [menu-bar summary labels]
  693.   '("By Labels..." . rmail-summary-by-labels))
  694.  
  695. (define-key rmail-summary-mode-map [menu-bar summary recipients]
  696.   '("By Recipients..." . rmail-summary-by-recipients))
  697.  
  698. (define-key rmail-summary-mode-map [menu-bar summary topic]
  699.   '("By Topic..." . rmail-summary-by-topic))
  700.  
  701. (define-key rmail-summary-mode-map [menu-bar summary regexp]
  702.   '("By Regexp..." . rmail-summary-by-regexp))
  703.  
  704. (define-key rmail-summary-mode-map [menu-bar summary all]
  705.   '("All" . rmail-summary))
  706.  
  707. (define-key rmail-summary-mode-map [menu-bar mail]
  708.   (cons "Mail" (make-sparse-keymap "Mail")))
  709.  
  710. (define-key rmail-summary-mode-map [menu-bar mail rmail-summary-get-new-mail]
  711.   '("Get New Mail" . rmail-summary-get-new-mail))
  712.  
  713. (define-key rmail-summary-mode-map [menu-bar mail lambda]
  714.   '("----"))
  715.  
  716. (define-key rmail-summary-mode-map [menu-bar mail continue]
  717.   '("Continue" . rmail-summary-continue))
  718.  
  719. (define-key rmail-summary-mode-map [menu-bar mail resend]
  720.   '("Re-send..." . rmail-resend))
  721.  
  722. (define-key rmail-summary-mode-map [menu-bar mail forward]
  723.   '("Forward" . rmail-summary-forward))
  724.  
  725. (define-key rmail-summary-mode-map [menu-bar mail retry]
  726.   '("Retry" . rmail-summary-retry-failure))
  727.  
  728. (define-key rmail-summary-mode-map [menu-bar mail reply]
  729.   '("Reply" . rmail-summary-reply))
  730.  
  731. (define-key rmail-summary-mode-map [menu-bar mail mail]
  732.   '("Mail" . rmail-summary-mail))
  733.  
  734. (define-key rmail-summary-mode-map [menu-bar delete]
  735.   (cons "Delete" (make-sparse-keymap "Delete")))
  736.  
  737. (define-key rmail-summary-mode-map [menu-bar delete expunge/save]
  738.   '("Expunge/Save" . rmail-summary-expunge-and-save))
  739.  
  740. (define-key rmail-summary-mode-map [menu-bar delete expunge]
  741.   '("Expunge" . rmail-summary-expunge))
  742.  
  743. (define-key rmail-summary-mode-map [menu-bar delete undelete]
  744.   '("Undelete" . rmail-summary-undelete))
  745.  
  746. (define-key rmail-summary-mode-map [menu-bar delete delete]
  747.   '("Delete" . rmail-summary-delete-forward))
  748.  
  749. (define-key rmail-summary-mode-map [menu-bar move]
  750.   (cons "Move" (make-sparse-keymap "Move")))
  751.  
  752. (define-key rmail-summary-mode-map [menu-bar move search-back]
  753.   '("Search Back..." . rmail-summary-search-backward))
  754.  
  755. (define-key rmail-summary-mode-map [menu-bar move search]
  756.   '("Search..." . rmail-summary-search))
  757.  
  758. (define-key rmail-summary-mode-map [menu-bar move previous]
  759.   '("Previous Nondeleted" . rmail-summary-previous-msg))
  760.  
  761. (define-key rmail-summary-mode-map [menu-bar move next]
  762.   '("Next Nondeleted" . rmail-summary-next-msg))
  763.  
  764. (define-key rmail-summary-mode-map [menu-bar move last]
  765.   '("Last" . rmail-summary-last-message))
  766.  
  767. (define-key rmail-summary-mode-map [menu-bar move first]
  768.   '("First" . rmail-summary-first-message))
  769.  
  770. (define-key rmail-summary-mode-map [menu-bar move previous]
  771.   '("Previous" . rmail-summary-previous-all))
  772.  
  773. (define-key rmail-summary-mode-map [menu-bar move next]
  774.   '("Next" . rmail-summary-next-all))
  775.  
  776. (defvar rmail-summary-overlay nil)
  777.  
  778. (defun rmail-summary-goto-msg (&optional n nowarn skip-rmail)
  779.   (interactive "P")
  780.   (if (consp n) (setq n (prefix-numeric-value n)))
  781.   (if (eobp) (forward-line -1))
  782.   (beginning-of-line)
  783.   (let ((obuf (current-buffer))
  784.     (buf rmail-buffer)
  785.     (cur (point))
  786.     message-not-found
  787.     (curmsg (string-to-int
  788.          (buffer-substring (point)
  789.                    (min (point-max) (+ 5 (point)))))))
  790.     ;; If message number N was specified, find that message's line
  791.     ;; or set message-not-found.
  792.     ;; If N wasn't specified or that message can't be found.
  793.     ;; set N by default.
  794.     (if (not n)
  795.     (setq n curmsg)
  796.       (if (< n 1)
  797.       (progn (message "No preceding message")
  798.          (setq n 1)))
  799.       (if (> n rmail-total-messages)
  800.       (progn (message "No following message")
  801.          (goto-char (point-max))
  802.          (rmail-summary-goto-msg)))
  803.       (goto-char (point-min))
  804.       (if (not (re-search-forward (concat "^ *" (int-to-string n)) nil t))
  805.       (progn (or nowarn (message "Message %d not found" n))
  806.          (setq n curmsg)
  807.          (setq message-not-found t)
  808.          (goto-char cur))))
  809.     (beginning-of-line)
  810.     (skip-chars-forward " ")
  811.     (skip-chars-forward "0-9")
  812.     (save-excursion (if (= (following-char) ?-)
  813.             (let ((buffer-read-only nil))
  814.               (delete-char 1)
  815.               (insert " "))))
  816.     ;; Make sure we have an overlay to use.
  817.     (or rmail-summary-overlay
  818.     (progn
  819.       (make-local-variable 'rmail-summary-overlay)
  820.       (setq rmail-summary-overlay (make-overlay (point) (point)))))
  821.     ;; If this message is in the summary, use the overlay to highlight it.
  822.     ;; Otherwise, don't highlight anything.
  823.     (if message-not-found
  824.     (overlay-put rmail-summary-overlay 'face nil)
  825.       (move-overlay rmail-summary-overlay
  826.             (save-excursion (beginning-of-line) (1+ (point)))
  827.             (save-excursion (end-of-line) (point)))
  828.       (overlay-put rmail-summary-overlay 'face 'highlight))
  829.     (beginning-of-line)
  830.     (if skip-rmail
  831.     nil
  832.       (let ((selwin (selected-window)))
  833.     (unwind-protect
  834.         (progn (pop-to-buffer buf)
  835.            (rmail-show-message n))
  836.       (select-window selwin)
  837.       ;; The actions above can alter the current buffer.  Preserve it.
  838.       (set-buffer obuf))))))
  839.  
  840. (defun rmail-summary-scroll-msg-up (&optional dist)
  841.   "Scroll the Rmail window forward."
  842.   (interactive "P")
  843.   (let ((other-window-scroll-buffer rmail-buffer))
  844.     (if (get-buffer-window rmail-buffer)
  845.     (scroll-other-window dist)
  846.       ;; This forces rmail-buffer to be sized correctly later.
  847.       (display-buffer rmail-buffer)
  848.       (setq rmail-current-message nil))))
  849.  
  850. (defun rmail-summary-scroll-msg-down (&optional dist)
  851.   "Scroll the Rmail window backward."
  852.   (interactive "P")
  853.   (rmail-summary-scroll-msg-up
  854.    (cond ((eq dist '-) nil)
  855.      ((null dist) '-)
  856.      (t (- (prefix-numeric-value dist))))))
  857.  
  858. (defun rmail-summary-beginning-of-message ()
  859.   "Show current message from the beginning."
  860.   (interactive)
  861.   (pop-to-buffer rmail-buffer)
  862.   (beginning-of-buffer)
  863.   (pop-to-buffer rmail-summary-buffer))
  864.  
  865. (defun rmail-summary-quit ()
  866.   "Quit out of Rmail and Rmail summary."
  867.   (interactive)
  868.   (rmail-summary-wipe)
  869.   (rmail-quit))
  870.  
  871. (defun rmail-summary-wipe ()
  872.   "Kill and wipe away Rmail summary, remaining within Rmail."
  873.   (interactive)
  874.   (save-excursion (set-buffer rmail-buffer) (setq rmail-summary-buffer nil))
  875.   (let ((local-rmail-buffer rmail-buffer))
  876.     (kill-buffer (current-buffer))
  877.     ;; Delete window if not only one.
  878.     (if (not (eq (selected-window) (next-window nil 'no-minibuf)))
  879.     (delete-window))
  880.     ;; Switch windows to the rmail buffer, or switch to it in this window.
  881.     (pop-to-buffer local-rmail-buffer)))
  882.  
  883. (defun rmail-summary-expunge ()
  884.   "Actually erase all deleted messages and recompute summary headers."
  885.   (interactive)
  886.   (save-excursion
  887.     (set-buffer rmail-buffer)
  888.     (rmail-only-expunge))
  889.   (rmail-update-summary))
  890.  
  891. (defun rmail-summary-expunge-and-save ()
  892.   "Expunge and save RMAIL file."
  893.   (interactive)
  894.   (save-excursion
  895.     (set-buffer rmail-buffer)
  896.     (rmail-only-expunge))
  897.   (rmail-update-summary)
  898.   (save-excursion
  899.     (set-buffer rmail-buffer)
  900.     (save-buffer))
  901.   (set-buffer-modified-p nil))
  902.  
  903. (defun rmail-summary-get-new-mail ()
  904.   "Get new mail and recompute summary headers."
  905.   (interactive)
  906.   (let (msg)
  907.     (save-excursion
  908.       (set-buffer rmail-buffer)
  909.       (rmail-get-new-mail)
  910.       ;; Get the proper new message number.
  911.       (setq msg rmail-current-message))
  912.     ;; Make sure that message is displayed.
  913.     (rmail-summary-goto-msg msg)))
  914.  
  915. (defun rmail-summary-input (filename)
  916.   "Run Rmail on file FILENAME."
  917.   (interactive "FRun rmail on RMAIL file: ")
  918.   ;; We switch windows here, then display the other Rmail file there.
  919.   (pop-to-buffer rmail-buffer)
  920.   (rmail filename))
  921.  
  922. (defun rmail-summary-first-message ()
  923.   "Show first message in Rmail file from summary buffer."
  924.   (interactive)
  925.   (beginning-of-buffer))
  926.  
  927. (defun rmail-summary-last-message ()
  928.   "Show last message in Rmail file from summary buffer."
  929.   (interactive)
  930.   (end-of-buffer)
  931.   (forward-line -1))
  932.  
  933. (defvar rmail-summary-edit-map nil)
  934. (if rmail-summary-edit-map
  935.     nil
  936.   (setq rmail-summary-edit-map
  937.     (nconc (make-sparse-keymap) text-mode-map))
  938.   (define-key rmail-summary-edit-map "\C-c\C-c" 'rmail-cease-edit)
  939.   (define-key rmail-summary-edit-map "\C-c\C-]" 'rmail-abort-edit))
  940.  
  941. (defun rmail-summary-edit-current-message ()
  942.   "Edit the contents of this message."
  943.   (interactive)
  944.   (pop-to-buffer rmail-buffer)
  945.   (rmail-edit-current-message)
  946.   (use-local-map rmail-summary-edit-map))
  947.  
  948. (defun rmail-summary-cease-edit ()
  949.   "Finish editing message, then go back to Rmail summary buffer."
  950.   (interactive)
  951.   (rmail-cease-edit)
  952.   (pop-to-buffer rmail-summary-buffer))
  953.  
  954. (defun rmail-summary-abort-edit ()
  955.   "Abort edit of current message; restore original contents.
  956. Go back to summary buffer."
  957.   (interactive)
  958.   (rmail-abort-edit)
  959.   (pop-to-buffer rmail-summary-buffer))
  960.  
  961. (defun rmail-summary-search-backward (regexp &optional n)
  962.   "Show message containing next match for REGEXP.
  963. Prefix argument gives repeat count; negative argument means search
  964. backwards (through earlier messages).
  965. Interactively, empty argument means use same regexp used last time."
  966.   (interactive
  967.     (let* ((reversep (>= (prefix-numeric-value current-prefix-arg) 0))
  968.        (prompt
  969.         (concat (if reversep "Reverse " "") "Rmail search (regexp): "))
  970.        regexp)
  971.       (if rmail-search-last-regexp
  972.       (setq prompt (concat prompt
  973.                    "(default "
  974.                    rmail-search-last-regexp
  975.                    ") ")))
  976.       (setq regexp (read-string prompt))
  977.       (cond ((not (equal regexp ""))
  978.          (setq rmail-search-last-regexp regexp))
  979.         ((not rmail-search-last-regexp)
  980.          (error "No previous Rmail search string")))
  981.       (list rmail-search-last-regexp
  982.         (prefix-numeric-value current-prefix-arg))))
  983.   ;; Don't use save-excursion because that prevents point from moving
  984.   ;; properly in the summary buffer.
  985.   (let ((buffer (current-buffer)))
  986.     (unwind-protect
  987.     (progn
  988.       (set-buffer rmail-buffer)
  989.       (rmail-search regexp (- n)))
  990.       (set-buffer buffer))))
  991.  
  992. (defun rmail-summary-search (regexp &optional n)
  993.   "Show message containing next match for REGEXP.
  994. Prefix argument gives repeat count; negative argument means search
  995. backwards (through earlier messages).
  996. Interactively, empty argument means use same regexp used last time."
  997.   (interactive
  998.     (let* ((reversep (< (prefix-numeric-value current-prefix-arg) 0))
  999.        (prompt
  1000.         (concat (if reversep "Reverse " "") "Rmail search (regexp): "))
  1001.        regexp)
  1002.       (if rmail-search-last-regexp
  1003.       (setq prompt (concat prompt
  1004.                    "(default "
  1005.                    rmail-search-last-regexp
  1006.                    ") ")))
  1007.       (setq regexp (read-string prompt))
  1008.       (cond ((not (equal regexp ""))
  1009.          (setq rmail-search-last-regexp regexp))
  1010.         ((not rmail-search-last-regexp)
  1011.          (error "No previous Rmail search string")))
  1012.       (list rmail-search-last-regexp
  1013.         (prefix-numeric-value current-prefix-arg))))
  1014.   ;; Don't use save-excursion because that prevents point from moving
  1015.   ;; properly in the summary buffer.
  1016.   (let ((buffer (current-buffer)))
  1017.     (unwind-protect
  1018.     (progn
  1019.       (set-buffer rmail-buffer)
  1020.       (rmail-search regexp n))
  1021.       (set-buffer buffer))))
  1022.  
  1023. (defun rmail-summary-toggle-header ()
  1024.   "Show original message header if pruned header currently shown, or vice versa."
  1025.   (interactive)
  1026.   (save-excursion
  1027.     (set-buffer rmail-buffer)
  1028.     (rmail-toggle-header)))
  1029.  
  1030. (defun rmail-summary-add-label (label)
  1031.   "Add LABEL to labels associated with current Rmail message.
  1032. Completion is performed over known labels when reading."
  1033.   (interactive (list (save-excursion
  1034.                (set-buffer rmail-buffer)
  1035.                (rmail-read-label "Add label"))))
  1036.   (save-excursion
  1037.     (set-buffer rmail-buffer)
  1038.     (rmail-add-label label)))
  1039.  
  1040. (defun rmail-summary-kill-label (label)
  1041.   "Remove LABEL from labels associated with current Rmail message.
  1042. Completion is performed over known labels when reading."
  1043.   (interactive (list (save-excursion
  1044.                (set-buffer rmail-buffer)
  1045.                (rmail-read-label "Kill label"))))
  1046.   (save-excursion
  1047.     (set-buffer rmail-buffer)
  1048.     (rmail-set-label label nil)))
  1049.  
  1050. ;;;; *** Rmail Summary Mailing Commands ***
  1051.  
  1052. (defun rmail-summary-mail ()
  1053.   "Send mail in another window.
  1054. While composing the message, use \\[mail-yank-original] to yank the
  1055. original message into it."
  1056.   (interactive)
  1057.   (rmail-start-mail nil nil nil nil nil rmail-buffer)
  1058.   (use-local-map (copy-keymap (current-local-map)))
  1059.   (define-key (current-local-map)
  1060.     "\C-c\C-c" 'rmail-summary-send-and-exit))
  1061.  
  1062. (defun rmail-summary-continue ()
  1063.   "Continue composing outgoing message previously being composed."
  1064.   (interactive)
  1065.   (rmail-start-mail t))
  1066.  
  1067. (defun rmail-summary-reply (just-sender)
  1068.   "Reply to the current message.
  1069. Normally include CC: to all other recipients of original message;
  1070. prefix argument means ignore them.  While composing the reply,
  1071. use \\[mail-yank-original] to yank the original message into it."
  1072.   (interactive "P")
  1073.   (set-buffer rmail-buffer)
  1074.   (rmail-reply just-sender)
  1075.   (use-local-map (copy-keymap (current-local-map)))
  1076.   (define-key (current-local-map)
  1077.     "\C-c\C-c" 'rmail-summary-send-and-exit))
  1078.  
  1079. (defun rmail-summary-retry-failure ()
  1080.   "Edit a mail message which is based on the contents of the current message.
  1081. For a message rejected by the mail system, extract the interesting headers and
  1082. the body of the original message; otherwise copy the current message."
  1083.   (interactive)
  1084.   (set-buffer rmail-buffer)
  1085.   (rmail-retry-failure)
  1086.   (use-local-map (copy-keymap (current-local-map)))
  1087.   (define-key (current-local-map)
  1088.     "\C-c\C-c" 'rmail-summary-send-and-exit))
  1089.  
  1090. (defun rmail-summary-send-and-exit ()
  1091.   "Send mail reply and return to summary buffer."
  1092.   (interactive)
  1093.   (mail-send-and-exit t))
  1094.  
  1095. (defun rmail-summary-forward (resend)
  1096.   "Forward the current message to another user.
  1097. With prefix argument, \"resend\" the message instead of forwarding it;
  1098. see the documentation of `rmail-resend'."
  1099.   (interactive "P")
  1100.   (save-excursion
  1101.     (set-buffer rmail-buffer)
  1102.     (rmail-forward resend)
  1103.     (use-local-map (copy-keymap (current-local-map)))
  1104.     (define-key (current-local-map)
  1105.       "\C-c\C-c" 'rmail-summary-send-and-exit)))
  1106.  
  1107. ;; Summary output commands.
  1108.  
  1109. (defun rmail-summary-output-to-rmail-file ()
  1110.   "Append the current message to an Rmail file named FILE-NAME.
  1111. If the file does not exist, ask if it should be created.
  1112. If file is being visited, the message is appended to the Emacs
  1113. buffer visiting that file."
  1114.   (interactive)
  1115.   (save-excursion
  1116.     (set-buffer rmail-buffer)
  1117.     (let ((rmail-delete-after-output nil))
  1118.       (call-interactively 'rmail-output-to-rmail-file)))
  1119.   (if rmail-delete-after-output
  1120.       (rmail-summary-delete-forward nil)))
  1121.  
  1122. (defun rmail-summary-output-menu ()
  1123.   "Output current message to another Rmail file, chosen with a menu.
  1124. Also set the default for subsequent \\[rmail-output-to-rmail-file] commands.
  1125. The variables `rmail-secondary-file-directory' and
  1126. `rmail-secondary-file-regexp' control which files are offered in the menu."
  1127.   (interactive)
  1128.   (save-excursion
  1129.     (set-buffer rmail-buffer)
  1130.     (let ((rmail-delete-after-output nil))
  1131.       (call-interactively 'rmail-output-menu)))
  1132.   (if rmail-delete-after-output
  1133.       (rmail-summary-delete-forward nil)))
  1134.  
  1135. (defun rmail-summary-output ()
  1136.   "Append this message to Unix mail file named FILE-NAME."
  1137.   (interactive)
  1138.   (save-excursion
  1139.     (set-buffer rmail-buffer)
  1140.     (let ((rmail-delete-after-output nil))
  1141.       (call-interactively 'rmail-output)))
  1142.   (if rmail-delete-after-output
  1143.       (rmail-summary-delete-forward nil)))
  1144.  
  1145. ;; Sorting messages in Rmail Summary buffer.
  1146.  
  1147. (defun rmail-summary-sort-by-date (reverse)
  1148.   "Sort messages of current Rmail summary by date.
  1149. If prefix argument REVERSE is non-nil, sort them in reverse order."
  1150.   (interactive "P")
  1151.   (rmail-sort-from-summary (function rmail-sort-by-date) reverse))
  1152.  
  1153. (defun rmail-summary-sort-by-subject (reverse)
  1154.   "Sort messages of current Rmail summary by subject.
  1155. If prefix argument REVERSE is non-nil, sort them in reverse order."
  1156.   (interactive "P")
  1157.   (rmail-sort-from-summary (function rmail-sort-by-subject) reverse))
  1158.  
  1159. (defun rmail-summary-sort-by-author (reverse)
  1160.   "Sort messages of current Rmail summary by author.
  1161. If prefix argument REVERSE is non-nil, sort them in reverse order."
  1162.   (interactive "P")
  1163.   (rmail-sort-from-summary (function rmail-sort-by-author) reverse))
  1164.  
  1165. (defun rmail-summary-sort-by-recipient (reverse)
  1166.   "Sort messages of current Rmail summary by recipient.
  1167. If prefix argument REVERSE is non-nil, sort them in reverse order."
  1168.   (interactive "P")
  1169.   (rmail-sort-from-summary (function rmail-sort-by-recipient) reverse))
  1170.  
  1171. (defun rmail-summary-sort-by-correspondent (reverse)
  1172.   "Sort messages of current Rmail summary by other correspondent.
  1173. If prefix argument REVERSE is non-nil, sort them in reverse order."
  1174.   (interactive "P")
  1175.   (rmail-sort-from-summary (function rmail-sort-by-correspondent) reverse))
  1176.  
  1177. (defun rmail-summary-sort-by-lines (reverse)
  1178.   "Sort messages of current Rmail summary by lines of the message.
  1179. If prefix argument REVERSE is non-nil, sort them in reverse order."
  1180.   (interactive "P")
  1181.   (rmail-sort-from-summary (function rmail-sort-by-lines) reverse))
  1182.  
  1183. (defun rmail-summary-sort-by-keywords (reverse labels)
  1184.   "Sort messages of current Rmail summary by keywords.
  1185. If prefix argument REVERSE is non-nil, sort them in reverse order.
  1186. KEYWORDS is a comma-separated list of labels."
  1187.   (interactive "P\nsSort by labels: ")
  1188.   (rmail-sort-from-summary
  1189.    (function (lambda (reverse)
  1190.            (rmail-sort-by-keywords reverse labels)))
  1191.    reverse))
  1192.  
  1193. (defun rmail-sort-from-summary (sortfun reverse)
  1194.   "Sort Rmail messages from Summary buffer and update it after sorting."
  1195.   (require 'rmailsort)
  1196.   (let ((selwin (selected-window)))
  1197.     (unwind-protect
  1198.     (progn (pop-to-buffer rmail-buffer)
  1199.            (funcall sortfun reverse))
  1200.       (select-window selwin))))
  1201.  
  1202. ;;; rmailsum.el ends here
  1203.