annotate lisp/mail/rmail.el @ 88256:db2e6586ecf5

(rmail-msgbeg, rmail-msgend): Fix and make obsolete. (rmail-process-new-messages): Use mail-decode-encoded-word-string on the subject. Requires mail-parse from Gnus. (rmail-highlight-headers): Doc.
author Alex Schroeder <alex@gnu.org>
date Sat, 21 Jan 2006 15:00:38 +0000
parents 86d5137811c7
children a1b10ae1884b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
38412
253f761ad37b Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents: 38352
diff changeset
1 ;;; rmail.el --- main code of "RMAIL" mail reader for Emacs
658
7cbd4fcd8b0f *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 621
diff changeset
2
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3 ;; Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995, 1996, 1997, 1998,
88212
d78deb813644 Updated copyright year.
Alex Schroeder <alex@gnu.org>
parents: 88211
diff changeset
4 ;; 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
846
20674ae6bf52 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 830
diff changeset
5
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 658
diff changeset
6 ;; Maintainer: FSF
814
38b2499cb3e9 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 813
diff changeset
7 ;; Keywords: mail
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 658
diff changeset
8
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
9 ;; This file is part of GNU Emacs.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
10
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
12 ;; it under the terms of the GNU General Public License as published by
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 658
diff changeset
13 ;; the Free Software Foundation; either version 2, or (at your option)
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
14 ;; any later version.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
15
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
16 ;; GNU Emacs is distributed in the hope that it will be useful,
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
19 ;; GNU General Public License for more details.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
20
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
21 ;; You should have received a copy of the GNU General Public License
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 14033
diff changeset
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
24 ;; Boston, MA 02110-1301, USA.
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
25
38412
253f761ad37b Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents: 38352
diff changeset
26 ;;; Commentary:
253f761ad37b Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents: 38352
diff changeset
27
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 658
diff changeset
28 ;;; Code:
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
29
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
30 ;; Souped up by shane@mit-ajax based on ideas of rlk@athena.mit.edu
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
31 ;; New features include attribute and keyword support, message
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
32 ;; selection by dispatch table, summary by attributes and keywords,
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
33 ;; expunging by dispatch table, sticky options for file commands.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
34
2076
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
35 ;; Extended by Bob Weiner of Motorola
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
36 ;; New features include: rmail and rmail-summary buffers remain
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
37 ;; synchronized and key bindings basically operate the same way in both
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
38 ;; buffers, summary by topic or by regular expression, rmail-reply-prefix
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
39 ;; variable, and a bury rmail buffer (wipe) command.
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
40 ;;
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
41
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
42 (eval-when-compile
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
43 (require 'font-lock)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
44 (require 'mailabbrev)
88160
a271a865e911 *** empty log message ***
Henrik Enberg <henrik.enberg@telia.com>
parents: 88158
diff changeset
45 (require 'mule-util)) ; for detect-coding-with-priority
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
46
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
47 (eval-and-compile
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
48 (require 'rmaildesc)
88192
f2fae8754f34 (rmail-process-new-messages): Don't require rmailkwd
Henrik Enberg <henrik.enberg@telia.com>
parents: 88190
diff changeset
49 (require 'rmailhdr)
f2fae8754f34 (rmail-process-new-messages): Don't require rmailkwd
Henrik Enberg <henrik.enberg@telia.com>
parents: 88190
diff changeset
50 (require 'rmailkwd))
2076
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
51
88256
db2e6586ecf5 (rmail-msgbeg, rmail-msgend): Fix and make obsolete.
Alex Schroeder <alex@gnu.org>
parents: 88253
diff changeset
52 (require 'mail-parse)
db2e6586ecf5 (rmail-msgbeg, rmail-msgend): Fix and make obsolete.
Alex Schroeder <alex@gnu.org>
parents: 88253
diff changeset
53
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
54 (defvar deleted-head)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
55 (defvar font-lock-fontified)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
56 (defvar mail-abbrev-syntax-table)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
57 (defvar mail-abbrevs)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
58 (defvar messages-head)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
59 (defvar rmail-use-spam-filter)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
60 (defvar rsf-beep)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
61 (defvar rsf-sleep-after-message)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
62 (defvar total-messages)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
63
2076
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
64 ; These variables now declared in paths.el.
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
65 ;(defvar rmail-spool-directory "/usr/spool/mail/"
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
66 ; "This is the name of the directory used by the system mailer for\n\
16431
65d3768ccb05 (rmail): Run rmail-mail-hook last.
Richard M. Stallman <rms@gnu.org>
parents: 16349
diff changeset
67 ;delivering new mail. Its name should end with a slash.")
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
68 ;(defvar rmail-file-name
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
69 ; (expand-file-name "~/RMAIL")
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
70 ; "")
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
71
17630
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
72 (defgroup rmail nil
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
73 "Mail reader for Emacs."
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
74 :group 'mail)
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
75
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
76 (defgroup rmail-retrieve nil
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
77 "Rmail retrieval options."
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
78 :prefix "rmail-"
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
79 :group 'rmail)
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
80
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
81 (defgroup rmail-files nil
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
82 "Rmail files."
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
83 :prefix "rmail-"
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
84 :group 'rmail)
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
85
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
86 (defgroup rmail-headers nil
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
87 "Rmail header options."
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
88 :prefix "rmail-"
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
89 :group 'rmail)
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
90
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
91 (defgroup rmail-reply nil
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
92 "Rmail reply options."
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
93 :prefix "rmail-"
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
94 :group 'rmail)
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
95
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
96 (defgroup rmail-summary nil
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
97 "Rmail summary options."
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
98 :prefix "rmail-"
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
99 :prefix "rmail-summary-"
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
100 :group 'rmail)
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
101
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
102 (defgroup rmail-output nil
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
103 "Output message to a file."
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
104 :prefix "rmail-output-"
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
105 :prefix "rmail-"
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
106 :group 'rmail)
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
107
37587
d9239fc54bce (rmail-edit): New Custom group.
Gerd Moellmann <gerd@gnu.org>
parents: 37517
diff changeset
108 (defgroup rmail-edit nil
d9239fc54bce (rmail-edit): New Custom group.
Gerd Moellmann <gerd@gnu.org>
parents: 37517
diff changeset
109 "Rmail editing."
d9239fc54bce (rmail-edit): New Custom group.
Gerd Moellmann <gerd@gnu.org>
parents: 37517
diff changeset
110 :prefix "rmail-edit-"
d9239fc54bce (rmail-edit): New Custom group.
Gerd Moellmann <gerd@gnu.org>
parents: 37517
diff changeset
111 :group 'rmail)
d9239fc54bce (rmail-edit): New Custom group.
Gerd Moellmann <gerd@gnu.org>
parents: 37517
diff changeset
112
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
113 (defgroup rmail-obsolete nil
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
114 "Rmail obsolete customization variables."
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
115 :group 'rmail)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
116
21435
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
117 (defcustom rmail-movemail-program nil
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
118 "If non-nil, the file name of the `movemail' program."
21435
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
119 :group 'rmail-retrieve
23266
ccedad9251db (rmail-movemail-program): Fix customize type.
Andreas Schwab <schwab@suse.de>
parents: 23185
diff changeset
120 :type '(choice (const nil) string))
8234
8eea81545089 (rmail-movemail-program): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8230
diff changeset
121
17630
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
122 (defcustom rmail-pop-password nil
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
123 "*Password to use when reading mail from POP server.
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
124 Please use `rmail-remote-password' instead."
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
125 :type '(choice (string :tag "Password")
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
126 (const :tag "Not Required" nil))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
127 :group 'rmail-obsolete)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
128
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
129 (defcustom rmail-pop-password-required nil
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
130 "*Non-nil if a password is required when reading mail from a POP server.
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
131 Please use rmail-remote-password-required instead."
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
132 :type 'boolean
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
133 :group 'rmail-obsolete)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
134
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
135 (defcustom rmail-remote-password nil
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
136 "*Password to use when reading mail from a remote server.
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
137 This setting is ignored for mailboxes whose URL already contains a password."
17630
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
138 :type '(choice (string :tag "Password")
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
139 (const :tag "Not Required" nil))
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
140 :set-after '(rmail-pop-password)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
141 :set #'(lambda (symbol value)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
142 (set-default symbol
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
143 (if (and (not value)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
144 (boundp 'rmail-pop-password)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
145 rmail-pop-password)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
146 rmail-pop-password
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
147 value))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
148 (setq rmail-pop-password nil))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
149 :group 'rmail-retrieve
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
150 :version "22.1")
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
151
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
152 (defcustom rmail-remote-password-required nil
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
153 "*Non-nil if a password is required when reading mail from a remote server."
17630
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
154 :type 'boolean
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
155 :set-after '(rmail-pop-password-required)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
156 :set #'(lambda (symbol value)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
157 (set-default symbol
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
158 (if (and (not value)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
159 (boundp 'rmail-pop-password-required)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
160 rmail-pop-password-required)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
161 rmail-pop-password-required
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
162 value))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
163 (setq rmail-pop-password-required nil))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
164 :group 'rmail-retrieve
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
165 :version "22.1")
15085
7048437bc690 (rmail-insert-inbox-text): When required, prompt for
Richard M. Stallman <rms@gnu.org>
parents: 14916
diff changeset
166
21395
57c8bfa789b6 (rmail-movemail-flags): New customizable variable
Karl Heuer <kwzh@gnu.org>
parents: 21347
diff changeset
167 (defcustom rmail-movemail-flags nil
21398
625ff8638146 Fix previous change.
Karl Heuer <kwzh@gnu.org>
parents: 21395
diff changeset
168 "*List of flags to pass to movemail.
625ff8638146 Fix previous change.
Karl Heuer <kwzh@gnu.org>
parents: 21395
diff changeset
169 Most commonly used to specify `-g' to enable GSS-API authentication
625ff8638146 Fix previous change.
Karl Heuer <kwzh@gnu.org>
parents: 21395
diff changeset
170 or `-k' to enable Kerberos authentication."
21512
cd1971673dfd (rmail-movemail-flags): Fix customize type.
Andreas Schwab <schwab@suse.de>
parents: 21435
diff changeset
171 :type '(repeat string)
21669
9861518505cb *** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents: 21640
diff changeset
172 :group 'rmail-retrieve
9861518505cb *** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents: 21640
diff changeset
173 :version "20.3")
21395
57c8bfa789b6 (rmail-movemail-flags): New customizable variable
Karl Heuer <kwzh@gnu.org>
parents: 21347
diff changeset
174
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
175 (defvar rmail-remote-password-error "invalid usercode or password\\|
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
176 unknown user name or bad password\\|Authentication failed\\|MU_ERR_AUTH_FAILURE"
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
177 "Regular expression matching incorrect-password POP or IMAP server error
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
178 messages.
18989
6253a99afd95 (rmail-pop-password-error): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 18957
diff changeset
179 If you get an incorrect-password error that this expression does not match,
6253a99afd95 (rmail-pop-password-error): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 18957
diff changeset
180 please report it with \\[report-emacs-bug].")
6253a99afd95 (rmail-pop-password-error): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 18957
diff changeset
181
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
182 (defvar rmail-encoded-remote-password nil)
22912
0f372fdeee3d (rmail-encoded-pop-password): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22840
diff changeset
183
17630
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
184 (defcustom rmail-preserve-inbox nil
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
185 "*Non-nil means leave incoming mail in the user's inbox--don't delete it."
17630
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
186 :type 'boolean
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
187 :group 'rmail-retrieve)
16908
fd99785417a5 (rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16772
diff changeset
188
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
189 (defcustom rmail-movemail-search-path nil
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
190 "*List of directories to search for movemail (in addition to `exec-path')."
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
191 :group 'rmail-retrieve
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
192 :type '(repeat (directory)))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
193
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
194 (defun rmail-probe (prog)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
195 "Determine what flavor of movemail PROG is.
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
196 We do this by executing it with `--version' and analyzing its output."
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
197 (with-temp-buffer
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
198 (let ((tbuf (current-buffer)))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
199 (buffer-disable-undo tbuf)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
200 (call-process prog nil tbuf nil "--version")
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
201 (if (not (buffer-modified-p tbuf))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
202 ;; Should not happen...
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
203 nil
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
204 (goto-char (point-min))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
205 (cond
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
206 ((looking-at ".*movemail: invalid option")
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
207 'emacs) ;; Possibly...
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
208 ((looking-at "movemail (GNU Mailutils .*)")
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
209 'mailutils)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
210 (t
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
211 ;; FIXME:
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
212 'emacs))))))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
213
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
214 (defun rmail-autodetect ()
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
215 "Determine and return the file name of the `movemail' program.
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
216 If `rmail-movemail-program' is non-nil, use it.
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
217 Otherwise, look for `movemail' in the directories in
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
218 `rmail-movemail-search-path', those in `exec-path', and `exec-directory'."
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
219 (if rmail-movemail-program
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
220 (rmail-probe rmail-movemail-program)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
221 (catch 'scan
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
222 (dolist (dir (append rmail-movemail-search-path exec-path
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
223 (list exec-directory)))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
224 (when (and dir (file-accessible-directory-p dir))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
225 (let ((progname (expand-file-name "movemail" dir)))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
226 (when (and (not (file-directory-p progname))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
227 (file-executable-p progname))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
228 (let ((x (rmail-probe progname)))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
229 (when x
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
230 (setq rmail-movemail-program progname)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
231 (throw 'scan x))))))))))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
232
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
233 (defvar rmail-movemail-variant-in-use nil
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
234 "The movemail variant currently in use. Known variants are:
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
235
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
236 `emacs' Means any implementation, compatible with the native Emacs one.
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
237 This is the default;
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
238 `mailutils' Means GNU mailutils implementation, capable of handling full
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
239 mail URLs as the source mailbox;")
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
240
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
241 ;;;###autoload
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
242 (defun rmail-movemail-variant-p (&rest variants)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
243 "Return t if the current movemail variant is any of VARIANTS.
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
244 Currently known variants are 'emacs and 'mailutils."
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
245 (when (not rmail-movemail-variant-in-use)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
246 ;; Autodetect
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
247 (setq rmail-movemail-variant-in-use (rmail-autodetect)))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
248 (not (null (member rmail-movemail-variant-in-use variants))))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
249
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
250 ;;;###autoload
17630
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
251 (defcustom rmail-dont-reply-to-names nil "\
44025
5766d225ccf3 (rmail-dont-reply-to-names): Modify the documentation to make it email
Paul Reilly <pmr@pajato.com>
parents: 43124
diff changeset
252 *A regexp specifying addresses to prune from a reply message.
5766d225ccf3 (rmail-dont-reply-to-names): Modify the documentation to make it email
Paul Reilly <pmr@pajato.com>
parents: 43124
diff changeset
253 A value of nil means exclude your own email address as an address
22840
be572a467b59 (rmail-dont-reply-to-names): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 22838
diff changeset
254 plus whatever is specified by `rmail-default-dont-reply-to-names'."
17630
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
255 :type '(choice regexp (const :tag "Your Name" nil))
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
256 :group 'rmail-reply)
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
257
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
258 ;;;###autoload
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
259 (defvar rmail-default-dont-reply-to-names "\\`info-" "\
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
260 A regular expression specifying part of the default value of the
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
261 variable `rmail-dont-reply-to-names', for when the user does not set
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
262 `rmail-dont-reply-to-names' explicitly. (The other part of the default
44025
5766d225ccf3 (rmail-dont-reply-to-names): Modify the documentation to make it email
Paul Reilly <pmr@pajato.com>
parents: 43124
diff changeset
263 value is the user's email address and name.)
3931
565b67d1a9f9 Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 3877
diff changeset
264 It is useful to set this variable in the site customization file.")
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
265
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
266 ;;;###autoload
35675
45df875afd43 (rmail-ignored-headers): Add X-Sign, X-BeenThere,
Gerd Moellmann <gerd@gnu.org>
parents: 35548
diff changeset
267 (defcustom rmail-ignored-headers
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
268 (concat "^via:\\|^mail-from:\\|^origin:\\|^references:\\|^sender:"
88163
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
269 "\\|^status:\\|^received:\\|^content-transfer-encoding:"
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
270 "\\|^x400-\\(received\\|mts-identifier\\|content-type\\|originator\\|recipients\\):"
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
271 "\\|^list-\\(help\\|post\\|subscribe\\|id\\|unsubscribe\\|archive\\):"
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
272 "\\|^resent-\\(face\\|x.*\\|organization\\|openpgp\\|date\\|message-id\\):"
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
273 "\\|^thread-\\(topic\\|index\\)"
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
274 "\\|^summary-line:\\|^precedence:"
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
275 "\\|^path:\\|^face:\\|^delivered-to:\\|^lines:"
35675
45df875afd43 (rmail-ignored-headers): Add X-Sign, X-BeenThere,
Gerd Moellmann <gerd@gnu.org>
parents: 35548
diff changeset
276 "\\|^return-path:\\|^errors-to:\\|^return-receipt-to:"
88163
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
277 "\\|^content-\\(length\\|type\\|class\\|disposition\\):"
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
278 "\\|^nntp-posting-\\(host\\|date\\):\\|^user-agent"
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
279 "\\|^importance:\\|^envelope-to:\\|^delivery-date\\|^openpgp:"
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
280 "\\|^mbox-line:\\|^cancel-lock:\\|^in-reply-to:\\|^comment:"
88179
43ed67124917 (rmail-process-new-messages): Require rmailkwd.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88176
diff changeset
281 "\\|^x-.*:\\|^domainkey-signature:\\|^mime-version:"
43ed67124917 (rmail-process-new-messages): Require rmailkwd.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88176
diff changeset
282 "\\|^original-recipient:\\|^from ")
24562
9bd33c9d9a4e (rmail-ignored-headers): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 24521
diff changeset
283 "*Regexp to match header fields that Rmail should normally hide.
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
284 \(See also `rmail-nonignored-headers', which overrides this regexp.)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
285 This variable is used for reformatting the message header,
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
286 which normally happens once for each message,
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
287 when you view the message for the first time in Rmail.
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
288 To make a change in this variable take effect
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
289 for a message that you have already viewed,
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
290 go to that message and type \\[rmail-toggle-header] twice."
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
291 :type 'regexp
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
292 :group 'rmail-headers)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
293
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
294 (defcustom rmail-nonignored-headers "^x-spam-status:"
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
295 "*Regexp to match X header fields that Rmail should show.
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
296 This regexp overrides `rmail-ignored-headers'; if both this regexp
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
297 and that one match a certain header field, Rmail shows the field.
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
298
24562
9bd33c9d9a4e (rmail-ignored-headers): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 24521
diff changeset
299 This variable is used for reformatting the message header,
9bd33c9d9a4e (rmail-ignored-headers): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 24521
diff changeset
300 which normally happens once for each message,
9bd33c9d9a4e (rmail-ignored-headers): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 24521
diff changeset
301 when you view the message for the first time in Rmail.
9bd33c9d9a4e (rmail-ignored-headers): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 24521
diff changeset
302 To make a change in this variable take effect
9bd33c9d9a4e (rmail-ignored-headers): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 24521
diff changeset
303 for a message that you have already viewed,
9bd33c9d9a4e (rmail-ignored-headers): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 24521
diff changeset
304 go to that message and type \\[rmail-toggle-header] twice."
17630
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
305 :type 'regexp
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
306 :group 'rmail-headers)
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
307
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
308 ;;;###autoload
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
309 (defcustom rmail-displayed-headers "\
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
310 ^\\(to\\|from\\|sender\\|cc\\|date\\|subject\\|reply-to\\):[ \t]+"
11452
a24224fc5a92 (rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents: 11049
diff changeset
311 "*Regexp to match Header fields that Rmail should display.
a24224fc5a92 (rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents: 11049
diff changeset
312 If nil, display all header fields except those matched by
17630
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
313 `rmail-ignored-headers'."
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
314 :type '(choice regexp (const :tag "All"))
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
315 :group 'rmail-headers)
11452
a24224fc5a92 (rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents: 11049
diff changeset
316
a24224fc5a92 (rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents: 11049
diff changeset
317 ;;;###autoload
36568
c96255f28875 (rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents: 35890
diff changeset
318 (defcustom rmail-retry-ignored-headers "^x-authentication-warning:" "\
17630
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
319 *Headers that should be stripped when retrying a failed message."
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
320 :type '(choice regexp (const nil :tag "None"))
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
321 :group 'rmail-headers)
9010
9d48b6752dbf (rmail-retry-failure): Copy the whole block of headers from the message
Richard M. Stallman <rms@gnu.org>
parents: 8963
diff changeset
322
9d48b6752dbf (rmail-retry-failure): Copy the whole block of headers from the message
Richard M. Stallman <rms@gnu.org>
parents: 8963
diff changeset
323 ;;;###autoload
17630
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
324 (defcustom rmail-highlighted-headers "^From:\\|^Subject:" "\
8383
d2b1b642f4e6 (rmail-highlighted-face): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8378
diff changeset
325 *Regexp to match Header fields that Rmail should normally highlight.
8384
4c88569aaa73 (rmail-display-summary): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8383
diff changeset
326 A value of nil means don't highlight.
17630
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
327 See also `rmail-highlight-face'."
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
328 :type 'regexp
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
329 :group 'rmail-headers)
7051
1733b6c1e30b (rmail-show-message): Highlight the specified fields.
Richard M. Stallman <rms@gnu.org>
parents: 7037
diff changeset
330
1733b6c1e30b (rmail-show-message): Highlight the specified fields.
Richard M. Stallman <rms@gnu.org>
parents: 7037
diff changeset
331 ;;;###autoload
17630
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
332 (defcustom rmail-highlight-face nil "\
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
333 *Face used by Rmail for highlighting headers."
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
334 :type '(choice (const :tag "Default" nil)
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
335 face)
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
336 :group 'rmail-headers)
8383
d2b1b642f4e6 (rmail-highlighted-face): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8378
diff changeset
337
d2b1b642f4e6 (rmail-highlighted-face): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8378
diff changeset
338 ;;;###autoload
17630
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
339 (defcustom rmail-delete-after-output nil "\
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
340 *Non-nil means automatically delete a message that is copied to a file."
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
341 :type 'boolean
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
342 :group 'rmail-files)
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
343
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
344 ;;;###autoload
17630
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
345 (defcustom rmail-primary-inbox-list nil "\
2423
5dd3b7338f71 (rmail): Don't use mbox as inbox by default.
Richard M. Stallman <rms@gnu.org>
parents: 2076
diff changeset
346 *List of files which are inboxes for user's primary mail file `~/RMAIL'.
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
347 nil means the default, which is (\"/usr/spool/mail/$USER\")
2423
5dd3b7338f71 (rmail): Don't use mbox as inbox by default.
Richard M. Stallman <rms@gnu.org>
parents: 2076
diff changeset
348 \(the name varies depending on the operating system,
17630
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
349 and the value of the environment variable MAIL overrides it)."
17821
c0422adc1b0e (rmail-retry-failure): Rename local to rmail-this-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 17762
diff changeset
350 ;; Don't use backquote here, because we don't want to need it
c0422adc1b0e (rmail-retry-failure): Rename local to rmail-this-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 17762
diff changeset
351 ;; at load time.
c0422adc1b0e (rmail-retry-failure): Rename local to rmail-this-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 17762
diff changeset
352 :type (list 'choice '(const :tag "Default" nil)
23185
945fed18ddb8 (rmail-primary-inbox-list): Make the initial
Karl Heuer <kwzh@gnu.org>
parents: 22912
diff changeset
353 (list 'repeat ':value (list (or (getenv "MAIL")
945fed18ddb8 (rmail-primary-inbox-list): Make the initial
Karl Heuer <kwzh@gnu.org>
parents: 22912
diff changeset
354 (concat "/var/spool/mail/"
945fed18ddb8 (rmail-primary-inbox-list): Make the initial
Karl Heuer <kwzh@gnu.org>
parents: 22912
diff changeset
355 (getenv "USER"))))
17821
c0422adc1b0e (rmail-retry-failure): Rename local to rmail-this-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 17762
diff changeset
356 'file))
17630
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
357 :group 'rmail-retrieve
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
358 :group 'rmail-files)
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
359
4108
e4fbcd480455 (rmail-mail-new-frame): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 4071
diff changeset
360 ;;;###autoload
88232
0e6d3b2196c4 (rmail-inbox-alist): New variable.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88226
diff changeset
361 (defcustom rmail-inbox-alist nil
0e6d3b2196c4 (rmail-inbox-alist): New variable.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88226
diff changeset
362 "*Alist of mail files and backup directory names.
88243
7f3a04aaac5e (rmail-inbox-alist): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88235
diff changeset
363 Each element has the form (MAIL-FILE INBOX ...). When running
7f3a04aaac5e (rmail-inbox-alist): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88235
diff changeset
364 rmail on MAIL-FILE, mails in all the INBOX files listed will be
7f3a04aaac5e (rmail-inbox-alist): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88235
diff changeset
365 moved to the MAIL-FILE. Be sure to fully qualify your MAIL-FILE.
7f3a04aaac5e (rmail-inbox-alist): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88235
diff changeset
366
7f3a04aaac5e (rmail-inbox-alist): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88235
diff changeset
367 Example setting if procmail delivers all your spam to
7f3a04aaac5e (rmail-inbox-alist): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88235
diff changeset
368 ~/Mail/SPAM.in and you read it from the file ~/Mail/SPAM:
7f3a04aaac5e (rmail-inbox-alist): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88235
diff changeset
369
7f3a04aaac5e (rmail-inbox-alist): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88235
diff changeset
370 \(setq rmail-inbox-alist '((\"~/Mail/SPAM\" \"~/Mail/SPAM.in\")))"
88232
0e6d3b2196c4 (rmail-inbox-alist): New variable.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88226
diff changeset
371 :type '(alist :key-type file :value-type (repeat file))
0e6d3b2196c4 (rmail-inbox-alist): New variable.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88226
diff changeset
372 :group 'rmail-retrieve
0e6d3b2196c4 (rmail-inbox-alist): New variable.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88226
diff changeset
373 :group 'rmail-files)
0e6d3b2196c4 (rmail-inbox-alist): New variable.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88226
diff changeset
374
0e6d3b2196c4 (rmail-inbox-alist): New variable.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88226
diff changeset
375 ;;;###autoload
17630
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
376 (defcustom rmail-mail-new-frame nil
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
377 "*Non-nil means Rmail makes a new frame for composing outgoing mail.
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
378 This is handy if you want to preserve the window configuration of
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
379 the frame where you have the RMAIL buffer displayed."
17630
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
380 :type 'boolean
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
381 :group 'rmail-reply)
4108
e4fbcd480455 (rmail-mail-new-frame): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 4071
diff changeset
382
4844
25d94807689e (rmail-retry-setup-hook): New hook variable.
Richard M. Stallman <rms@gnu.org>
parents: 4838
diff changeset
383 ;;;###autoload
17630
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
384 (defcustom rmail-secondary-file-directory "~/"
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
385 "*Directory for additional secondary Rmail files."
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
386 :type 'directory
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
387 :group 'rmail-files)
6408
185b1fd3a525 (rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 6389
diff changeset
388 ;;;###autoload
17630
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
389 (defcustom rmail-secondary-file-regexp "\\.xmail$"
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
390 "*Regexp for which files are secondary Rmail files."
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
391 :type 'regexp
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
392 :group 'rmail-files)
6408
185b1fd3a525 (rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 6389
diff changeset
393
13477
5c500f39271c (rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents: 13302
diff changeset
394 ;;;###autoload
33792
3349ff34a331 (rmail-confirm-expunge): Default to
Gerd Moellmann <gerd@gnu.org>
parents: 30544
diff changeset
395 (defcustom rmail-confirm-expunge 'y-or-n-p
28290
4aafdd90bf08 (rmail-confirm-expunge): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents: 27944
diff changeset
396 "*Whether and how to ask for confirmation before expunging deleted messages."
4aafdd90bf08 (rmail-confirm-expunge): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents: 27944
diff changeset
397 :type '(choice (const :tag "No confirmation" nil)
4aafdd90bf08 (rmail-confirm-expunge): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents: 27944
diff changeset
398 (const :tag "Confirm with y-or-n-p" y-or-n-p)
4aafdd90bf08 (rmail-confirm-expunge): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents: 27944
diff changeset
399 (const :tag "Confirm with yes-or-no-p" yes-or-no-p))
4aafdd90bf08 (rmail-confirm-expunge): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents: 27944
diff changeset
400 :version "21.1"
4aafdd90bf08 (rmail-confirm-expunge): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents: 27944
diff changeset
401 :group 'rmail-files)
4aafdd90bf08 (rmail-confirm-expunge): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents: 27944
diff changeset
402
4aafdd90bf08 (rmail-confirm-expunge): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents: 27944
diff changeset
403 ;;;###autoload
13477
5c500f39271c (rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents: 13302
diff changeset
404 (defvar rmail-mode-hook nil
5c500f39271c (rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents: 13302
diff changeset
405 "List of functions to call when Rmail is invoked.")
5c500f39271c (rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents: 13302
diff changeset
406
5c500f39271c (rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents: 13302
diff changeset
407 ;;;###autoload
5c500f39271c (rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents: 13302
diff changeset
408 (defvar rmail-get-new-mail-hook nil
5c500f39271c (rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents: 13302
diff changeset
409 "List of functions to call when Rmail has retrieved new mail.")
5c500f39271c (rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents: 13302
diff changeset
410
5c500f39271c (rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents: 13302
diff changeset
411 ;;;###autoload
28910
65b986dbb7ba rmail-show-message-hook): Customize and offer
Dave Love <fx@gnu.org>
parents: 28714
diff changeset
412 (defcustom rmail-show-message-hook nil
65b986dbb7ba rmail-show-message-hook): Customize and offer
Dave Love <fx@gnu.org>
parents: 28714
diff changeset
413 "List of functions to call when Rmail displays a message."
65b986dbb7ba rmail-show-message-hook): Customize and offer
Dave Love <fx@gnu.org>
parents: 28714
diff changeset
414 :type 'hook
45360
68f66e6dd200 (rmail-show-message-hook): Offer `goto-address' as an option.
Richard M. Stallman <rms@gnu.org>
parents: 45218
diff changeset
415 :options '(goto-address)
28910
65b986dbb7ba rmail-show-message-hook): Customize and offer
Dave Love <fx@gnu.org>
parents: 28714
diff changeset
416 :group 'rmail)
13477
5c500f39271c (rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents: 13302
diff changeset
417
5c500f39271c (rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents: 13302
diff changeset
418 ;;;###autoload
27944
b75299f3bc4c (rmail-quit-hook): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 27871
diff changeset
419 (defvar rmail-quit-hook nil
b75299f3bc4c (rmail-quit-hook): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 27871
diff changeset
420 "List of functions to call when quitting out of Rmail.")
b75299f3bc4c (rmail-quit-hook): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 27871
diff changeset
421
b75299f3bc4c (rmail-quit-hook): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 27871
diff changeset
422 ;;;###autoload
13477
5c500f39271c (rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents: 13302
diff changeset
423 (defvar rmail-delete-message-hook nil
5c500f39271c (rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents: 13302
diff changeset
424 "List of functions to call when Rmail deletes a message.
5c500f39271c (rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents: 13302
diff changeset
425 When the hooks are called, the message has been marked deleted but is
5c500f39271c (rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents: 13302
diff changeset
426 still the current message in the Rmail buffer.")
5c500f39271c (rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents: 13302
diff changeset
427
2076
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
428 ;; These may be altered by site-init.el to match the format of mmdf files
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
429 ;; delimiting used on a given host (delim1 and delim2 from the config
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
430 ;; files).
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
431
18091
1bd633f97c45 (rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents: 17839
diff changeset
432 (defvar rmail-mmdf-delim1 "^\001\001\001\001\n"
49082
336bfea9bad4 (rmail-mmdf-delim1, rmail-mmdf-delim2): Doc fixes.
John Paul Wallington <jpw@pobox.com>
parents: 49064
diff changeset
433 "Regexp marking the start of an mmdf message.")
18091
1bd633f97c45 (rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents: 17839
diff changeset
434 (defvar rmail-mmdf-delim2 "^\001\001\001\001\n"
49082
336bfea9bad4 (rmail-mmdf-delim1, rmail-mmdf-delim2): Doc fixes.
John Paul Wallington <jpw@pobox.com>
parents: 49064
diff changeset
435 "Regexp marking the end of an mmdf message.")
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
436
21435
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
437 (defcustom rmail-message-filter nil
15832
0b6735ce85ac (rmail-reply-regexp, rmail-message-filter): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 15820
diff changeset
438 "If non-nil, a filter function for new messages in RMAIL.
0b6735ce85ac (rmail-reply-regexp, rmail-message-filter): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 15820
diff changeset
439 Called with region narrowed to the message, including headers,
21435
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
440 before obeying `rmail-ignored-headers'."
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
441 :group 'rmail-headers
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
442 :type 'function)
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
443
29160
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
444 (defcustom rmail-automatic-folder-directives nil
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
445 "List of directives specifying where to put a message.
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
446 Each element of the list is of the form:
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
447
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
448 (FOLDERNAME FIELD REGEXP [ FIELD REGEXP ] ... )
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
449
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
450 Where FOLDERNAME is the name of a BABYL Version 6 (also known as mbox
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
451 or Unix inbox format) folder to put the message. If any of the field
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
452 regexp's are nil, then it is ignored.
29160
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
453
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
454 If FOLDERNAME is \"/dev/null\", it is deleted.
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
455 If FOLDERNAME is nil then it is deleted, and skipped.
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
456
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
457 FIELD is the plain text name of a field in the message, such as
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
458 \"subject\" or \"from\". A FIELD of \"to\" will automatically include
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
459 all text from the \"cc\" field as well.
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
460
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
461 REGEXP is an expression to match in the preceeding specified FIELD.
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
462 FIELD/REGEXP pairs continue in the list.
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
463
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
464 examples:
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
465 (\"/dev/null\" \"from\" \"@spam.com\") ; delete all mail from spam.com
33918
5ddbb3756471 (rmail-automatic-folder-directives): Add a custom
Gerd Moellmann <gerd@gnu.org>
parents: 33792
diff changeset
466 (\"RMS\" \"from\" \"rms@\") ; save all mail from RMS."
5ddbb3756471 (rmail-automatic-folder-directives): Add a custom
Gerd Moellmann <gerd@gnu.org>
parents: 33792
diff changeset
467 :group 'rmail
5ddbb3756471 (rmail-automatic-folder-directives): Add a custom
Gerd Moellmann <gerd@gnu.org>
parents: 33792
diff changeset
468 :version "21.1"
5ddbb3756471 (rmail-automatic-folder-directives): Add a custom
Gerd Moellmann <gerd@gnu.org>
parents: 33792
diff changeset
469 :type '(repeat (sexp :tag "Directive")))
45144
30db00c75dbf (rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents: 44141
diff changeset
470
2076
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
471 (defvar rmail-reply-prefix "Re: "
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
472 "String to prepend to Subject line when replying to a message.")
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
473
17065
01cba1834368 (rmail-next-same-subject, rmail-reply): Ignore case, to
Karl Heuer <kwzh@gnu.org>
parents: 17011
diff changeset
474 ;; Some mailers use "Re(2):" or "Re^2:" or "Re: Re:" or "Re[2]:".
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
475 ;; This pattern should catch all the common variants. The pattern
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
476 ;; also ignores mailing list identifiers sometimes added in square
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
477 ;; brackets at the beginning of subject lines.
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
478 (defvar rmail-reply-regexp "\\`\\(\\[.+?\\] \\)?\\(Re\\(([0-9]+)\\|\\[[0-9]+\\]\\|\\^[0-9]+\\)?: *\\)*"
15832
0b6735ce85ac (rmail-reply-regexp, rmail-message-filter): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 15820
diff changeset
479 "Regexp to delete from Subject line before inserting `rmail-reply-prefix'.")
10640
937cc7f2a790 (rmail-reply-regexp): New var.
Karl Heuer <kwzh@gnu.org>
parents: 10621
diff changeset
480
21435
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
481 (defcustom rmail-display-summary nil
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
482 "*If non-nil, Rmail always displays the summary buffer."
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
483 :group 'rmail-summary
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
484 :type 'boolean)
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
485
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
486 (defvar rmail-inbox-list nil)
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
487 (put 'rmail-inbox-list 'permanent-local t)
8384
4c88569aaa73 (rmail-display-summary): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8383
diff changeset
488
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
489 (defvar rmail-keywords nil)
21435
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
490 (put 'rmail-keywords 'permanent-local t)
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
491
19509
ea4261efd9f9 (rmail-view-buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 19315
diff changeset
492 (defvar rmail-buffer nil
ea4261efd9f9 (rmail-view-buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 19315
diff changeset
493 "The RMAIL buffer related to the current buffer.
ea4261efd9f9 (rmail-view-buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 19315
diff changeset
494 In an RMAIL buffer, this holds the RMAIL buffer itself.
ea4261efd9f9 (rmail-view-buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 19315
diff changeset
495 In a summary buffer, this holds the RMAIL buffer it is a summary for.")
ea4261efd9f9 (rmail-view-buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 19315
diff changeset
496 (put 'rmail-buffer 'permanent-local t)
ea4261efd9f9 (rmail-view-buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 19315
diff changeset
497
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
498 ;; Message counters and markers. Deleted flags.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
499
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
500 (defvar rmail-current-message nil)
21435
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
501 (put 'rmail-current-message 'permanent-local t)
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
502
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
503 (defvar rmail-total-messages nil)
21435
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
504 (put 'rmail-total-messages 'permanent-local t)
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
505
7061
9f27a57b7662 (rmail-show-message): Use overlays, not text properties.
Richard M. Stallman <rms@gnu.org>
parents: 7051
diff changeset
506 (defvar rmail-overlay-list nil)
21435
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
507 (put 'rmail-overlay-list 'permanent-local t)
9380
5eb799a4819b (rmail-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 9153
diff changeset
508
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
509 ;; These are used by autoloaded rmail-summary.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
510
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
511 (defvar rmail-summary-buffer nil)
19509
ea4261efd9f9 (rmail-view-buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 19315
diff changeset
512 (put 'rmail-summary-buffer 'permanent-local t)
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
513
21435
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
514 (defvar rmail-view-buffer nil
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
515 "Buffer which holds RMAIL message for MIME displaying.")
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
516 (put 'rmail-view-buffer 'permanent-local t)
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
517
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
518 ;; `Sticky' default variables.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
519
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
520 ;; Last individual label specified to a or k.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
521 (defvar rmail-last-label nil)
21435
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
522 (put 'rmail-last-label 'permanent-local t)
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
523
2076
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
524 ;; Last set of values specified to C-M-n, C-M-p, C-M-s or C-M-l.
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
525 (defvar rmail-last-multi-labels nil)
21435
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
526
2076
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
527 (defvar rmail-last-regexp nil)
21435
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
528 (put 'rmail-last-regexp 'permanent-local t)
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
529
17630
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
530 (defcustom rmail-default-file "~/xmail"
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
531 "*Default file name for \\[rmail-output]."
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
532 :type 'file
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
533 :group 'rmail-files)
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
534
17630
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
535 (defcustom rmail-default-rmail-file "~/XMAIL"
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
536 "*Default file name for \\[rmail-output-to-rmail-file]."
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
537 :type 'file
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
538 :group 'rmail-files)
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
539
22201
40b715281ea5 (rmail-default-body-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22158
diff changeset
540 (defcustom rmail-default-body-file "~/mailout"
40b715281ea5 (rmail-default-body-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22158
diff changeset
541 "*Default file name for \\[rmail-output-body-to-file]."
40b715281ea5 (rmail-default-body-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22158
diff changeset
542 :type 'file
40b715281ea5 (rmail-default-body-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22158
diff changeset
543 :group 'rmail-files
40b715281ea5 (rmail-default-body-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 22158
diff changeset
544 :version "20.3")
617
cde1f15848c6 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 584
diff changeset
545
21435
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
546 ;; Mule and MIME related variables.
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
547
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
548 ;;;###autoload
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
549 (defvar rmail-file-coding-system nil
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
550 "Coding system used in RMAIL file.
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
551
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
552 This is set to nil by default.")
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
553
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
554 ;;;###autoload
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
555 (defcustom rmail-enable-mime nil
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
556 "*If non-nil, RMAIL uses MIME feature.
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
557 If the value is t, RMAIL automatically shows MIME decoded message.
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
558 If the value is neither t nor nil, RMAIL does not show MIME decoded message
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
559 until a user explicitly requires it."
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
560 :type '(choice (const :tag "on" t)
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
561 (const :tag "off" nil)
22591
ab11b5ffa8de (rmail-enable-mime): Use `other' widget type.
Andreas Schwab <schwab@suse.de>
parents: 22498
diff changeset
562 (other :tag "when asked" ask))
21435
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
563 :group 'rmail)
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
564
41511
19496cafe865 2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents: 39298
diff changeset
565 (defvar rmail-enable-mime-composing nil
19496cafe865 2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents: 39298
diff changeset
566 "*If non-nil, RMAIL uses `rmail-insert-mime-forwarded-message-function' to forward.")
19496cafe865 2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents: 39298
diff changeset
567
21435
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
568 ;;;###autoload
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
569 (defvar rmail-show-mime-function nil
37611
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
570 "Function to show MIME decoded message of RMAIL file.
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
571 This function is called when `rmail-enable-mime' is non-nil.
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
572 It is called with no argument.")
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
573
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
574 ;;;###autoload
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
575 (defvar rmail-insert-mime-forwarded-message-function nil
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
576 "Function to insert a message in MIME format so it can be forwarded.
45144
30db00c75dbf (rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents: 44141
diff changeset
577 This function is called if `rmail-enable-mime' or
41511
19496cafe865 2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents: 39298
diff changeset
578 `rmail-enable-mime-composing' is non-nil.
37611
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
579 It is called with one argument FORWARD-BUFFER, which is a
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
580 buffer containing the message to forward. The current buffer
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
581 is the outgoing mail buffer.")
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
582
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
583 ;;;###autoload
37956
b59847354241 (rmail-revert): Modify to work in
Gerd Moellmann <gerd@gnu.org>
parents: 37839
diff changeset
584 (defvar rmail-insert-mime-resent-message-function nil
b59847354241 (rmail-revert): Modify to work in
Gerd Moellmann <gerd@gnu.org>
parents: 37839
diff changeset
585 "Function to insert a message in MIME format so it can be resent.
b59847354241 (rmail-revert): Modify to work in
Gerd Moellmann <gerd@gnu.org>
parents: 37839
diff changeset
586 This function is called if `rmail-enable-mime' is non-nil.
b59847354241 (rmail-revert): Modify to work in
Gerd Moellmann <gerd@gnu.org>
parents: 37839
diff changeset
587 It is called with one argument FORWARD-BUFFER, which is a
b59847354241 (rmail-revert): Modify to work in
Gerd Moellmann <gerd@gnu.org>
parents: 37839
diff changeset
588 buffer containing the message to forward. The current buffer
b59847354241 (rmail-revert): Modify to work in
Gerd Moellmann <gerd@gnu.org>
parents: 37839
diff changeset
589 is the outgoing mail buffer.")
b59847354241 (rmail-revert): Modify to work in
Gerd Moellmann <gerd@gnu.org>
parents: 37839
diff changeset
590
b59847354241 (rmail-revert): Modify to work in
Gerd Moellmann <gerd@gnu.org>
parents: 37839
diff changeset
591 ;;;###autoload
37611
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
592 (defvar rmail-search-mime-message-function nil
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
593 "Function to check if a regexp matches a MIME message.
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
594 This function is called if `rmail-enable-mime' is non-nil.
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
595 It is called with two arguments MSG and REGEXP, where
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
596 MSG is the message number, REGEXP is the regular expression.")
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
597
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
598 ;;;###autoload
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
599 (defvar rmail-search-mime-header-function nil
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
600 "Function to check if a regexp matches a header of MIME message.
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
601 This function is called if `rmail-enable-mime' is non-nil.
46924
2d6894cca50a (rmail-search-mime-header-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 46129
diff changeset
602 It is called with three arguments MSG, REGEXP, and LIMIT, where
37611
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
603 MSG is the message number,
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
604 REGEXP is the regular expression,
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
605 LIMIT is the position specifying the end of header.")
21435
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
606
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
607 ;;;###autoload
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
608 (defvar rmail-mime-feature 'rmail-mime
22133
543e41494c45 (rmail-mime-feature): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 22108
diff changeset
609 "Feature to require to load MIME support in Rmail.
543e41494c45 (rmail-mime-feature): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 22108
diff changeset
610 When starting Rmail, if `rmail-enable-mime' is non-nil,
543e41494c45 (rmail-mime-feature): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 22108
diff changeset
611 this feature is required with `require'.")
24209
d0853770c8e7 (rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 24110
diff changeset
612
d0853770c8e7 (rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 24110
diff changeset
613 ;;;###autoload
d0853770c8e7 (rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 24110
diff changeset
614 (defvar rmail-decode-mime-charset t
d0853770c8e7 (rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 24110
diff changeset
615 "*Non-nil means a message is decoded by MIME's charset specification.
d0853770c8e7 (rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 24110
diff changeset
616 If this variable is nil, or the message has not MIME specification,
d0853770c8e7 (rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 24110
diff changeset
617 the message is decoded as normal way.
d0853770c8e7 (rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 24110
diff changeset
618
d0853770c8e7 (rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 24110
diff changeset
619 If the variable `rmail-enable-mime' is non-nil, this variables is
d0853770c8e7 (rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 24110
diff changeset
620 ignored, and all the decoding work is done by a feature specified by
d0853770c8e7 (rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 24110
diff changeset
621 the variable `rmail-mime-feature'.")
d0853770c8e7 (rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 24110
diff changeset
622
d0853770c8e7 (rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 24110
diff changeset
623 ;;;###autoload
d0853770c8e7 (rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 24110
diff changeset
624 (defvar rmail-mime-charset-pattern
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
625 "^content-type:[ ]*text/plain;[ \t\n]*charset=\"?\\([^ \t\n\";]+\\)\"?"
24209
d0853770c8e7 (rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 24110
diff changeset
626 "Regexp to match MIME-charset specification in a header of message.
d0853770c8e7 (rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 24110
diff changeset
627 The first parenthesized expression should match the MIME-charset name.")
d0853770c8e7 (rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 24110
diff changeset
628
21435
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
629
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 617
diff changeset
630 ;;; Regexp matching the delimiter of messages in UNIX mail format
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
631 ;;; (UNIX From lines), with an initial ^. Used in rmail-decode-from-line,
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
632 ;;; which knows the exact ordering of the \\(...\\) subexpressions.
617
cde1f15848c6 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 584
diff changeset
633 (defvar rmail-unix-mail-delimiter
1112
1dba066c1e0a *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 1078
diff changeset
634 (let ((time-zone-regexp
12727
7bf59a3ff303 (rmail-unix-mail-delimiter): Allow two-letter timezone name.
Richard M. Stallman <rms@gnu.org>
parents: 12650
diff changeset
635 (concat "\\([A-Z]?[A-Z]?[A-Z][A-Z]\\( DST\\)?"
1112
1dba066c1e0a *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 1078
diff changeset
636 "\\|[-+]?[0-9][0-9][0-9][0-9]"
1dba066c1e0a *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 1078
diff changeset
637 "\\|"
1dba066c1e0a *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 1078
diff changeset
638 "\\) *")))
1dba066c1e0a *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 1078
diff changeset
639 (concat
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
640 "^From "
1112
1dba066c1e0a *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 1078
diff changeset
641
15534
7f169dd814ce (rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents: 15503
diff changeset
642 ;; Many things can happen to an RFC 822 mailbox before it is put into
7f169dd814ce (rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents: 15503
diff changeset
643 ;; a `From' line. The leading phrase can be stripped, e.g.
7f169dd814ce (rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents: 15503
diff changeset
644 ;; `Joe <@w.x:joe@y.z>' -> `<@w.x:joe@y.z>'. The <> can be stripped, e.g.
7f169dd814ce (rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents: 15503
diff changeset
645 ;; `<@x.y:joe@y.z>' -> `@x.y:joe@y.z'. Everything starting with a CRLF
7f169dd814ce (rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents: 15503
diff changeset
646 ;; can be removed, e.g.
7f169dd814ce (rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents: 15503
diff changeset
647 ;; From: joe@y.z (Joe K
7f169dd814ce (rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents: 15503
diff changeset
648 ;; User)
7f169dd814ce (rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents: 15503
diff changeset
649 ;; can yield `From joe@y.z (Joe K Fri Mar 22 08:11:15 1996', and
7f169dd814ce (rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents: 15503
diff changeset
650 ;; From: Joe User
7f169dd814ce (rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents: 15503
diff changeset
651 ;; <joe@y.z>
7f169dd814ce (rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents: 15503
diff changeset
652 ;; can yield `From Joe User Fri Mar 22 08:11:15 1996'.
15820
12c537361366 (rmail-unix-mail-delimiter): Allow space or tab as
Paul Eggert <eggert@twinsun.com>
parents: 15746
diff changeset
653 ;; The mailbox can be removed or be replaced by white space, e.g.
12c537361366 (rmail-unix-mail-delimiter): Allow space or tab as
Paul Eggert <eggert@twinsun.com>
parents: 15746
diff changeset
654 ;; From: "Joe User"{space}{tab}
12c537361366 (rmail-unix-mail-delimiter): Allow space or tab as
Paul Eggert <eggert@twinsun.com>
parents: 15746
diff changeset
655 ;; <joe@y.z>
12c537361366 (rmail-unix-mail-delimiter): Allow space or tab as
Paul Eggert <eggert@twinsun.com>
parents: 15746
diff changeset
656 ;; can yield `From {space}{tab} Fri Mar 22 08:11:15 1996',
12c537361366 (rmail-unix-mail-delimiter): Allow space or tab as
Paul Eggert <eggert@twinsun.com>
parents: 15746
diff changeset
657 ;; where {space} and {tab} represent the Ascii space and tab characters.
15534
7f169dd814ce (rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents: 15503
diff changeset
658 ;; We want to match the results of any of these manglings.
7f169dd814ce (rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents: 15503
diff changeset
659 ;; The following regexp rejects names whose first characters are
7f169dd814ce (rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents: 15503
diff changeset
660 ;; obviously bogus, but after that anything goes.
15820
12c537361366 (rmail-unix-mail-delimiter): Allow space or tab as
Paul Eggert <eggert@twinsun.com>
parents: 15746
diff changeset
661 "\\([^\0-\b\n-\r\^?].*\\)? "
1112
1dba066c1e0a *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 1078
diff changeset
662
1dba066c1e0a *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 1078
diff changeset
663 ;; The time the message was sent.
15534
7f169dd814ce (rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents: 15503
diff changeset
664 "\\([^\0-\r \^?]+\\) +" ; day of the week
7f169dd814ce (rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents: 15503
diff changeset
665 "\\([^\0-\r \^?]+\\) +" ; month
7f169dd814ce (rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents: 15503
diff changeset
666 "\\([0-3]?[0-9]\\) +" ; day of month
7f169dd814ce (rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents: 15503
diff changeset
667 "\\([0-2][0-9]:[0-5][0-9]\\(:[0-6][0-9]\\)?\\) *" ; time of day
1112
1dba066c1e0a *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 1078
diff changeset
668
1dba066c1e0a *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 1078
diff changeset
669 ;; Perhaps a time zone, specified by an abbreviation, or by a
1dba066c1e0a *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 1078
diff changeset
670 ;; numeric offset.
1dba066c1e0a *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 1078
diff changeset
671 time-zone-regexp
1dba066c1e0a *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 1078
diff changeset
672
1dba066c1e0a *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 1078
diff changeset
673 ;; The year.
15534
7f169dd814ce (rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents: 15503
diff changeset
674 " \\([0-9][0-9]+\\) *"
1112
1dba066c1e0a *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 1078
diff changeset
675
1dba066c1e0a *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 1078
diff changeset
676 ;; On some systems the time zone can appear after the year, too.
1dba066c1e0a *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 1078
diff changeset
677 time-zone-regexp
1dba066c1e0a *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 1078
diff changeset
678
7037
c205795eecc6 Cosmetic changes.
Karl Heuer <kwzh@gnu.org>
parents: 6727
diff changeset
679 ;; Old uucp cruft.
c205795eecc6 Cosmetic changes.
Karl Heuer <kwzh@gnu.org>
parents: 6727
diff changeset
680 "\\(remote from .*\\)?"
1112
1dba066c1e0a *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 1078
diff changeset
681
1dba066c1e0a *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 1078
diff changeset
682 "\n"))
1dba066c1e0a *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 1078
diff changeset
683 nil)
1dba066c1e0a *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 1078
diff changeset
684
21435
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
685 (defvar rmail-font-lock-keywords
49064
d9fb715ab692 (rmail-font-lock-keywords): Discard code to match both cases.
Richard M. Stallman <rms@gnu.org>
parents: 49008
diff changeset
686 ;; These are all matched case-insensitively.
21435
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
687 (eval-when-compile
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
688 (let* ((cite-chars "[>|}]")
49064
d9fb715ab692 (rmail-font-lock-keywords): Discard code to match both cases.
Richard M. Stallman <rms@gnu.org>
parents: 49008
diff changeset
689 (cite-prefix "a-z")
21435
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
690 (cite-suffix (concat cite-prefix "0-9_.@-`'\"")))
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
691 (list '("^\\(From\\|Sender\\|Resent-From\\):"
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
692 . font-lock-function-name-face)
21435
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
693 '("^Reply-To:.*$" . font-lock-function-name-face)
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
694 '("^Subject:" . font-lock-comment-face)
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
695 '("^X-Spam-Status:" . font-lock-keyword-face)
21435
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
696 '("^\\(To\\|Apparently-To\\|Cc\\|Newsgroups\\):"
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
697 . font-lock-keyword-face)
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
698 ;; Use MATCH-ANCHORED to effectively anchor the regexp left side.
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
699 `(,cite-chars
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
700 (,(concat "\\=[ \t]*"
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
701 "\\(\\(\\([" cite-prefix "]+[" cite-suffix "]*\\)?"
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
702 "\\(" cite-chars "[ \t]*\\)\\)+\\)"
21435
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
703 "\\(.*\\)")
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
704 (beginning-of-line) (end-of-line)
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
705 (1 font-lock-comment-delimiter-face nil t)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
706 (5 font-lock-comment-face nil t)))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
707 '("^\\(X-[a-z0-9-]+\\|In-reply-to\\|Date\\):.*\\(\n[ \t]+.*\\)*$"
21435
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
708 . font-lock-string-face))))
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
709 "Additional expressions to highlight in Rmail mode.")
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
710
2076
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
711 ;; Perform BODY in the summary buffer
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
712 ;; in such a way that its cursor is properly updated in its own window.
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
713 (defmacro rmail-select-summary (&rest body)
26455
03d8424273d3 Use new backquote syntax.
Gerd Moellmann <gerd@gnu.org>
parents: 26024
diff changeset
714 `(let ((total rmail-total-messages))
03d8424273d3 Use new backquote syntax.
Gerd Moellmann <gerd@gnu.org>
parents: 26024
diff changeset
715 (if (rmail-summary-displayed)
03d8424273d3 Use new backquote syntax.
Gerd Moellmann <gerd@gnu.org>
parents: 26024
diff changeset
716 (let ((window (selected-window)))
03d8424273d3 Use new backquote syntax.
Gerd Moellmann <gerd@gnu.org>
parents: 26024
diff changeset
717 (save-excursion
03d8424273d3 Use new backquote syntax.
Gerd Moellmann <gerd@gnu.org>
parents: 26024
diff changeset
718 (unwind-protect
03d8424273d3 Use new backquote syntax.
Gerd Moellmann <gerd@gnu.org>
parents: 26024
diff changeset
719 (progn
03d8424273d3 Use new backquote syntax.
Gerd Moellmann <gerd@gnu.org>
parents: 26024
diff changeset
720 (pop-to-buffer rmail-summary-buffer)
03d8424273d3 Use new backquote syntax.
Gerd Moellmann <gerd@gnu.org>
parents: 26024
diff changeset
721 ;; rmail-total-messages is a buffer-local var
03d8424273d3 Use new backquote syntax.
Gerd Moellmann <gerd@gnu.org>
parents: 26024
diff changeset
722 ;; in the rmail buffer.
03d8424273d3 Use new backquote syntax.
Gerd Moellmann <gerd@gnu.org>
parents: 26024
diff changeset
723 ;; This way we make it available for the body
03d8424273d3 Use new backquote syntax.
Gerd Moellmann <gerd@gnu.org>
parents: 26024
diff changeset
724 ;; even tho the rmail buffer is not current.
03d8424273d3 Use new backquote syntax.
Gerd Moellmann <gerd@gnu.org>
parents: 26024
diff changeset
725 (let ((rmail-total-messages total))
03d8424273d3 Use new backquote syntax.
Gerd Moellmann <gerd@gnu.org>
parents: 26024
diff changeset
726 ,@body))
03d8424273d3 Use new backquote syntax.
Gerd Moellmann <gerd@gnu.org>
parents: 26024
diff changeset
727 (select-window window))))
03d8424273d3 Use new backquote syntax.
Gerd Moellmann <gerd@gnu.org>
parents: 26024
diff changeset
728 (save-excursion
03d8424273d3 Use new backquote syntax.
Gerd Moellmann <gerd@gnu.org>
parents: 26024
diff changeset
729 (set-buffer rmail-summary-buffer)
03d8424273d3 Use new backquote syntax.
Gerd Moellmann <gerd@gnu.org>
parents: 26024
diff changeset
730 (let ((rmail-total-messages total))
03d8424273d3 Use new backquote syntax.
Gerd Moellmann <gerd@gnu.org>
parents: 26024
diff changeset
731 ,@body)))
03d8424273d3 Use new backquote syntax.
Gerd Moellmann <gerd@gnu.org>
parents: 26024
diff changeset
732 (rmail-maybe-display-summary)))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
733
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
734 ;;;; *** Rmail Mode ***
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
735
37787
2022cee16ea5 (rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 37611
diff changeset
736 ;; This variable is dynamically bound. The defvar is here to placate
2022cee16ea5 (rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 37611
diff changeset
737 ;; the byte compiler.
2022cee16ea5 (rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 37611
diff changeset
738
20943
d5e308b7879e (rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents: 20854
diff changeset
739 (defvar rmail-enable-multibyte nil)
d5e308b7879e (rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents: 20854
diff changeset
740
88152
10939b98d269 (rmail): Convert Babyl files using decode-babyl-file.
Richard M. Stallman <rms@gnu.org>
parents: 88148
diff changeset
741 ;; Avoid errors.
10939b98d269 (rmail): Convert Babyl files using decode-babyl-file.
Richard M. Stallman <rms@gnu.org>
parents: 88148
diff changeset
742 (defvar rmail-use-spam-filter nil)
10939b98d269 (rmail): Convert Babyl files using decode-babyl-file.
Richard M. Stallman <rms@gnu.org>
parents: 88148
diff changeset
743
37787
2022cee16ea5 (rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 37611
diff changeset
744 (defun rmail-require-mime-maybe ()
2022cee16ea5 (rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 37611
diff changeset
745 "Require `rmail-mime-feature' if that is non-nil.
2022cee16ea5 (rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 37611
diff changeset
746 Signal an error and set `rmail-mime-feature' to nil if the feature
2022cee16ea5 (rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 37611
diff changeset
747 isn't provided."
88250
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
748 (when (and rmail-enable-mime
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
749 (not (require rmail-mime-feature nil t)))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
750 (message "Feature `%s' not provided" rmail-mime-feature)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
751 (sit-for 1)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
752 (setq rmail-enable-mime nil)))
37787
2022cee16ea5 (rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 37611
diff changeset
753
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
754 ;;;###autoload
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
755 (defun rmail (&optional file-name-arg)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
756 "Read and edit incoming mail.
4838
754b38c0e941 (rmail): Really don't get new mail if file name was given.
Richard M. Stallman <rms@gnu.org>
parents: 4819
diff changeset
757 Moves messages into file named by `rmail-file-name' (a babyl format file)
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
758 and edits that file in RMAIL Mode.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
759 Type \\[describe-mode] once editing that file, for a list of RMAIL commands.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
760
5274
89b71a85be3e (rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents: 5192
diff changeset
761 May be called with file name as argument; then performs rmail editing on
89b71a85be3e (rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents: 5192
diff changeset
762 that file, but does not copy any new mail into the file.
89b71a85be3e (rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents: 5192
diff changeset
763 Interactively, if you supply a prefix argument, then you
8384
4c88569aaa73 (rmail-display-summary): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8383
diff changeset
764 have a chance to specify a file name with the minibuffer.
4c88569aaa73 (rmail-display-summary): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8383
diff changeset
765
4c88569aaa73 (rmail-display-summary): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8383
diff changeset
766 If `rmail-display-summary' is non-nil, make a summary for this RMAIL file."
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
767 (interactive (if current-prefix-arg
13818
0d1de22afac0 (rmail): Allow nonexistent file as arg.
Richard M. Stallman <rms@gnu.org>
parents: 13808
diff changeset
768 (list (read-file-name "Run rmail on RMAIL file: "))))
37787
2022cee16ea5 (rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 37611
diff changeset
769 (rmail-require-mime-maybe)
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
770 (let* ((file-name (expand-file-name (or file-name-arg rmail-file-name)))
43087
0a5935fb4e9e (rmail): Use find-buffer-visiting instead of
Eli Zaretskii <eliz@gnu.org>
parents: 43066
diff changeset
771 ;; Use find-buffer-visiting, not get-file-buffer, for those users
0a5935fb4e9e (rmail): Use find-buffer-visiting instead of
Eli Zaretskii <eliz@gnu.org>
parents: 43066
diff changeset
772 ;; who have find-file-visit-truename set to t.
0a5935fb4e9e (rmail): Use find-buffer-visiting instead of
Eli Zaretskii <eliz@gnu.org>
parents: 43066
diff changeset
773 (existed (find-buffer-visiting file-name))
39298
2b67bb3275f8 (top-level): Require mule-utils when compiling.
Eli Zaretskii <eliz@gnu.org>
parents: 38412
diff changeset
774 ;; This binding is necessary because we must decide if we
20947
a66eb4a41765 (rmail-decode-babyl-format): Message modified.
Kenichi Handa <handa@m17n.org>
parents: 20943
diff changeset
775 ;; need code conversion while the buffer is unibyte
a66eb4a41765 (rmail-decode-babyl-format): Message modified.
Kenichi Handa <handa@m17n.org>
parents: 20943
diff changeset
776 ;; (i.e. enable-multibyte-characters is nil).
22724
6a6568360d51 (rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents: 22610
diff changeset
777 (rmail-enable-multibyte
45144
30db00c75dbf (rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents: 44141
diff changeset
778 (if existed
22724
6a6568360d51 (rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents: 22610
diff changeset
779 (with-current-buffer existed enable-multibyte-characters)
6a6568360d51 (rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents: 22610
diff changeset
780 (default-value 'enable-multibyte-characters)))
20943
d5e308b7879e (rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents: 20854
diff changeset
781 ;; Since the file may contain messages of different encodings
d5e308b7879e (rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents: 20854
diff changeset
782 ;; at the tail (non-BYBYL part), we can't decode them at once
d5e308b7879e (rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents: 20854
diff changeset
783 ;; on reading. So, at first, we read the file without text
88163
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
784 ;; code conversion, then decode the messages one by one.
20943
d5e308b7879e (rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents: 20854
diff changeset
785 (coding-system-for-read (and rmail-enable-multibyte 'raw-text))
88200
845dd39e284d (rmail): Only call `rmail-show-message' if no new mail
Henrik Enberg <henrik.enberg@telia.com>
parents: 88198
diff changeset
786 run-mail-hook msg-shown new-mail)
88163
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
787 (when existed
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
788 (switch-to-buffer existed)
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
789 (when (eq major-mode 'rmail-edit-mode)
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
790 (error "Exit Rmail Edit mode before getting new mail")))
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
791 ;; If no buffer existed, or the file was changed behind our back,
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
792 ;; get the raw data again. If we just read in a BABYL file, the
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
793 ;; conversion will have changed the buffer, thus a user issuing
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
794 ;; another M-x rmail will reconvert the BABYL file since we're not
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
795 ;; saving after a conversion.
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
796 (unless (and existed (verify-visited-file-modtime existed))
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
797 ;; There used to be mucking with enable-local-variables here,
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
798 ;; and that was tricky because it was made buffer-local, and
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
799 ;; binding a variable locally with let is not safe if it has
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
800 ;; buffer-local bindings. We also don't want to run any
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
801 ;; find-file-hooks, as these might tamper with the restrictions,
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
802 ;; eg. session management.
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
803 (if existed
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
804 ;; quietly revert file if it changed under us
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
805 (let ((inhibit-read-only t))
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
806 (erase-buffer)
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
807 (insert-file-contents-literally file-name)
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
808 ;; We need to re-initialize rmail-mode later.
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
809 (setq major-mode 'fundamental-mode))
88167
9f588a03d498 (rmail): Create the buffer using
Alex Schroeder <alex@gnu.org>
parents: 88163
diff changeset
810 (switch-to-buffer
9f588a03d498 (rmail): Create the buffer using
Alex Schroeder <alex@gnu.org>
parents: 88163
diff changeset
811 (get-buffer-create (file-name-nondirectory file-name)))
88196
a71ec02fb6d3 (rmail): Only insert the file if it actually exists.
Alex Schroeder <alex@gnu.org>
parents: 88194
diff changeset
812 (when (file-exists-p file-name)
a71ec02fb6d3 (rmail): Only insert the file if it actually exists.
Alex Schroeder <alex@gnu.org>
parents: 88194
diff changeset
813 (insert-file-contents-literally file-name))
88209
95b10b8c9063 (rmail-decode-mbox-file): Fix stupid mistake.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88207
diff changeset
814 (setq buffer-file-name file-name)
95b10b8c9063 (rmail-decode-mbox-file): Fix stupid mistake.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88207
diff changeset
815 ;; As we have read a file as raw-text, the buffer is set to
95b10b8c9063 (rmail-decode-mbox-file): Fix stupid mistake.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88207
diff changeset
816 ;; unibyte. We must make it multibyte if necessary.
95b10b8c9063 (rmail-decode-mbox-file): Fix stupid mistake.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88207
diff changeset
817 (if (and rmail-enable-multibyte
95b10b8c9063 (rmail-decode-mbox-file): Fix stupid mistake.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88207
diff changeset
818 (not enable-multibyte-characters))
95b10b8c9063 (rmail-decode-mbox-file): Fix stupid mistake.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88207
diff changeset
819 (set-buffer-multibyte t))))
88163
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
820 ;; Make sure we're in rmail-mode, even if the buffer did exist and
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
821 ;; the file was not changed.
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
822 (unless (eq major-mode 'rmail-mode)
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
823 ;; If file looks like a Babyl file, save it to a temp file,
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
824 ;; convert it, and replace the current content with the
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
825 ;; converted content. Don't save -- let the user do it.
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
826 (goto-char (point-min))
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
827 (when (looking-at "BABYL OPTIONS:")
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
828 (let ((old-file (make-temp-file "rmail"))
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
829 (new-file (make-temp-file "rmail")))
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
830 (unwind-protect
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
831 (progn
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
832 (write-region (point-min) (point-max) old-file)
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
833 (unrmail old-file new-file)
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
834 (message "Replacing BABYL format with mbox format...")
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
835 (let ((inhibit-read-only t))
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
836 (erase-buffer)
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
837 (insert-file-contents-literally new-file))
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
838 (message "Replacing BABYL format with mbox format...done"))
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
839 (delete-file old-file)
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
840 (delete-file new-file))))
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
841 (goto-char (point-max))
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
842 (rmail-mode-2)
88207
8d2ef2dbf238 (rmail-process-new-messages): Decode message accoding to
Henrik Enberg <henrik.enberg@telia.com>
parents: 88206
diff changeset
843 ;; setup files coding system
88251
5f2ee806ffbb (rmail-process-new-messages): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88250
diff changeset
844 (rmail-decode-mail-file)
88163
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
845 ;; We use `run-mail-hook' to remember whether we should run
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
846 ;; `rmail-mode-hook' at the end.
16431
65d3768ccb05 (rmail): Run rmail-mail-hook last.
Richard M. Stallman <rms@gnu.org>
parents: 16349
diff changeset
847 (setq run-mail-hook t)
88163
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
848 ;; Initialize the Rmail state and process any messages in the
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
849 ;; buffer.
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
850 (rmail-initialize-messages))
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
851 ;; Now we're back in business. The happens even if we had a
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
852 ;; perfectly fine file.
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
853 (unless file-name-arg
88200
845dd39e284d (rmail): Only call `rmail-show-message' if no new mail
Henrik Enberg <henrik.enberg@telia.com>
parents: 88198
diff changeset
854 (setq new-mail (rmail-get-new-mail)))
88163
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
855 (when rmail-display-summary
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
856 (rmail-summary))
88200
845dd39e284d (rmail): Only call `rmail-show-message' if no new mail
Henrik Enberg <henrik.enberg@telia.com>
parents: 88198
diff changeset
857 ;; If new mail was found, display of the correct message was done
845dd39e284d (rmail): Only call `rmail-show-message' if no new mail
Henrik Enberg <henrik.enberg@telia.com>
parents: 88198
diff changeset
858 ;; elsewhere.
845dd39e284d (rmail): Only call `rmail-show-message' if no new mail
Henrik Enberg <henrik.enberg@telia.com>
parents: 88198
diff changeset
859 (unless new-mail
88205
f400fb7ee08a (rmail): Fix last fix.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88203
diff changeset
860 (rmail-show-message (or (rmail-first-unseen-message)
f400fb7ee08a (rmail): Fix last fix.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88203
diff changeset
861 rmail-total-messages)))
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
862 (rmail-construct-io-menu)
88163
080ef9583ad4 (rmail-ignored-headers): Merged several terms using
Alex Schroeder <alex@gnu.org>
parents: 88160
diff changeset
863 ;; Run any callbacks if the buffer was not in rmail-mode
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
864 (if run-mail-hook
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
865 (run-hooks 'rmail-mode-hook))))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
866
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
867 (defun rmail-initialize-messages ()
88148
658c777d9be6 (rmail-message-vector, rmail-deleted-vector)
Richard M. Stallman <rms@gnu.org>
parents: 88144
diff changeset
868 "Initialize message state based on messages in the buffer."
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
869 (setq rmail-total-messages 0
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
870 rmail-current-message 1)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
871 (rmail-desc-clear-descriptors)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
872 (widen)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
873 (rmail-header-show-headers)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
874 (setq rmail-total-messages (rmail-process-new-messages)))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
875
88250
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
876 (defvar rmail-mode-map
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
877 (let ((map (make-sparse-keymap)))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
878 (suppress-keymap map)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
879 (define-key map "a" 'rmail-add-label)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
880 (define-key map "b" 'rmail-bury)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
881 (define-key map "c" 'rmail-continue)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
882 (define-key map "d" 'rmail-delete-forward)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
883 (define-key map "\C-d" 'rmail-delete-backward)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
884 (define-key map "e" 'rmail-edit-current-message)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
885 (define-key map "f" 'rmail-forward)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
886 (define-key map "g" 'rmail-get-new-mail)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
887 (define-key map "h" 'rmail-summary)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
888 (define-key map "i" 'rmail-input)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
889 (define-key map "j" 'rmail-show-message)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
890 (define-key map "k" 'rmail-kill-label)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
891 (define-key map "l" 'rmail-summary-by-labels)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
892 (define-key map "\e\C-h" 'rmail-summary)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
893 (define-key map "\e\C-l" 'rmail-summary-by-labels)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
894 (define-key map "\e\C-r" 'rmail-summary-by-recipients)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
895 (define-key map "\e\C-s" 'rmail-summary-by-regexp)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
896 (define-key map "\e\C-t" 'rmail-summary-by-topic)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
897 (define-key map "m" 'rmail-mail)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
898 (define-key map "\em" 'rmail-retry-failure)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
899 (define-key map "n" 'rmail-next-undeleted-message)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
900 (define-key map "\en" 'rmail-next-message)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
901 (define-key map "\e\C-n" 'rmail-next-labeled-message)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
902 (define-key map "o" 'rmail-output)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
903 (define-key map "\C-o" 'rmail-output)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
904 (define-key map "p" 'rmail-previous-undeleted-message)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
905 (define-key map "\ep" 'rmail-previous-message)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
906 (define-key map "\e\C-p" 'rmail-previous-labeled-message)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
907 (define-key map "q" 'rmail-quit)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
908 (define-key map "r" 'rmail-reply)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
909 ;; I find I can't live without the default M-r command -- rms.
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
910 ;; (define-key map "\er" 'rmail-search-backwards)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
911 (define-key map "s" 'rmail-expunge-and-save)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
912 (define-key map "\es" 'rmail-search)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
913 (define-key map "t" 'rmail-toggle-header)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
914 (define-key map "u" 'rmail-undelete-previous-message)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
915 (define-key map "w" 'rmail-output-body-to-file)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
916 (define-key map "x" 'rmail-expunge)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
917 (define-key map "." 'rmail-beginning-of-message)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
918 (define-key map "/" 'rmail-end-of-message)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
919 (define-key map "<" 'rmail-first-message)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
920 (define-key map ">" 'rmail-last-message)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
921 (define-key map " " 'scroll-up)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
922 (define-key map "\177" 'scroll-down)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
923 (define-key map "?" 'describe-mode)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
924 (define-key map "\C-c\C-s\C-d" 'rmail-sort-by-date)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
925 (define-key map "\C-c\C-s\C-s" 'rmail-sort-by-subject)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
926 (define-key map "\C-c\C-s\C-a" 'rmail-sort-by-author)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
927 (define-key map "\C-c\C-s\C-r" 'rmail-sort-by-recipient)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
928 (define-key map "\C-c\C-s\C-c" 'rmail-sort-by-correspondent)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
929 (define-key map "\C-c\C-s\C-l" 'rmail-sort-by-lines)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
930 (define-key map "\C-c\C-s\C-k" 'rmail-sort-by-labels)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
931 (define-key map "\C-c\C-n" 'rmail-next-same-subject)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
932 (define-key map "\C-c\C-p" 'rmail-previous-same-subject)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
933 (define-key map [menu-bar] (make-sparse-keymap))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
934 (define-key map [menu-bar classify]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
935 (cons "Classify" (make-sparse-keymap "Classify")))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
936 (define-key map [menu-bar classify input-menu]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
937 nil)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
938 (define-key map [menu-bar classify output-menu]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
939 nil)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
940 (define-key map [menu-bar classify output-body]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
941 '("Output body to file..." . rmail-output-body-to-file))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
942 (define-key map [menu-bar classify output-inbox]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
943 '("Output (inbox)..." . rmail-output))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
944 (define-key map [menu-bar classify output]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
945 '("Output (Rmail)..." . rmail-output))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
946 (define-key map [menu-bar classify kill-label]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
947 '("Kill Label..." . rmail-kill-label))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
948 (define-key map [menu-bar classify add-label]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
949 '("Add Label..." . rmail-add-label))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
950 (define-key map [menu-bar summary]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
951 (cons "Summary" (make-sparse-keymap "Summary")))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
952 (define-key map [menu-bar summary senders]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
953 '("By Senders..." . rmail-summary-by-senders))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
954 (define-key map [menu-bar summary labels]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
955 '("By Labels..." . rmail-summary-by-labels))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
956 (define-key map [menu-bar summary recipients]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
957 '("By Recipients..." . rmail-summary-by-recipients))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
958 (define-key map [menu-bar summary topic]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
959 '("By Topic..." . rmail-summary-by-topic))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
960 (define-key map [menu-bar summary regexp]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
961 '("By Regexp..." . rmail-summary-by-regexp))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
962 (define-key map [menu-bar summary all]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
963 '("All" . rmail-summary))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
964 (define-key map [menu-bar mail]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
965 (cons "Mail" (make-sparse-keymap "Mail")))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
966 (define-key map [menu-bar mail rmail-get-new-mail]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
967 '("Get New Mail" . rmail-get-new-mail))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
968 (define-key map [menu-bar mail lambda]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
969 '("----"))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
970 (define-key map [menu-bar mail continue]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
971 '("Continue" . rmail-continue))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
972 (define-key map [menu-bar mail resend]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
973 '("Re-send..." . rmail-resend))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
974 (define-key map [menu-bar mail forward]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
975 '("Forward" . rmail-forward))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
976 (define-key map [menu-bar mail retry]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
977 '("Retry" . rmail-retry-failure))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
978 (define-key map [menu-bar mail reply]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
979 '("Reply" . rmail-reply))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
980 (define-key map [menu-bar mail mail]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
981 '("Mail" . rmail-mail))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
982 (define-key map [menu-bar delete]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
983 (cons "Delete" (make-sparse-keymap "Delete")))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
984 (define-key map [menu-bar delete expunge/save]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
985 '("Expunge/Save" . rmail-expunge-and-save))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
986 (define-key map [menu-bar delete expunge]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
987 '("Expunge" . rmail-expunge))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
988 (define-key map [menu-bar delete undelete]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
989 '("Undelete" . rmail-undelete-previous-message))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
990 (define-key map [menu-bar delete delete]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
991 '("Delete" . rmail-delete-forward))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
992 (define-key map [menu-bar move]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
993 (cons "Move" (make-sparse-keymap "Move")))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
994 (define-key map [menu-bar move search-back]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
995 '("Search Back..." . rmail-search-backwards))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
996 (define-key map [menu-bar move search]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
997 '("Search..." . rmail-search))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
998 (define-key map [menu-bar move previous]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
999 '("Previous Nondeleted" . rmail-previous-undeleted-message))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
1000 (define-key map [menu-bar move next]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
1001 '("Next Nondeleted" . rmail-next-undeleted-message))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
1002 (define-key map [menu-bar move last]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
1003 '("Last" . rmail-last-message))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
1004 (define-key map [menu-bar move first]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
1005 '("First" . rmail-first-message))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
1006 (define-key map [menu-bar move previous]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
1007 '("Previous" . rmail-previous-message))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
1008 (define-key map [menu-bar move next]
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
1009 '("Next" . rmail-next-message))
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
1010 map)
61c503e4cee5 (rmail-require-mime-maybe): Simplified.
Alex Schroeder <alex@gnu.org>
parents: 88248
diff changeset
1011 "Keymap for `rmail-mode'.")
3863
049283382a10 (rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3631
diff changeset
1012
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1013 ;; Rmail mode is suitable only for specially formatted data.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1014 (put 'rmail-mode 'mode-class 'special)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1015
8963
286aacffb920 (rmail-mode-kill-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8909
diff changeset
1016 (defun rmail-mode-kill-summary ()
286aacffb920 (rmail-mode-kill-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8909
diff changeset
1017 (if rmail-summary-buffer (kill-buffer rmail-summary-buffer)))
286aacffb920 (rmail-mode-kill-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8909
diff changeset
1018
1382
9b210c7d6c23 * rmail.el (rmail-mode): Make this autoload; we might find a file
Jim Blandy <jimb@redhat.com>
parents: 1372
diff changeset
1019 ;;;###autoload
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1020 (defun rmail-mode ()
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1021 "Rmail Mode is used by \\<rmail-mode-map>\\[rmail] for editing Rmail files.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1022 All normal editing commands are turned off.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1023 Instead, these commands are available:
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1024
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1025 \\[rmail-beginning-of-message] Move point to front of this message.
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1026 \\[rmail-end-of-message] Move point to bottom of this message.
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1027 \\[scroll-up] Scroll to next screen of this message.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1028 \\[scroll-down] Scroll to previous screen of this message.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1029 \\[rmail-next-undeleted-message] Move to Next non-deleted message.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1030 \\[rmail-previous-undeleted-message] Move to Previous non-deleted message.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1031 \\[rmail-next-message] Move to Next message whether deleted or not.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1032 \\[rmail-previous-message] Move to Previous message whether deleted or not.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1033 \\[rmail-first-message] Move to the first message in Rmail file.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1034 \\[rmail-last-message] Move to the last message in Rmail file.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1035 \\[rmail-show-message] Jump to message specified by numeric position in file.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1036 \\[rmail-search] Search for string and show message it is found in.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1037 \\[rmail-delete-forward] Delete this message, move to next nondeleted.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1038 \\[rmail-delete-backward] Delete this message, move to previous nondeleted.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1039 \\[rmail-undelete-previous-message] Undelete message. Tries current message, then earlier messages
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1040 till a deleted message is found.
2076
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
1041 \\[rmail-edit-current-message] Edit the current message. \\[rmail-cease-edit] to return to Rmail.
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1042 \\[rmail-expunge] Expunge deleted messages.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1043 \\[rmail-expunge-and-save] Expunge and save the file.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1044 \\[rmail-quit] Quit Rmail: expunge, save, then switch to another buffer.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1045 \\[save-buffer] Save without expunging.
2423
5dd3b7338f71 (rmail): Don't use mbox as inbox by default.
Richard M. Stallman <rms@gnu.org>
parents: 2076
diff changeset
1046 \\[rmail-get-new-mail] Move new mail from system spool directory into this file.
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1047 \\[rmail-mail] Mail a message (same as \\[mail-other-window]).
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1048 \\[rmail-continue] Continue composing outgoing message started before.
2076
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
1049 \\[rmail-reply] Reply to this message. Like \\[rmail-mail] but initializes some fields.
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
1050 \\[rmail-retry-failure] Send this message again. Used on a mailer failure message.
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1051 \\[rmail-forward] Forward this message to another user.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1052 \\[rmail-output-to-rmail-file] Output this message to an Rmail file (append it).
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1053 \\[rmail-output] Output this message to a Unix-format mail file (append it).
21405
4370dfe3cfb3 Doc fix in rmail-mode.
Stephen Eglen <stephen@gnu.org>
parents: 21398
diff changeset
1054 \\[rmail-output-body-to-file] Save message body to a file. Default filename comes from Subject line.
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1055 \\[rmail-input] Input Rmail file. Run Rmail on that file.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1056 \\[rmail-add-label] Add label to message. It will be displayed in the mode line.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1057 \\[rmail-kill-label] Kill label. Remove a label from current message.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1058 \\[rmail-next-labeled-message] Move to Next message with specified label
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1059 (label defaults to last one specified).
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1060 Standard labels: filed, unseen, answered, forwarded, deleted.
2076
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
1061 Any other label is present only if you add it with \\[rmail-add-label].
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1062 \\[rmail-previous-labeled-message] Move to Previous message with specified label
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1063 \\[rmail-summary] Show headers buffer, with a one line summary of each message.
2076
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
1064 \\[rmail-summary-by-labels] Summarize only messages with particular label(s).
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
1065 \\[rmail-summary-by-recipients] Summarize only messages with particular recipient(s).
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
1066 \\[rmail-summary-by-regexp] Summarize only messages with particular regexp(s).
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
1067 \\[rmail-summary-by-topic] Summarize only messages with subject line regexp(s).
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
1068 \\[rmail-toggle-header] Toggle display of complete header."
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1069 (interactive)
37787
2022cee16ea5 (rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 37611
diff changeset
1070 (let ((finding-rmail-file (not (eq major-mode 'rmail-mode))))
2022cee16ea5 (rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 37611
diff changeset
1071 (rmail-mode-2)
2022cee16ea5 (rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 37611
diff changeset
1072 (when (and finding-rmail-file
2022cee16ea5 (rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 37611
diff changeset
1073 (null coding-system-for-read)
2022cee16ea5 (rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 37611
diff changeset
1074 default-enable-multibyte-characters)
2022cee16ea5 (rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 37611
diff changeset
1075 (let ((rmail-enable-multibyte t))
2022cee16ea5 (rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 37611
diff changeset
1076 (rmail-require-mime-maybe)
2022cee16ea5 (rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 37611
diff changeset
1077 (goto-char (point-max))
2022cee16ea5 (rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 37611
diff changeset
1078 (set-buffer-multibyte t)))
2022cee16ea5 (rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 37611
diff changeset
1079 (rmail-show-message rmail-total-messages)
2022cee16ea5 (rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 37611
diff changeset
1080 (when finding-rmail-file
2022cee16ea5 (rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 37611
diff changeset
1081 (when rmail-display-summary
2022cee16ea5 (rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 37611
diff changeset
1082 (rmail-summary))
2022cee16ea5 (rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 37611
diff changeset
1083 (rmail-construct-io-menu))
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1084 (run-mode-hooks 'rmail-mode-hook)))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1085
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1086 (defun rmail-mode-2 ()
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1087 (kill-all-local-variables)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1088 (rmail-mode-1)
21435
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
1089 (rmail-perm-variables)
16431
65d3768ccb05 (rmail): Run rmail-mail-hook last.
Richard M. Stallman <rms@gnu.org>
parents: 16349
diff changeset
1090 (rmail-variables))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1091
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1092 (defun rmail-mode-1 ()
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1093 (setq major-mode 'rmail-mode)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1094 (setq mode-name "RMAIL")
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1095 (setq buffer-read-only t)
5330
bd122ee8c338 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 5325
diff changeset
1096 ;; No need to auto save RMAIL files in normal circumstances
bd122ee8c338 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 5325
diff changeset
1097 ;; because they contain no info except attribute changes
bd122ee8c338 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 5325
diff changeset
1098 ;; and deletion of messages.
bd122ee8c338 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 5325
diff changeset
1099 ;; The one exception is when messages are copied into an Rmail mode buffer.
bd122ee8c338 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 5325
diff changeset
1100 ;; rmail-output-to-rmail-file enables auto save when you do that.
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1101 (setq buffer-auto-save-file-name nil)
19536
e0cd56c5b0ac (rmail-mode-1): Update the value for mode-line-modified.
Richard M. Stallman <rms@gnu.org>
parents: 19509
diff changeset
1102 (setq mode-line-modified "--")
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1103 (use-local-map rmail-mode-map)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1104 (set-syntax-table text-mode-syntax-table)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1105 (setq local-abbrev-table text-mode-abbrev-table))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1106
21435
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
1107 ;; Set up the permanent locals associated with an Rmail file.
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
1108 (defun rmail-perm-variables ()
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1109 (make-local-variable 'rmail-last-label)
2076
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
1110 (make-local-variable 'rmail-last-regexp)
17093
f8584d52dd48 (rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents: 17065
diff changeset
1111 (make-local-variable 'rmail-buffer)
f8584d52dd48 (rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents: 17065
diff changeset
1112 (setq rmail-buffer (current-buffer))
f8584d52dd48 (rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents: 17065
diff changeset
1113 (make-local-variable 'rmail-view-buffer)
f8584d52dd48 (rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents: 17065
diff changeset
1114 (setq rmail-view-buffer rmail-buffer)
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1115 (make-local-variable 'rmail-summary-buffer)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1116 (make-local-variable 'rmail-current-message)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1117 (make-local-variable 'rmail-total-messages)
7061
9f27a57b7662 (rmail-show-message): Use overlays, not text properties.
Richard M. Stallman <rms@gnu.org>
parents: 7051
diff changeset
1118 (make-local-variable 'rmail-overlay-list)
9f27a57b7662 (rmail-show-message): Use overlays, not text properties.
Richard M. Stallman <rms@gnu.org>
parents: 7051
diff changeset
1119 (setq rmail-overlay-list nil)
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1120 (make-local-variable 'rmail-inbox-list)
88232
0e6d3b2196c4 (rmail-inbox-alist): New variable.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88226
diff changeset
1121 (setq rmail-inbox-list (rmail-get-file-inbox-list))
3540
c14c0f2954fd (rmail-variables): Default rmail-inbox-list here.
Richard M. Stallman <rms@gnu.org>
parents: 3484
diff changeset
1122 ;; Provide default set of inboxes for primary mail file ~/RMAIL.
c14c0f2954fd (rmail-variables): Default rmail-inbox-list here.
Richard M. Stallman <rms@gnu.org>
parents: 3484
diff changeset
1123 (and (null rmail-inbox-list)
4010
735b8dc6cdd2 (rmail-variables): Compare truename as well as given name
Richard M. Stallman <rms@gnu.org>
parents: 3931
diff changeset
1124 (or (equal buffer-file-name (expand-file-name rmail-file-name))
5192
3fb665ab94c1 (rmail-variables): Abbreviate truename for comparison.
Richard M. Stallman <rms@gnu.org>
parents: 5047
diff changeset
1125 (equal buffer-file-truename
3fb665ab94c1 (rmail-variables): Abbreviate truename for comparison.
Richard M. Stallman <rms@gnu.org>
parents: 5047
diff changeset
1126 (abbreviate-file-name (file-truename rmail-file-name))))
3540
c14c0f2954fd (rmail-variables): Default rmail-inbox-list here.
Richard M. Stallman <rms@gnu.org>
parents: 3484
diff changeset
1127 (setq rmail-inbox-list
c14c0f2954fd (rmail-variables): Default rmail-inbox-list here.
Richard M. Stallman <rms@gnu.org>
parents: 3484
diff changeset
1128 (or rmail-primary-inbox-list
c14c0f2954fd (rmail-variables): Default rmail-inbox-list here.
Richard M. Stallman <rms@gnu.org>
parents: 3484
diff changeset
1129 (list (or (getenv "MAIL")
c14c0f2954fd (rmail-variables): Default rmail-inbox-list here.
Richard M. Stallman <rms@gnu.org>
parents: 3484
diff changeset
1130 (concat rmail-spool-directory
5913
3d155c2636bf (rmail-variables, rmail-insert-inbox-text): Change user-original-login-name to
Karl Heuer <kwzh@gnu.org>
parents: 5860
diff changeset
1131 (user-login-name)))))))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1132 (make-local-variable 'rmail-keywords)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1133 ;; this gets generated as needed
7563
4b15aee0be13 (rmail-variables): Don't add any permanent-local props.
Richard M. Stallman <rms@gnu.org>
parents: 7435
diff changeset
1134 (setq rmail-keywords nil))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1135
21435
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
1136 ;; Set up the non-permanent locals associated with Rmail mode.
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
1137 (defun rmail-variables ()
22045
2c21cfc02a7f (rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents: 21864
diff changeset
1138 (make-local-variable 'save-buffer-coding-system)
2c21cfc02a7f (rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents: 21864
diff changeset
1139 ;; If we don't already have a value for save-buffer-coding-system,
2c21cfc02a7f (rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents: 21864
diff changeset
1140 ;; get it from buffer-file-coding-system, and clear that
2c21cfc02a7f (rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents: 21864
diff changeset
1141 ;; because it should be determined in rmail-show-message.
2c21cfc02a7f (rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents: 21864
diff changeset
1142 (unless save-buffer-coding-system
2c21cfc02a7f (rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents: 21864
diff changeset
1143 (setq save-buffer-coding-system (or buffer-file-coding-system 'undecided))
2c21cfc02a7f (rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents: 21864
diff changeset
1144 (setq buffer-file-coding-system nil))
21435
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
1145 ;; Don't let a local variables list in a message cause confusion.
22474
927f6e2f680b (rmail-variables): Locally bind
Richard M. Stallman <rms@gnu.org>
parents: 22435
diff changeset
1146 (make-local-variable 'local-enable-local-variables)
927f6e2f680b (rmail-variables): Locally bind
Richard M. Stallman <rms@gnu.org>
parents: 22435
diff changeset
1147 (setq local-enable-local-variables nil)
21435
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
1148 (make-local-variable 'revert-buffer-function)
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
1149 (setq revert-buffer-function 'rmail-revert)
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
1150 (make-local-variable 'font-lock-defaults)
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
1151 (setq font-lock-defaults
22045
2c21cfc02a7f (rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents: 21864
diff changeset
1152 '(rmail-font-lock-keywords
49064
d9fb715ab692 (rmail-font-lock-keywords): Discard code to match both cases.
Richard M. Stallman <rms@gnu.org>
parents: 49008
diff changeset
1153 t t nil nil
22045
2c21cfc02a7f (rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents: 21864
diff changeset
1154 (font-lock-maximum-size . nil)
2c21cfc02a7f (rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents: 21864
diff changeset
1155 (font-lock-fontify-buffer-function . rmail-fontify-buffer-function)
2c21cfc02a7f (rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents: 21864
diff changeset
1156 (font-lock-unfontify-buffer-function . rmail-unfontify-buffer-function)
2c21cfc02a7f (rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents: 21864
diff changeset
1157 (font-lock-inhibit-thing-lock . (lazy-lock-mode fast-lock-mode))))
21435
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
1158 (make-local-variable 'require-final-newline)
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
1159 (setq require-final-newline nil)
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
1160 (make-local-variable 'version-control)
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
1161 (setq version-control 'never)
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
1162 (make-local-variable 'kill-buffer-hook)
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
1163 (add-hook 'kill-buffer-hook 'rmail-mode-kill-summary)
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
1164 (make-local-variable 'file-precious-flag)
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1165 (setq file-precious-flag t)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1166 (make-local-variable 'desktop-save-buffer)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1167 (setq desktop-save-buffer t))
21435
41fa600fadc4 (rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents: 21405
diff changeset
1168
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1169 ;; Handle M-x revert-buffer done in an rmail-mode buffer.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1170 (defun rmail-revert (arg noconfirm)
37956
b59847354241 (rmail-revert): Modify to work in
Gerd Moellmann <gerd@gnu.org>
parents: 37839
diff changeset
1171 (set-buffer rmail-buffer)
22724
6a6568360d51 (rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents: 22610
diff changeset
1172 (let* ((revert-buffer-function (default-value 'revert-buffer-function))
6a6568360d51 (rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents: 22610
diff changeset
1173 (rmail-enable-multibyte enable-multibyte-characters)
6a6568360d51 (rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents: 22610
diff changeset
1174 ;; See similar code in `rmail'.
6a6568360d51 (rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents: 22610
diff changeset
1175 (coding-system-for-read (and rmail-enable-multibyte 'raw-text)))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1176 ;; Call our caller again, but this time it does the default thing.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1177 (if (revert-buffer arg noconfirm)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1178 ;; If the user said "yes", and we changed something,
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1179 ;; reparse the messages.
20681
4a46ac370fc8 (rmail): Don't bind enable-multibyte-characters;
Richard M. Stallman <rms@gnu.org>
parents: 20662
diff changeset
1180 (progn
37956
b59847354241 (rmail-revert): Modify to work in
Gerd Moellmann <gerd@gnu.org>
parents: 37839
diff changeset
1181 (set-buffer rmail-buffer)
b59847354241 (rmail-revert): Modify to work in
Gerd Moellmann <gerd@gnu.org>
parents: 37839
diff changeset
1182 (rmail-mode-2)
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1183
22724
6a6568360d51 (rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents: 22610
diff changeset
1184 ;; We have read the file as raw-text, so the buffer is set to
6a6568360d51 (rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents: 22610
diff changeset
1185 ;; unibyte. Make it multibyte if necessary.
6a6568360d51 (rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents: 22610
diff changeset
1186 (if (and rmail-enable-multibyte
6a6568360d51 (rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents: 22610
diff changeset
1187 (not enable-multibyte-characters))
6a6568360d51 (rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents: 22610
diff changeset
1188 (set-buffer-multibyte t))
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1189 (rmail-initialize-messages)
22724
6a6568360d51 (rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents: 22610
diff changeset
1190 (rmail-show-message rmail-total-messages)
6a6568360d51 (rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents: 22610
diff changeset
1191 (run-hooks 'rmail-mode-hook)))))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1192
88232
0e6d3b2196c4 (rmail-inbox-alist): New variable.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88226
diff changeset
1193 (defun rmail-get-file-inbox-list ()
0e6d3b2196c4 (rmail-inbox-alist): New variable.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88226
diff changeset
1194 "Return a list of inbox files for this buffer."
0e6d3b2196c4 (rmail-inbox-alist): New variable.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88226
diff changeset
1195 (let* ((filename (expand-file-name (buffer-file-name)))
0e6d3b2196c4 (rmail-inbox-alist): New variable.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88226
diff changeset
1196 (inboxes (cdr (or (assoc filename rmail-inbox-alist)
0e6d3b2196c4 (rmail-inbox-alist): New variable.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88226
diff changeset
1197 (assoc (abbreviate-file-name filename)
0e6d3b2196c4 (rmail-inbox-alist): New variable.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88226
diff changeset
1198 rmail-inbox-alist))))
0e6d3b2196c4 (rmail-inbox-alist): New variable.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88226
diff changeset
1199 (list nil))
0e6d3b2196c4 (rmail-inbox-alist): New variable.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88226
diff changeset
1200 (dolist (i inboxes)
0e6d3b2196c4 (rmail-inbox-alist): New variable.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88226
diff changeset
1201 (when (file-name-absolute-p i)
0e6d3b2196c4 (rmail-inbox-alist): New variable.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88226
diff changeset
1202 (push (expand-file-name i) list)))
0e6d3b2196c4 (rmail-inbox-alist): New variable.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88226
diff changeset
1203 (nreverse list)))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1204
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1205 ;;; mbox: ready
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1206 (defun rmail-expunge-and-save ()
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1207 "Expunge and save RMAIL file."
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1208 (interactive)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1209 (rmail-expunge)
5860
ba1ff614b8f2 (rmail-expunge-and-save): Mark summary buffer as unmodified.
Karl Heuer <kwzh@gnu.org>
parents: 5850
diff changeset
1210 (save-buffer)
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1211 (rmail-display-summary-maybe))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1212
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1213 ;;; mbox: ready
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1214 (defun rmail-display-summary-maybe ()
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1215 "If a summary buffer exists then make sure it is updated and displayed."
5860
ba1ff614b8f2 (rmail-expunge-and-save): Mark summary buffer as unmodified.
Karl Heuer <kwzh@gnu.org>
parents: 5850
diff changeset
1216 (if (rmail-summary-exists)
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1217 (let ((current-message rmail-current-message))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1218 (rmail-select-summary
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1219 (rmail-summary-goto-msg current-message)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1220 (rmail-summary-rmail-update)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1221 (set-buffer-modified-p nil)))))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1222
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1223 ;;; mbox: ready
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1224 (defun rmail-quit ()
24110
ec89235ef2a6 (rmail-quit): run `rmail-quit-hook'.
Richard M. Stallman <rms@gnu.org>
parents: 23969
diff changeset
1225 "Quit out of RMAIL.
ec89235ef2a6 (rmail-quit): run `rmail-quit-hook'.
Richard M. Stallman <rms@gnu.org>
parents: 23969
diff changeset
1226 Hook `rmail-quit-hook' is run after expunging."
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1227 (interactive)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1228 (rmail-expunge-and-save)
24110
ec89235ef2a6 (rmail-quit): run `rmail-quit-hook'.
Richard M. Stallman <rms@gnu.org>
parents: 23969
diff changeset
1229 (when (boundp 'rmail-quit-hook)
ec89235ef2a6 (rmail-quit): run `rmail-quit-hook'.
Richard M. Stallman <rms@gnu.org>
parents: 23969
diff changeset
1230 (run-hooks 'rmail-quit-hook))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1231 ;; Don't switch to the summary buffer even if it was recently visible.
21100
79e564f91938 (rmail-next-same-subject): Ignore leading and
Richard M. Stallman <rms@gnu.org>
parents: 20984
diff changeset
1232 (when rmail-summary-buffer
79e564f91938 (rmail-next-same-subject): Ignore leading and
Richard M. Stallman <rms@gnu.org>
parents: 20984
diff changeset
1233 (replace-buffer-in-windows rmail-summary-buffer)
79e564f91938 (rmail-next-same-subject): Ignore leading and
Richard M. Stallman <rms@gnu.org>
parents: 20984
diff changeset
1234 (bury-buffer rmail-summary-buffer))
37611
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
1235 (if rmail-enable-mime
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
1236 (let ((obuf rmail-buffer)
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
1237 (ovbuf rmail-view-buffer))
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
1238 (set-buffer rmail-view-buffer)
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
1239 (quit-window)
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
1240 (replace-buffer-in-windows ovbuf)
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
1241 (replace-buffer-in-windows obuf)
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
1242 (bury-buffer obuf))
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
1243 (let ((obuf (current-buffer)))
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
1244 (quit-window)
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
1245 (replace-buffer-in-windows obuf))))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1246
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1247 ;;; mbox: ready
10970
c71d4c1319e4 (rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10815
diff changeset
1248 (defun rmail-bury ()
c71d4c1319e4 (rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10815
diff changeset
1249 "Bury current Rmail buffer and its summary buffer."
c71d4c1319e4 (rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10815
diff changeset
1250 (interactive)
c71d4c1319e4 (rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10815
diff changeset
1251 ;; This let var was called rmail-buffer, but that interfered
c71d4c1319e4 (rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10815
diff changeset
1252 ;; with the buffer-local var used in summary buffers.
c71d4c1319e4 (rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10815
diff changeset
1253 (let ((buffer-to-bury (current-buffer)))
c71d4c1319e4 (rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10815
diff changeset
1254 (if (rmail-summary-exists)
c71d4c1319e4 (rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10815
diff changeset
1255 (let (window)
c71d4c1319e4 (rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10815
diff changeset
1256 (while (setq window (get-buffer-window rmail-summary-buffer))
21100
79e564f91938 (rmail-next-same-subject): Ignore leading and
Richard M. Stallman <rms@gnu.org>
parents: 20984
diff changeset
1257 (quit-window nil window))
10970
c71d4c1319e4 (rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10815
diff changeset
1258 (bury-buffer rmail-summary-buffer)))
21100
79e564f91938 (rmail-next-same-subject): Ignore leading and
Richard M. Stallman <rms@gnu.org>
parents: 20984
diff changeset
1259 (quit-window)))
10970
c71d4c1319e4 (rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10815
diff changeset
1260
88148
658c777d9be6 (rmail-message-vector, rmail-deleted-vector)
Richard M. Stallman <rms@gnu.org>
parents: 88144
diff changeset
1261 ;;;??? Fails to add descriptor for new message.
88133
aa85e6f55862 (rmail-msg-restore-non-pruned-header, rmail-msg-prune-header): Use the
Paul Reilly <pmr@pajato.com>
parents: 88125
diff changeset
1262 ;;; mbox: ready
10970
c71d4c1319e4 (rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10815
diff changeset
1263 (defun rmail-duplicate-message ()
c71d4c1319e4 (rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10815
diff changeset
1264 "Create a duplicated copy of the current message.
c71d4c1319e4 (rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10815
diff changeset
1265 The duplicate copy goes into the Rmail file just after the
c71d4c1319e4 (rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10815
diff changeset
1266 original copy."
c71d4c1319e4 (rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10815
diff changeset
1267 (interactive)
c71d4c1319e4 (rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10815
diff changeset
1268 (widen)
c71d4c1319e4 (rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10815
diff changeset
1269 (let ((buffer-read-only nil)
c71d4c1319e4 (rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10815
diff changeset
1270 (number rmail-current-message)
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1271 (string (buffer-substring (rmail-desc-get-start rmail-current-message)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1272 (rmail-desc-get-end rmail-current-message))))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1273 (goto-char (rmail-desc-get-end rmail-current-message))
10970
c71d4c1319e4 (rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10815
diff changeset
1274 (insert string)
c71d4c1319e4 (rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10815
diff changeset
1275 (rmail-show-message number)
c71d4c1319e4 (rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10815
diff changeset
1276 (message "Message duplicated")))
c71d4c1319e4 (rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10815
diff changeset
1277
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1278 ;;;###autoload
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1279 (defun rmail-input (filename)
2076
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
1280 "Run Rmail on file FILENAME."
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1281 (interactive "FRun rmail on RMAIL file: ")
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1282 (rmail filename))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1283
16241
3c84b8d28902 (rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents: 15879
diff changeset
1284
3c84b8d28902 (rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents: 15879
diff changeset
1285 ;; This used to scan subdirectories recursively, but someone pointed out
3c84b8d28902 (rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents: 15879
diff changeset
1286 ;; that if the user wants that, person can put all the files in one dir.
3c84b8d28902 (rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents: 15879
diff changeset
1287 ;; And the recursive scan was slow. So I took it out.
3c84b8d28902 (rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents: 15879
diff changeset
1288 ;; rms, Sep 1996.
8909
d9c10eb46ce9 Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
parents: 8875
diff changeset
1289 (defun rmail-find-all-files (start)
16241
3c84b8d28902 (rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents: 15879
diff changeset
1290 "Return list of file in dir START that match `rmail-secondary-file-regexp'."
8909
d9c10eb46ce9 Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
parents: 8875
diff changeset
1291 (if (file-accessible-directory-p start)
9449
d11a719d7bde (rmail-find-all-files): Fix several errors and make faster.
Richard M. Stallman <rms@gnu.org>
parents: 9431
diff changeset
1292 ;; Don't sort here.
16241
3c84b8d28902 (rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents: 15879
diff changeset
1293 (let* ((case-fold-search t)
3c84b8d28902 (rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents: 15879
diff changeset
1294 (files (directory-files start t rmail-secondary-file-regexp)))
9449
d11a719d7bde (rmail-find-all-files): Fix several errors and make faster.
Richard M. Stallman <rms@gnu.org>
parents: 9431
diff changeset
1295 ;; Sort here instead of in directory-files
d11a719d7bde (rmail-find-all-files): Fix several errors and make faster.
Richard M. Stallman <rms@gnu.org>
parents: 9431
diff changeset
1296 ;; because this list is usually much shorter.
16241
3c84b8d28902 (rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents: 15879
diff changeset
1297 (sort files 'string<))))
7321
f8ee542dbe80 (rmail-input-menu): Don't call expand-file-name.
Richard M. Stallman <rms@gnu.org>
parents: 7298
diff changeset
1298
8909
d9c10eb46ce9 Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
parents: 8875
diff changeset
1299 (defun rmail-list-to-menu (menu-name l action &optional full-name)
d9c10eb46ce9 Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
parents: 8875
diff changeset
1300 (let ((menu (make-sparse-keymap menu-name)))
d9c10eb46ce9 Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
parents: 8875
diff changeset
1301 (mapcar
d9c10eb46ce9 Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
parents: 8875
diff changeset
1302 (function (lambda (item)
10971
d7f0852f800f (rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents: 10970
diff changeset
1303 (let (command)
d7f0852f800f (rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents: 10970
diff changeset
1304 (if (consp item)
d7f0852f800f (rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents: 10970
diff changeset
1305 (progn
d7f0852f800f (rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents: 10970
diff changeset
1306 (setq command
45144
30db00c75dbf (rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents: 44141
diff changeset
1307 (rmail-list-to-menu (car item) (cdr item)
30db00c75dbf (rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents: 44141
diff changeset
1308 action
10971
d7f0852f800f (rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents: 10970
diff changeset
1309 (if full-name
d7f0852f800f (rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents: 10970
diff changeset
1310 (concat full-name "/"
d7f0852f800f (rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents: 10970
diff changeset
1311 (car item))
d7f0852f800f (rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents: 10970
diff changeset
1312 (car item))))
d7f0852f800f (rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents: 10970
diff changeset
1313 (setq name (car item)))
8909
d9c10eb46ce9 Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
parents: 8875
diff changeset
1314 (progn
10971
d7f0852f800f (rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents: 10970
diff changeset
1315 (setq name item)
45144
30db00c75dbf (rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents: 44141
diff changeset
1316 (setq command
10971
d7f0852f800f (rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents: 10970
diff changeset
1317 (list 'lambda () '(interactive)
d7f0852f800f (rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents: 10970
diff changeset
1318 (list action
45144
30db00c75dbf (rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents: 44141
diff changeset
1319 (expand-file-name
10971
d7f0852f800f (rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents: 10970
diff changeset
1320 (if full-name
d7f0852f800f (rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents: 10970
diff changeset
1321 (concat full-name "/" item)
d7f0852f800f (rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents: 10970
diff changeset
1322 item)
d7f0852f800f (rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents: 10970
diff changeset
1323 rmail-secondary-file-directory))))))
d7f0852f800f (rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents: 10970
diff changeset
1324 (define-key menu (vector (intern name))
d7f0852f800f (rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents: 10970
diff changeset
1325 (cons name command)))))
9449
d11a719d7bde (rmail-find-all-files): Fix several errors and make faster.
Richard M. Stallman <rms@gnu.org>
parents: 9431
diff changeset
1326 (reverse l))
8909
d9c10eb46ce9 Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
parents: 8875
diff changeset
1327 menu))
45144
30db00c75dbf (rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents: 44141
diff changeset
1328
9449
d11a719d7bde (rmail-find-all-files): Fix several errors and make faster.
Richard M. Stallman <rms@gnu.org>
parents: 9431
diff changeset
1329 ;; This command is always "disabled" when it appears in a menu.
d11a719d7bde (rmail-find-all-files): Fix several errors and make faster.
Richard M. Stallman <rms@gnu.org>
parents: 9431
diff changeset
1330 (put 'rmail-disable-menu 'menu-enable ''nil)
d11a719d7bde (rmail-find-all-files): Fix several errors and make faster.
Richard M. Stallman <rms@gnu.org>
parents: 9431
diff changeset
1331
8909
d9c10eb46ce9 Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
parents: 8875
diff changeset
1332 (defun rmail-construct-io-menu ()
d9c10eb46ce9 Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
parents: 8875
diff changeset
1333 (let ((files (rmail-find-all-files rmail-secondary-file-directory)))
9449
d11a719d7bde (rmail-find-all-files): Fix several errors and make faster.
Richard M. Stallman <rms@gnu.org>
parents: 9431
diff changeset
1334 (if files
8909
d9c10eb46ce9 Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
parents: 8875
diff changeset
1335 (progn
d9c10eb46ce9 Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
parents: 8875
diff changeset
1336 (define-key rmail-mode-map [menu-bar classify input-menu]
45144
30db00c75dbf (rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents: 44141
diff changeset
1337 (cons "Input Rmail File"
30db00c75dbf (rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents: 44141
diff changeset
1338 (rmail-list-to-menu "Input Rmail File"
9449
d11a719d7bde (rmail-find-all-files): Fix several errors and make faster.
Richard M. Stallman <rms@gnu.org>
parents: 9431
diff changeset
1339 files
8909
d9c10eb46ce9 Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
parents: 8875
diff changeset
1340 'rmail-input)))
d9c10eb46ce9 Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
parents: 8875
diff changeset
1341 (define-key rmail-mode-map [menu-bar classify output-menu]
45144
30db00c75dbf (rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents: 44141
diff changeset
1342 (cons "Output Rmail File"
30db00c75dbf (rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents: 44141
diff changeset
1343 (rmail-list-to-menu "Output Rmail File"
9449
d11a719d7bde (rmail-find-all-files): Fix several errors and make faster.
Richard M. Stallman <rms@gnu.org>
parents: 9431
diff changeset
1344 files
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1345 'rmail-output))))
9449
d11a719d7bde (rmail-find-all-files): Fix several errors and make faster.
Richard M. Stallman <rms@gnu.org>
parents: 9431
diff changeset
1346
d11a719d7bde (rmail-find-all-files): Fix several errors and make faster.
Richard M. Stallman <rms@gnu.org>
parents: 9431
diff changeset
1347 (define-key rmail-mode-map [menu-bar classify input-menu]
d11a719d7bde (rmail-find-all-files): Fix several errors and make faster.
Richard M. Stallman <rms@gnu.org>
parents: 9431
diff changeset
1348 '("Input Rmail File" . rmail-disable-menu))
d11a719d7bde (rmail-find-all-files): Fix several errors and make faster.
Richard M. Stallman <rms@gnu.org>
parents: 9431
diff changeset
1349 (define-key rmail-mode-map [menu-bar classify output-menu]
d11a719d7bde (rmail-find-all-files): Fix several errors and make faster.
Richard M. Stallman <rms@gnu.org>
parents: 9431
diff changeset
1350 '("Output Rmail File" . rmail-disable-menu)))))
6408
185b1fd3a525 (rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 6389
diff changeset
1351
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1352
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1353 ;;;; *** Rmail input ***
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1354
88253
86d5137811c7 (rmail-delete-inbox-files): New function factored out of
Henrik Enberg <henrik.enberg@telia.com>
parents: 88251
diff changeset
1355 (defun rmail-get-inbox-files ()
88248
7133ca28db03 (rmail-get-new-mail): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88246
diff changeset
1356 "Return all files from `rmail-inbox-list' without name conflicts.
7133ca28db03 (rmail-get-new-mail): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88246
diff changeset
1357 A conflict happens when two inbox file names have the same name
7133ca28db03 (rmail-get-new-mail): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88246
diff changeset
1358 according to `file-name-nondirectory'."
88246
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
1359 (let (files last-names)
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
1360 (catch 'conflict
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
1361 (dolist (file rmail-inbox-list)
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
1362 (if (member (file-name-nondirectory file) last-names)
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
1363 (throw 'conflict t)
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
1364 (push file files))
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
1365 (push (file-name-nondirectory file) last-names)))
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
1366 (nreverse files)))
88203
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1367
88253
86d5137811c7 (rmail-delete-inbox-files): New function factored out of
Henrik Enberg <henrik.enberg@telia.com>
parents: 88251
diff changeset
1368 (defun rmail-delete-inbox-files (files)
86d5137811c7 (rmail-delete-inbox-files): New function factored out of
Henrik Enberg <henrik.enberg@telia.com>
parents: 88251
diff changeset
1369 "Delete all files given in FILES.
86d5137811c7 (rmail-delete-inbox-files): New function factored out of
Henrik Enberg <henrik.enberg@telia.com>
parents: 88251
diff changeset
1370 If delete fails, truncate them to zero length."
86d5137811c7 (rmail-delete-inbox-files): New function factored out of
Henrik Enberg <henrik.enberg@telia.com>
parents: 88251
diff changeset
1371 (dolist (file files)
86d5137811c7 (rmail-delete-inbox-files): New function factored out of
Henrik Enberg <henrik.enberg@telia.com>
parents: 88251
diff changeset
1372 (condition-case nil
86d5137811c7 (rmail-delete-inbox-files): New function factored out of
Henrik Enberg <henrik.enberg@telia.com>
parents: 88251
diff changeset
1373 ;; First, try deleting.
86d5137811c7 (rmail-delete-inbox-files): New function factored out of
Henrik Enberg <henrik.enberg@telia.com>
parents: 88251
diff changeset
1374 (condition-case nil
86d5137811c7 (rmail-delete-inbox-files): New function factored out of
Henrik Enberg <henrik.enberg@telia.com>
parents: 88251
diff changeset
1375 (delete-file file)
86d5137811c7 (rmail-delete-inbox-files): New function factored out of
Henrik Enberg <henrik.enberg@telia.com>
parents: 88251
diff changeset
1376 ;; If we can't delete it, truncate it.
86d5137811c7 (rmail-delete-inbox-files): New function factored out of
Henrik Enberg <henrik.enberg@telia.com>
parents: 88251
diff changeset
1377 (file-error (write-region (point) (point) file)))
86d5137811c7 (rmail-delete-inbox-files): New function factored out of
Henrik Enberg <henrik.enberg@telia.com>
parents: 88251
diff changeset
1378 (file-error nil))))
86d5137811c7 (rmail-delete-inbox-files): New function factored out of
Henrik Enberg <henrik.enberg@telia.com>
parents: 88251
diff changeset
1379
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1380 (defun rmail-get-new-mail (&optional file-name)
88248
7133ca28db03 (rmail-get-new-mail): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88246
diff changeset
1381 "Move any new mail from this mail file's inbox files.
7133ca28db03 (rmail-get-new-mail): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88246
diff changeset
1382 The inbox files for the primary mail file are determined using
7133ca28db03 (rmail-get-new-mail): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88246
diff changeset
1383 various means when setting up the buffer. The list of inbox
7133ca28db03 (rmail-get-new-mail): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88246
diff changeset
1384 files are stored in `rmail-inbox-list'.
7133ca28db03 (rmail-get-new-mail): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88246
diff changeset
1385
7133ca28db03 (rmail-get-new-mail): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88246
diff changeset
1386 The most important variable that determines the value of this
7133ca28db03 (rmail-get-new-mail): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88246
diff changeset
1387 list is `rmail-inbox-alist' which lists the inbox files for any
7133ca28db03 (rmail-get-new-mail): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88246
diff changeset
1388 mail files you might be using.
7133ca28db03 (rmail-get-new-mail): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88246
diff changeset
1389
7133ca28db03 (rmail-get-new-mail): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88246
diff changeset
1390 If the above yields no inbox files, and if this is the primary
7133ca28db03 (rmail-get-new-mail): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88246
diff changeset
1391 mail file as determined by `rmail-file-name', the inbox lists
7133ca28db03 (rmail-get-new-mail): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88246
diff changeset
1392 otherwise defaults to `rmail-primary-inbox-list' if set, or the
7133ca28db03 (rmail-get-new-mail): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88246
diff changeset
1393 environment variable MAIL if set, or the user's mail file in
7133ca28db03 (rmail-get-new-mail): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88246
diff changeset
1394 `rmail-spool-directory'.
7133ca28db03 (rmail-get-new-mail): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88246
diff changeset
1395
7133ca28db03 (rmail-get-new-mail): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88246
diff changeset
1396 This is why, by default, no mail file has inbox files, except for
7133ca28db03 (rmail-get-new-mail): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88246
diff changeset
1397 the primary mail file ~/RMAIL, which gets its new mail from the
7133ca28db03 (rmail-get-new-mail): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88246
diff changeset
1398 mail spool.
7133ca28db03 (rmail-get-new-mail): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88246
diff changeset
1399
7133ca28db03 (rmail-get-new-mail): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88246
diff changeset
1400 You can also specify the file to get new mail from interactively.
7133ca28db03 (rmail-get-new-mail): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88246
diff changeset
1401 A prefix argument will read a file name and use that file as the
7133ca28db03 (rmail-get-new-mail): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88246
diff changeset
1402 inbox. Noninteractively, you can pass the inbox file name as an
7133ca28db03 (rmail-get-new-mail): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88246
diff changeset
1403 argument.
8701
f3567d21b4e9 (rmail-get-new-mail): Run rmail-get-new-mail-hook.
Richard M. Stallman <rms@gnu.org>
parents: 8591
diff changeset
1404
16908
fd99785417a5 (rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16772
diff changeset
1405 If the variable `rmail-preserve-inbox' is non-nil, new mail will
fd99785417a5 (rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16772
diff changeset
1406 always be left in inbox files rather than deleted.
fd99785417a5 (rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16772
diff changeset
1407
88248
7133ca28db03 (rmail-get-new-mail): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88246
diff changeset
1408 This function runs `rmail-get-new-mail-hook' before saving the
7133ca28db03 (rmail-get-new-mail): Doc.
Alex Schroeder <alex@gnu.org>
parents: 88246
diff changeset
1409 updated file. It returns t if it got any new messages."
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1410 (interactive
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1411 (list (if current-prefix-arg
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1412 (read-file-name "Get new mail from file: "))))
15549
212868acf99e (rmail-get-new-mail): Run rmail-before-get-new-mail-hook.
Richard M. Stallman <rms@gnu.org>
parents: 15547
diff changeset
1413 (run-hooks 'rmail-before-get-new-mail-hook)
11533
2d1e996c4359 (rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents: 11497
diff changeset
1414 ;; If the disk file has been changed from under us,
2d1e996c4359 (rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents: 11497
diff changeset
1415 ;; revert to it before we get new mail.
88200
845dd39e284d (rmail): Only call `rmail-show-message' if no new mail
Henrik Enberg <henrik.enberg@telia.com>
parents: 88198
diff changeset
1416 (unless (verify-visited-file-modtime (current-buffer))
845dd39e284d (rmail): Only call `rmail-show-message' if no new mail
Henrik Enberg <henrik.enberg@telia.com>
parents: 88198
diff changeset
1417 (find-file (buffer-file-name)))
37611
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
1418 (set-buffer rmail-buffer)
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1419 (widen)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1420 ;; Get rid of all undo records for this buffer.
88200
845dd39e284d (rmail): Only call `rmail-show-message' if no new mail
Henrik Enberg <henrik.enberg@telia.com>
parents: 88198
diff changeset
1421 (unless (eq buffer-undo-list t)
845dd39e284d (rmail): Only call `rmail-show-message' if no new mail
Henrik Enberg <henrik.enberg@telia.com>
parents: 88198
diff changeset
1422 (setq buffer-undo-list nil))
88253
86d5137811c7 (rmail-delete-inbox-files): New function factored out of
Henrik Enberg <henrik.enberg@telia.com>
parents: 88251
diff changeset
1423 (let ((files (if file-name (list file-name) (rmail-get-inbox-files)))
20943
d5e308b7879e (rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents: 20854
diff changeset
1424 (rmail-enable-multibyte (default-value 'enable-multibyte-characters))
88200
845dd39e284d (rmail): Only call `rmail-show-message' if no new mail
Henrik Enberg <henrik.enberg@telia.com>
parents: 88198
diff changeset
1425 found current-message)
88198
bc41cb3941cc (rmail-get-new-mail): Only call `rmail-show-message'
Henrik Enberg <henrik.enberg@telia.com>
parents: 88196
diff changeset
1426 (condition-case nil
20053
c315820510ba (rmail): Avoid showing message twice.
Karl Heuer <kwzh@gnu.org>
parents: 19674
diff changeset
1427 (progn
88203
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1428 (let ((opoint (point))
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1429 (new-messages 0)
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1430 (delete-files ())
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1431 ;; If buffer has not changed yet, and has not been saved yet,
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1432 ;; don't replace the old backup file now.
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1433 (make-backup-files (and make-backup-files (buffer-modified-p)))
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1434 (buffer-read-only nil)
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1435 ;; Don't make undo records for what we do in getting mail.
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1436 (buffer-undo-list t))
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1437 (save-excursion
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1438 (save-restriction
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1439 (goto-char (point-max))
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1440 (narrow-to-region (point) (point))
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1441 ;; Read in the contents of the inbox files, renaming
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1442 ;; them as necessary, and adding to the list of files
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1443 ;; to delete eventually.
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1444 (if file-name
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1445 (rmail-insert-inbox-text files nil)
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1446 (setq delete-files (rmail-insert-inbox-text files t)))
88253
86d5137811c7 (rmail-delete-inbox-files): New function factored out of
Henrik Enberg <henrik.enberg@telia.com>
parents: 88251
diff changeset
1447 ;; Process newly found messages and save them into the
86d5137811c7 (rmail-delete-inbox-files): New function factored out of
Henrik Enberg <henrik.enberg@telia.com>
parents: 88251
diff changeset
1448 ;; RMAIL file.
88203
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1449 (unless (equal (point-min) (point-max))
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1450 (setq new-messages (rmail-process-new-messages)
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1451 rmail-current-message (1+ rmail-total-messages)
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1452 rmail-total-messages (rmail-desc-get-count))
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1453 (run-hooks 'rmail-get-new-mail-hook)
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1454 (save-buffer))
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1455 ;; Delete the old files, now that the RMAIL file is
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1456 ;; saved.
88253
86d5137811c7 (rmail-delete-inbox-files): New function factored out of
Henrik Enberg <henrik.enberg@telia.com>
parents: 88251
diff changeset
1457 (rmail-delete-inbox-files delete-files)))
88203
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1458 (if (= new-messages 0)
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1459 (progn (goto-char opoint)
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1460 (when (or file-name rmail-inbox-list)
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1461 (message "(No new mail has arrived)")))
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1462 ;; Make the first unseen message the current message
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1463 ;; and update the summary buffer, if one exists.
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1464 (setq current-message (rmail-first-unseen-message))
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1465 (if (rmail-summary-exists)
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1466 (with-current-buffer rmail-summary-buffer
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1467 (rmail-update-summary)))
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1468 ;; Process the new messages for spam using the
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1469 ;; integrated spam filter. The spam filter can mark
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1470 ;; messages for deletion and can output a message.
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1471 (if rmail-use-spam-filter
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1472 ;; Loop through the new messages processing each
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1473 ;; message for spam.
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1474 (while (<= current-message rmail-total-messages)
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1475 (rmail-spam-filter current-message)
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1476 (setq current-message (1+ current-message))))
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1477
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1478 ;; Position the mail cursor again.
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1479 (setq current-message (rmail-first-unseen-message))
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1480 (if (rmail-summary-exists)
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1481 (with-current-buffer rmail-summary-buffer
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1482 (rmail-update-summary)
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1483 (rmail-summary-goto-msg current-message))
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1484 (rmail-show-message current-message))
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1485
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1486 ;; Run the after get new mail hook.
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1487 (run-hooks 'rmail-after-get-new-mail-hook)
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1488 (message "%d new message%s read"
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1489 new-messages (if (= 1 new-messages) "" "s"))
0afa819977c5 (rmail-get-inbox-list): New function.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88200
diff changeset
1490 (setq found t)))
88200
845dd39e284d (rmail): Only call `rmail-show-message' if no new mail
Henrik Enberg <henrik.enberg@telia.com>
parents: 88198
diff changeset
1491 found)
16241
3c84b8d28902 (rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents: 15879
diff changeset
1492 ;; Don't leave the buffer screwed up if we get a disk-full error.
88200
845dd39e284d (rmail): Only call `rmail-show-message' if no new mail
Henrik Enberg <henrik.enberg@telia.com>
parents: 88198
diff changeset
1493 (file-error (or found (rmail-show-message))))))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1494
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1495 (defun rmail-parse-url (file)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1496 "Parse the supplied URL. Return (list MAILBOX-NAME REMOTE PASSWORD GOT-PASSWORD)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1497 WHERE MAILBOX-NAME is the name of the mailbox suitable as argument to the
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1498 actual version of `movemail', REMOTE is non-nil if MAILBOX-NAME refers to
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1499 a remote mailbox, PASSWORD is the password if it should be
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1500 supplied as a separate argument to `movemail' or nil otherwise, GOT-PASSWORD
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1501 is non-nil if the user has supplied the password interactively.
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1502 "
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1503 (cond
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1504 ((string-match "^\\([^:]+\\)://\\(\\([^:@]+\\)\\(:\\([^@]+\\)\\)?@\\)?.*" file)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1505 (let (got-password supplied-password
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1506 (proto (match-string 1 file))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1507 (user (match-string 3 file))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1508 (pass (match-string 5 file))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1509 (host (substring file (or (match-end 2)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1510 (+ 3 (match-end 1))))))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1511
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1512 (if (not pass)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1513 (when rmail-remote-password-required
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1514 (setq got-password (not (rmail-have-password)))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1515 (setq supplied-password (rmail-get-remote-password
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1516 (string-equal proto "imap")))))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1517
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1518 (if (rmail-movemail-variant-p 'emacs)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1519 (if (string-equal proto "pop")
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1520 (list (concat "po:" user ":" host)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1521 t
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1522 (or pass supplied-password)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1523 got-password)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1524 (error "Emacs movemail does not support %s protocol" proto))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1525 (list file
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1526 (or (string-equal proto "pop") (string-equal proto "imap"))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1527 supplied-password
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1528 got-password))))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1529
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1530 ((string-match "^po:\\([^:]+\\)\\(:\\(.*\\)\\)?" file)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1531 (let (got-password supplied-password
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1532 (proto "pop")
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1533 (user (match-string 1 file))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1534 (host (match-string 3 file)))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1535
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1536 (when rmail-remote-password-required
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1537 (setq got-password (not (rmail-have-password)))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1538 (setq supplied-password (rmail-get-remote-password nil)))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1539
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1540 (list file "pop" supplied-password got-password)))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1541
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1542 (t
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1543 (list file nil nil nil))))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1544
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1545 (defun rmail-insert-inbox-text (files renamep)
16241
3c84b8d28902 (rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents: 15879
diff changeset
1546 ;; Detect a locked file now, so that we avoid moving mail
3c84b8d28902 (rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents: 15879
diff changeset
1547 ;; out of the real inbox file. (That could scare people.)
3c84b8d28902 (rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents: 15879
diff changeset
1548 (or (memq (file-locked-p buffer-file-name) '(nil t))
3c84b8d28902 (rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents: 15879
diff changeset
1549 (error "RMAIL file %s is locked"
3c84b8d28902 (rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents: 15879
diff changeset
1550 (file-name-nondirectory buffer-file-name)))
22838
4b3e0d38cdb0 (rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents: 22732
diff changeset
1551 (let (file tofile delete-files movemail popmail got-password password)
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1552 (while files
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1553 ;; Handle remote mailbox names specially; don't expand as filenames
24220
33f8216be2f1 (rmail-insert-inbox-text): Handle POP mailboxes
Andrew Innes <andrewi@gnu.org>
parents: 24209
diff changeset
1554 ;; in case the userid contains a directory separator.
33f8216be2f1 (rmail-insert-inbox-text): Handle POP mailboxes
Andrew Innes <andrewi@gnu.org>
parents: 24209
diff changeset
1555 (setq file (car files))
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1556 (let ((url-data (rmail-parse-url file)))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1557 (setq file (nth 0 url-data))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1558 (setq popmail (nth 1 url-data))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1559 (setq password (nth 2 url-data))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1560 (setq got-password (nth 3 url-data)))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1561
24220
33f8216be2f1 (rmail-insert-inbox-text): Handle POP mailboxes
Andrew Innes <andrewi@gnu.org>
parents: 24209
diff changeset
1562 (if popmail
33f8216be2f1 (rmail-insert-inbox-text): Handle POP mailboxes
Andrew Innes <andrewi@gnu.org>
parents: 24209
diff changeset
1563 (setq renamep t)
33f8216be2f1 (rmail-insert-inbox-text): Handle POP mailboxes
Andrew Innes <andrewi@gnu.org>
parents: 24209
diff changeset
1564 (setq file (file-truename
36830
7c77da3d3841 (rmail-insert-inbox-text): Call expand-file-name before
Kenichi Handa <handa@m17n.org>
parents: 36645
diff changeset
1565 (substitute-in-file-name (expand-file-name file)))))
24220
33f8216be2f1 (rmail-insert-inbox-text): Handle POP mailboxes
Andrew Innes <andrewi@gnu.org>
parents: 24209
diff changeset
1566 (setq tofile (expand-file-name
12650
6f4785fee5cc (rmail-insert-inbox-text): Always use movemail when renaming a file.
Richard M. Stallman <rms@gnu.org>
parents: 12447
diff changeset
1567 ;; Generate name to move to from inbox name,
6f4785fee5cc (rmail-insert-inbox-text): Always use movemail when renaming a file.
Richard M. Stallman <rms@gnu.org>
parents: 12447
diff changeset
1568 ;; in case of multiple inboxes that need moving.
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1569 (concat ".newmail-"
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1570 (file-name-nondirectory
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1571 (if (memq system-type '(windows-nt cygwin))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1572 ;; cannot have "po:" in file name
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1573 (substring file 3)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1574 file)))
12650
6f4785fee5cc (rmail-insert-inbox-text): Always use movemail when renaming a file.
Richard M. Stallman <rms@gnu.org>
parents: 12447
diff changeset
1575 ;; Use the directory of this rmail file
6f4785fee5cc (rmail-insert-inbox-text): Always use movemail when renaming a file.
Richard M. Stallman <rms@gnu.org>
parents: 12447
diff changeset
1576 ;; because it's a nuisance to use the homedir
6f4785fee5cc (rmail-insert-inbox-text): Always use movemail when renaming a file.
Richard M. Stallman <rms@gnu.org>
parents: 12447
diff changeset
1577 ;; if that is on a full disk and this rmail
6f4785fee5cc (rmail-insert-inbox-text): Always use movemail when renaming a file.
Richard M. Stallman <rms@gnu.org>
parents: 12447
diff changeset
1578 ;; file isn't.
6f4785fee5cc (rmail-insert-inbox-text): Always use movemail when renaming a file.
Richard M. Stallman <rms@gnu.org>
parents: 12447
diff changeset
1579 (file-name-directory
6f4785fee5cc (rmail-insert-inbox-text): Always use movemail when renaming a file.
Richard M. Stallman <rms@gnu.org>
parents: 12447
diff changeset
1580 (expand-file-name buffer-file-name))))
6f4785fee5cc (rmail-insert-inbox-text): Always use movemail when renaming a file.
Richard M. Stallman <rms@gnu.org>
parents: 12447
diff changeset
1581 ;; Always use movemail to rename the file,
6f4785fee5cc (rmail-insert-inbox-text): Always use movemail when renaming a file.
Richard M. Stallman <rms@gnu.org>
parents: 12447
diff changeset
1582 ;; since there can be mailboxes in various directories.
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1583 (if (not popmail)
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1584 (progn
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1585 ;; On some systems, /usr/spool/mail/foo is a directory
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1586 ;; and the actual inbox is /usr/spool/mail/foo/foo.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1587 (if (file-directory-p file)
5913
3d155c2636bf (rmail-variables, rmail-insert-inbox-text): Change user-original-login-name to
Karl Heuer <kwzh@gnu.org>
parents: 5860
diff changeset
1588 (setq file (expand-file-name (user-login-name)
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1589 file)))))
11452
a24224fc5a92 (rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents: 11049
diff changeset
1590 (cond (popmail
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1591 (message "Getting mail from the remote server ..."))
11452
a24224fc5a92 (rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents: 11049
diff changeset
1592 ((and (file-exists-p tofile)
a24224fc5a92 (rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents: 11049
diff changeset
1593 (/= 0 (nth 7 (file-attributes tofile))))
a24224fc5a92 (rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents: 11049
diff changeset
1594 (message "Getting mail from %s..." tofile))
a24224fc5a92 (rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents: 11049
diff changeset
1595 ((and (file-exists-p file)
a24224fc5a92 (rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents: 11049
diff changeset
1596 (/= 0 (nth 7 (file-attributes file))))
a24224fc5a92 (rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents: 11049
diff changeset
1597 (message "Getting mail from %s..." file)))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1598 ;; Set TOFILE if have not already done so, and
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1599 ;; rename or copy the file FILE to TOFILE if and as appropriate.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1600 (cond ((not renamep)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1601 (setq tofile file))
2076
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
1602 ((or (file-exists-p tofile) (and (not popmail)
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
1603 (not (file-exists-p file))))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1604 nil)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1605 (t
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1606 (with-temp-buffer
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1607 (let ((errors (current-buffer)))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1608 (buffer-disable-undo errors)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1609 (let ((args
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1610 (append
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1611 (list (or rmail-movemail-program
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1612 (expand-file-name "movemail"
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1613 exec-directory))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1614 nil errors nil)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1615 (if rmail-preserve-inbox
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1616 (list "-p")
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1617 nil)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1618 (if (rmail-movemail-variant-p 'mailutils)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1619 (append (list "--emacs") rmail-movemail-flags)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1620 rmail-movemail-flags)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1621 (list file tofile)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1622 (if password (list password) nil))))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1623 (apply 'call-process args))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1624 (if (not (buffer-modified-p errors))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1625 ;; No output => movemail won
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1626 nil
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1627 (set-buffer errors)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1628 (subst-char-in-region (point-min) (point-max)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1629 ?\n ?\ )
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1630 (goto-char (point-max))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1631 (skip-chars-backward " \t")
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1632 (delete-region (point) (point-max))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1633 (goto-char (point-min))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1634 (if (looking-at "movemail: ")
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1635 (delete-region (point-min) (match-end 0)))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1636 (beep t)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1637 ;; If we just read the password, most likely it is
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1638 ;; wrong. Otherwise, see if there is a specific
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1639 ;; reason to think that the problem is a wrong passwd.
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1640 (if (or got-password
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1641 (re-search-forward rmail-remote-password-error
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1642 nil t))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1643 (rmail-set-remote-password nil))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1644
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1645 ;; If using Mailutils, remove initial error code
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1646 ;; abbreviation
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1647 (when (rmail-movemail-variant-p 'mailutils)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1648 (goto-char (point-min))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1649 (when (looking-at "[A-Z][A-Z0-9_]*:")
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1650 (delete-region (point-min) (match-end 0))))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1651
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1652 (message "movemail: %s"
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1653 (buffer-substring (point-min)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1654 (point-max)))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1655
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1656 (sit-for 3)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1657 nil)))))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1658
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1659 ;; At this point, TOFILE contains the name to read:
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1660 ;; Either the alternate name (if we renamed)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1661 ;; or the actual inbox (if not renaming).
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1662 (if (file-exists-p tofile)
17093
f8584d52dd48 (rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents: 17065
diff changeset
1663 (let ((coding-system-for-read 'no-conversion)
f8584d52dd48 (rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents: 17065
diff changeset
1664 size)
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1665 (goto-char (point-max))
17093
f8584d52dd48 (rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents: 17065
diff changeset
1666 (setq size (nth 1 (insert-file-contents tofile)))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1667 (goto-char (point-max))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1668 (or (= (preceding-char) ?\n)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1669 (zerop size)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1670 (insert ?\n))
16908
fd99785417a5 (rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16772
diff changeset
1671 (if (not (and rmail-preserve-inbox (string= file tofile)))
fd99785417a5 (rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16772
diff changeset
1672 (setq delete-files (cons tofile delete-files)))))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1673 (message "")
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1674 (setq files (cdr files)))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1675 delete-files))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1676
24209
d0853770c8e7 (rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 24110
diff changeset
1677 ;; Decode the region specified by FROM and TO by CODING.
d0853770c8e7 (rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 24110
diff changeset
1678 ;; If CODING is nil or an invalid coding system, decode by `undecided'.
d0853770c8e7 (rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 24110
diff changeset
1679 (defun rmail-decode-region (from to coding)
d0853770c8e7 (rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 24110
diff changeset
1680 (if (or (not coding) (not (coding-system-p coding)))
d0853770c8e7 (rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 24110
diff changeset
1681 (setq coding 'undecided))
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1682 ;; Use -dos decoding, to remove ^M characters left from base64 or
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1683 ;; rogue qp-encoded text.
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1684 (decode-coding-region from to
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1685 (coding-system-change-eol-conversion coding 1))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1686 ;; Don't reveal the fact we used -dos decoding, as users generally
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1687 ;; will not expect the RMAIL buffer to use DOS EOL format.
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1688 (setq buffer-file-coding-system
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1689 (setq last-coding-system-used
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1690 (coding-system-change-eol-conversion coding 0))))
24209
d0853770c8e7 (rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 24110
diff changeset
1691
88251
5f2ee806ffbb (rmail-process-new-messages): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88250
diff changeset
1692 (defun rmail-decode-mail-file ()
5f2ee806ffbb (rmail-process-new-messages): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88250
diff changeset
1693 "Decode mail file to a suitable conding system."
5f2ee806ffbb (rmail-process-new-messages): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88250
diff changeset
1694 (when (and (not rmail-enable-mime) rmail-enable-multibyte)
5f2ee806ffbb (rmail-process-new-messages): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88250
diff changeset
1695 (let ((modifiedp (buffer-modified-p))
5f2ee806ffbb (rmail-process-new-messages): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88250
diff changeset
1696 (buffer-read-only nil)
5f2ee806ffbb (rmail-process-new-messages): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88250
diff changeset
1697 (coding-system rmail-file-coding-system))
5f2ee806ffbb (rmail-process-new-messages): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88250
diff changeset
1698 (unless (and coding-system (coding-system-p coding-system))
5f2ee806ffbb (rmail-process-new-messages): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88250
diff changeset
1699 (setq coding-system
5f2ee806ffbb (rmail-process-new-messages): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88250
diff changeset
1700 (car (detect-coding-with-priority
5f2ee806ffbb (rmail-process-new-messages): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88250
diff changeset
1701 (point-min) (point-max)
5f2ee806ffbb (rmail-process-new-messages): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88250
diff changeset
1702 '((coding-category-emacs-mule . emacs-mule))))))
5f2ee806ffbb (rmail-process-new-messages): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88250
diff changeset
1703 (unless (memq coding-system '(undecided undecided-unix))
5f2ee806ffbb (rmail-process-new-messages): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88250
diff changeset
1704 (set-buffer-modified-p t) ;; avoid locking when decoding
5f2ee806ffbb (rmail-process-new-messages): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88250
diff changeset
1705 (let ((buffer-undo-list t))
5f2ee806ffbb (rmail-process-new-messages): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88250
diff changeset
1706 (decode-coding-region (point-min) (point-max) coding-system))
5f2ee806ffbb (rmail-process-new-messages): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88250
diff changeset
1707 (setq coding-system last-coding-system-used))
5f2ee806ffbb (rmail-process-new-messages): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88250
diff changeset
1708 (set-buffer-modified-p modifiedp)
5f2ee806ffbb (rmail-process-new-messages): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88250
diff changeset
1709 (setq buffer-file-coding-system nil)
5f2ee806ffbb (rmail-process-new-messages): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88250
diff changeset
1710 (setq save-buffer-coding-system (or coding-system 'undecided)))))
20399
04ce86b23ffa (rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents: 20274
diff changeset
1711
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1712
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1713 ;;;; *** Rmail Message Formatting and Header Manipulation ***
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1714
9010
9d48b6752dbf (rmail-retry-failure): Copy the whole block of headers from the message
Richard M. Stallman <rms@gnu.org>
parents: 8963
diff changeset
1715 (defun rmail-clear-headers (&optional ignored-headers)
11452
a24224fc5a92 (rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents: 11049
diff changeset
1716 "Delete all header fields that Rmail should not show.
a24224fc5a92 (rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents: 11049
diff changeset
1717 If the optional argument IGNORED-HEADERS is non-nil,
a24224fc5a92 (rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents: 11049
diff changeset
1718 delete all header fields whose names match that regexp.
a24224fc5a92 (rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents: 11049
diff changeset
1719 Otherwise, if `rmail-displayed-headers' is non-nil,
a24224fc5a92 (rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents: 11049
diff changeset
1720 delete all header fields *except* those whose names match that regexp.
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1721 Otherwise, delete all header fields whose names match `rmail-ignored-headers'
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1722 unless they also match `rmail-nonignored-headers'."
21195
169fde4a67c1 (rmail-clear-headers): Make sure an empty line
Richard M. Stallman <rms@gnu.org>
parents: 21192
diff changeset
1723 (when (search-forward "\n\n" nil t)
169fde4a67c1 (rmail-clear-headers): Make sure an empty line
Richard M. Stallman <rms@gnu.org>
parents: 21192
diff changeset
1724 (forward-char -1)
169fde4a67c1 (rmail-clear-headers): Make sure an empty line
Richard M. Stallman <rms@gnu.org>
parents: 21192
diff changeset
1725 (let ((case-fold-search t)
169fde4a67c1 (rmail-clear-headers): Make sure an empty line
Richard M. Stallman <rms@gnu.org>
parents: 21192
diff changeset
1726 (buffer-read-only nil))
169fde4a67c1 (rmail-clear-headers): Make sure an empty line
Richard M. Stallman <rms@gnu.org>
parents: 21192
diff changeset
1727 (if (and rmail-displayed-headers (null ignored-headers))
21293
21de06ed5f74 (rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents: 21195
diff changeset
1728 (save-restriction
21de06ed5f74 (rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents: 21195
diff changeset
1729 (narrow-to-region (point-min) (point))
21de06ed5f74 (rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents: 21195
diff changeset
1730 (let (lim next)
21de06ed5f74 (rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents: 21195
diff changeset
1731 (goto-char (point-min))
21de06ed5f74 (rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents: 21195
diff changeset
1732 (while (and (not (eobp))
21de06ed5f74 (rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents: 21195
diff changeset
1733 (save-excursion
21de06ed5f74 (rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents: 21195
diff changeset
1734 (if (re-search-forward "\n[^ \t]" nil t)
21de06ed5f74 (rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents: 21195
diff changeset
1735 (setq lim (match-beginning 0)
21de06ed5f74 (rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents: 21195
diff changeset
1736 next (1+ lim))
21de06ed5f74 (rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents: 21195
diff changeset
1737 (setq lim nil next (point-max)))))
21de06ed5f74 (rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents: 21195
diff changeset
1738 (if (save-excursion
21de06ed5f74 (rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents: 21195
diff changeset
1739 (re-search-forward rmail-displayed-headers lim t))
21de06ed5f74 (rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents: 21195
diff changeset
1740 (goto-char next)
21de06ed5f74 (rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents: 21195
diff changeset
1741 (delete-region (point) next))))
21de06ed5f74 (rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents: 21195
diff changeset
1742 (goto-char (point-min)))
21195
169fde4a67c1 (rmail-clear-headers): Make sure an empty line
Richard M. Stallman <rms@gnu.org>
parents: 21192
diff changeset
1743 (or ignored-headers (setq ignored-headers rmail-ignored-headers))
169fde4a67c1 (rmail-clear-headers): Make sure an empty line
Richard M. Stallman <rms@gnu.org>
parents: 21192
diff changeset
1744 (save-restriction
169fde4a67c1 (rmail-clear-headers): Make sure an empty line
Richard M. Stallman <rms@gnu.org>
parents: 21192
diff changeset
1745 (narrow-to-region (point-min) (point))
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1746 (goto-char (point-min))
30112
d2611d5071d0 (rmail-clear-headers): Don't throw an error
Gerd Moellmann <gerd@gnu.org>
parents: 30100
diff changeset
1747 (while (and ignored-headers
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1748 (re-search-forward ignored-headers nil t))
21195
169fde4a67c1 (rmail-clear-headers): Make sure an empty line
Richard M. Stallman <rms@gnu.org>
parents: 21192
diff changeset
1749 (beginning-of-line)
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1750 (if (looking-at rmail-nonignored-headers)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1751 (forward-line 1)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1752 (delete-region (point)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1753 (save-excursion
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1754 (if (re-search-forward "\n[^ \t]" nil t)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1755 (1- (point))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1756 (point-max)))))))))))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1757
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1758 (defun rmail-msg-is-pruned (&optional msg)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1759 "Determine if the headers for the current message are being
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1760 displayed. If MSG is non-nil it will be used as the message number
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1761 instead of the current message."
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1762 (rmail-desc-get-header-display-state (or msg rmail-current-message)))
16772
ce2945525699 (rmail-msg-is-pruned): New function.
Richard M. Stallman <rms@gnu.org>
parents: 16633
diff changeset
1763
ce2945525699 (rmail-msg-is-pruned): New function.
Richard M. Stallman <rms@gnu.org>
parents: 16633
diff changeset
1764 (defun rmail-toggle-header (&optional arg)
ce2945525699 (rmail-msg-is-pruned): New function.
Richard M. Stallman <rms@gnu.org>
parents: 16633
diff changeset
1765 "Show original message header if pruned header currently shown, or vice versa.
ce2945525699 (rmail-msg-is-pruned): New function.
Richard M. Stallman <rms@gnu.org>
parents: 16633
diff changeset
1766 With argument ARG, show the message header pruned if ARG is greater than zero;
ce2945525699 (rmail-msg-is-pruned): New function.
Richard M. Stallman <rms@gnu.org>
parents: 16633
diff changeset
1767 otherwise, show it in full."
ce2945525699 (rmail-msg-is-pruned): New function.
Richard M. Stallman <rms@gnu.org>
parents: 16633
diff changeset
1768 (interactive "P")
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1769 (rmail-header-toggle-visibility arg)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1770 (rmail-highlight-headers))
22351
fbe69401c609 (rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents: 22330
diff changeset
1771
38228
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
1772 (defun rmail-narrow-to-non-pruned-header ()
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
1773 "Narrow to the whole (original) header of the current message."
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
1774 (let (start end)
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1775 (narrow-to-region (rmail-desc-get-start rmail-current-message) (point-max))
38228
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
1776 (goto-char (point-min))
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
1777 (forward-line 1)
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
1778 (if (= (following-char) ?1)
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
1779 (progn
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
1780 (forward-line 1)
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
1781 (setq start (point))
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
1782 (search-forward "*** EOOH ***\n")
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
1783 (setq end (match-beginning 0)))
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
1784 (forward-line 2)
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
1785 (setq start (point))
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
1786 (search-forward "\n\n")
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
1787 (setq end (1- (point))))
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
1788 (narrow-to-region start end)
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
1789 (goto-char start)))
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
1790
22351
fbe69401c609 (rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents: 22330
diff changeset
1791 ;; Lifted from repos-count-screen-lines.
fbe69401c609 (rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents: 22330
diff changeset
1792 ;; Return number of screen lines between START and END.
fbe69401c609 (rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents: 22330
diff changeset
1793 (defun rmail-count-screen-lines (start end)
22330
6d28f2670ebe (rmail-toggle-header): Preserve point
Karl Heuer <kwzh@gnu.org>
parents: 22263
diff changeset
1794 (save-excursion
22351
fbe69401c609 (rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents: 22330
diff changeset
1795 (save-restriction
fbe69401c609 (rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents: 22330
diff changeset
1796 (narrow-to-region start end)
fbe69401c609 (rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents: 22330
diff changeset
1797 (goto-char (point-min))
fbe69401c609 (rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents: 22330
diff changeset
1798 (vertical-motion (- (point-max) (point-min))))))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1799
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1800 ;;;; *** Rmail Attributes and Keywords ***
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1801
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1802 ;; Make a string describing the current message's attributes by
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1803 ;; keywords and set it up as the name of a minor mode so it will
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1804 ;; appear in the mode line.
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1805 (defun rmail-display-labels ()
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1806 (let (keyword-list result)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1807 ;; Update the keyword list for the current message.
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1808 (if (> rmail-current-message 0)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1809 (setq keyword-list (rmail-desc-get-keywords rmail-current-message)))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1810 ;; Generate the result string.
88174
edcff75892b8 (rmail-display-labels): Use identity instead of lambda.
Alex Schroeder <alex@gnu.org>
parents: 88170
diff changeset
1811 (setq result (mapconcat 'identity keyword-list " "))
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1812 ;; Update the mode line to display the keywords, the current
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1813 ;; message index and the total number of messages.
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1814 (setq mode-line-process
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1815 (format " %d/%d %s"
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1816 rmail-current-message rmail-total-messages result))
37611
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
1817 ;; If rmail-enable-mime is non-nil, we may have to update
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
1818 ;; `mode-line-process' of rmail-view-buffer too.
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
1819 (if (and rmail-enable-mime
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
1820 (not (eq (current-buffer) rmail-view-buffer))
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
1821 (buffer-live-p rmail-view-buffer))
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
1822 (let ((mlp mode-line-process))
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
1823 (with-current-buffer rmail-view-buffer
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
1824 (setq mode-line-process mlp))))))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1825
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1826 (defun rmail-set-attribute (attr state &optional msgnum)
88211
9b0023f1776c (rmail-set-attribute): Moved comment into document.
Alex Schroeder <alex@gnu.org>
parents: 88209
diff changeset
1827 "Turn a attribute ATTR of a message on or off according to STATE.
9b0023f1776c (rmail-set-attribute): Moved comment into document.
Alex Schroeder <alex@gnu.org>
parents: 88209
diff changeset
1828 ATTR is a string, MSGNUM is the optional message number. By
9b0023f1776c (rmail-set-attribute): Moved comment into document.
Alex Schroeder <alex@gnu.org>
parents: 88209
diff changeset
1829 default, the current message is changed."
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1830 (save-excursion
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1831 (save-restriction
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1832 (let ((attr-index (rmail-desc-get-attr-index attr)))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1833 (set-buffer rmail-buffer)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1834 (or msgnum (setq msgnum rmail-current-message))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1835 (rmail-desc-set-attribute attr-index state msgnum)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1836 ;; Deal with the summary buffer.
88226
8a1f15a85efb (rmail-set-attribute): Call rmail-summary-update.
Alex Schroeder <alex@gnu.org>
parents: 88222
diff changeset
1837 (when rmail-summary-buffer
8a1f15a85efb (rmail-set-attribute): Call rmail-summary-update.
Alex Schroeder <alex@gnu.org>
parents: 88222
diff changeset
1838 (rmail-summary-update msgnum))))))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1839
88188
d33a3b2bba76 (rmail-message-labels-p): Rewrote using
Alex Schroeder <alex@gnu.org>
parents: 88183
diff changeset
1840 (defun rmail-message-labels-p (n labels)
d33a3b2bba76 (rmail-message-labels-p): Rewrote using
Alex Schroeder <alex@gnu.org>
parents: 88183
diff changeset
1841 "Return t if message number N has keywords matching LABELS.
d33a3b2bba76 (rmail-message-labels-p): Rewrote using
Alex Schroeder <alex@gnu.org>
parents: 88183
diff changeset
1842 LABELS is a regular expression."
d33a3b2bba76 (rmail-message-labels-p): Rewrote using
Alex Schroeder <alex@gnu.org>
parents: 88183
diff changeset
1843 (catch 'found
d33a3b2bba76 (rmail-message-labels-p): Rewrote using
Alex Schroeder <alex@gnu.org>
parents: 88183
diff changeset
1844 (dolist (keyword (rmail-desc-get-keywords n))
d33a3b2bba76 (rmail-message-labels-p): Rewrote using
Alex Schroeder <alex@gnu.org>
parents: 88183
diff changeset
1845 (when (string-match labels keyword)
d33a3b2bba76 (rmail-message-labels-p): Rewrote using
Alex Schroeder <alex@gnu.org>
parents: 88183
diff changeset
1846 (throw 'found t)))))
d33a3b2bba76 (rmail-message-labels-p): Rewrote using
Alex Schroeder <alex@gnu.org>
parents: 88183
diff changeset
1847
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1848
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1849 ;;;; *** Rmail Message Selection And Support ***
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1850
88256
db2e6586ecf5 (rmail-msgbeg, rmail-msgend): Fix and make obsolete.
Alex Schroeder <alex@gnu.org>
parents: 88253
diff changeset
1851 (defun rmail-msgbeg (n)
88133
aa85e6f55862 (rmail-msg-restore-non-pruned-header, rmail-msg-prune-header): Use the
Paul Reilly <pmr@pajato.com>
parents: 88125
diff changeset
1852 (rmail-desc-get-start n))
88256
db2e6586ecf5 (rmail-msgbeg, rmail-msgend): Fix and make obsolete.
Alex Schroeder <alex@gnu.org>
parents: 88253
diff changeset
1853 (make-obsolete 'rmail-msgbeg 'rmail-desc-get-start "22.0")
88133
aa85e6f55862 (rmail-msg-restore-non-pruned-header, rmail-msg-prune-header): Use the
Paul Reilly <pmr@pajato.com>
parents: 88125
diff changeset
1854
88256
db2e6586ecf5 (rmail-msgbeg, rmail-msgend): Fix and make obsolete.
Alex Schroeder <alex@gnu.org>
parents: 88253
diff changeset
1855 (defun rmail-msgend (n)
88133
aa85e6f55862 (rmail-msg-restore-non-pruned-header, rmail-msg-prune-header): Use the
Paul Reilly <pmr@pajato.com>
parents: 88125
diff changeset
1856 (rmail-desc-get-end n))
88256
db2e6586ecf5 (rmail-msgbeg, rmail-msgend): Fix and make obsolete.
Alex Schroeder <alex@gnu.org>
parents: 88253
diff changeset
1857 (make-obsolete 'rmail-msgend 'rmail-desc-get-end "22.0")
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1858
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1859 (defun rmail-widen-to-current-msgbeg (function)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1860 "Call FUNCTION with point at start of internal data of current message.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1861 Assumes that bounds were previously narrowed to display the message in Rmail.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1862 The bounds are widened enough to move point where desired, then narrowed
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1863 again afterward.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1864
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1865 FUNCTION may not change the visible text of the message, but it may
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1866 change the invisible header text."
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1867 (save-excursion
29301
aec01f0c6729 (rmail-widen-to-current-msgbeg): Use rmail-msgbeg
Gerd Moellmann <gerd@gnu.org>
parents: 29160
diff changeset
1868 (unwind-protect
aec01f0c6729 (rmail-widen-to-current-msgbeg): Use rmail-msgbeg
Gerd Moellmann <gerd@gnu.org>
parents: 29160
diff changeset
1869 (progn
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1870 (narrow-to-region (rmail-desc-get-start rmail-current-message)
29301
aec01f0c6729 (rmail-widen-to-current-msgbeg): Use rmail-msgbeg
Gerd Moellmann <gerd@gnu.org>
parents: 29160
diff changeset
1871 (point-max))
aec01f0c6729 (rmail-widen-to-current-msgbeg): Use rmail-msgbeg
Gerd Moellmann <gerd@gnu.org>
parents: 29160
diff changeset
1872 (goto-char (point-min))
aec01f0c6729 (rmail-widen-to-current-msgbeg): Use rmail-msgbeg
Gerd Moellmann <gerd@gnu.org>
parents: 29160
diff changeset
1873 (funcall function))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1874 ;; Note: we don't use save-restriction because that does not work right
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1875 ;; if changes are made outside the saved restriction
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1876 ;; before that restriction is restored.
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1877 (narrow-to-region (rmail-desc-get-start rmail-current-message)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1878 (rmail-desc-get-end rmail-current-message)))))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1879
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1880 (defun rmail-process-new-messages (&optional nomsg)
88144
9c50ab53e31f (rmail): Error if file is Babyl format.
Richard M. Stallman <rms@gnu.org>
parents: 88140
diff changeset
1881 "Process the new messages in the buffer.
9c50ab53e31f (rmail): Error if file is Babyl format.
Richard M. Stallman <rms@gnu.org>
parents: 88140
diff changeset
1882 The buffer has been narrowed to expose only the new messages.
9c50ab53e31f (rmail): Error if file is Babyl format.
Richard M. Stallman <rms@gnu.org>
parents: 88140
diff changeset
1883 For each new message append an entry to the message vector and,
9c50ab53e31f (rmail): Error if file is Babyl format.
Richard M. Stallman <rms@gnu.org>
parents: 88140
diff changeset
1884 if necessary, add a header that will capture the salient BABYL
9c50ab53e31f (rmail): Error if file is Babyl format.
Richard M. Stallman <rms@gnu.org>
parents: 88140
diff changeset
1885 information. Return the number of new messages. If NOMSG is
9c50ab53e31f (rmail): Error if file is Babyl format.
Richard M. Stallman <rms@gnu.org>
parents: 88140
diff changeset
1886 non-nil then do not show any progress messages."
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1887 (let ((inhibit-read-only t)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1888 (case-fold-search nil)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1889 (new-message-counter 0)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1890 (start (point-max))
88194
1f1ae6ac5610 (rmail-process-new-messages): Add an X-Coding-System header if one
Henrik Enberg <henrik.enberg@telia.com>
parents: 88192
diff changeset
1891 end attributes keywords message-descriptor-list
88206
fdaa84109d39 (rmail-get-sender): Deleted
Henrik Enberg <henrik.enberg@telia.com>
parents: 88205
diff changeset
1892 date coding sender)
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1893 (or nomsg (message "Processing new messages..."))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1894 ;; Process each message in turn starting from the back and
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1895 ;; proceeding to the front of the region. This is especially a
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1896 ;; good approach since the buffer will likely have new headers
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1897 ;; added.
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1898 (goto-char start)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1899 (while (re-search-backward rmail-unix-mail-delimiter nil t)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1900 ;; Cache the message date to facilitate generating a message
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1901 ;; summary later. The format is '(DAY-OF-WEEK DAY-NUMBER MON
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1902 ;; YEAR TIME)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1903 (setq date
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1904 (list (buffer-substring (match-beginning 2) (match-end 2))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1905 (buffer-substring (match-beginning 4) (match-end 4))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1906 (buffer-substring (match-beginning 3) (match-end 3))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1907 (buffer-substring (match-beginning 7) (match-end 7))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1908 (buffer-substring (match-beginning 5) (match-end 5))))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1909 ;;Set start and end to bracket this message.
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1910 (setq end start)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1911 (setq start (point))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1912 (save-excursion
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1913 (save-restriction
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1914 (narrow-to-region start end)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1915 (goto-char start)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1916 ;; Bump the new message counter.
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1917 (setq new-message-counter (1+ new-message-counter))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1918 ;; I don't understand why the following is done ... -pmr
88207
8d2ef2dbf238 (rmail-process-new-messages): Decode message accoding to
Henrik Enberg <henrik.enberg@telia.com>
parents: 88206
diff changeset
1919 ;; Detect messages that have been added with DOS line endings
8d2ef2dbf238 (rmail-process-new-messages): Decode message accoding to
Henrik Enberg <henrik.enberg@telia.com>
parents: 88206
diff changeset
1920 ;; and convert the line endings for such messages.
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1921 (if (save-excursion (end-of-line) (= (preceding-char) ?\r))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1922 (let ((buffer-read-only nil)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1923 (buffer-undo t)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1924 (end-marker (copy-marker end)))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1925 (message
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1926 "Processing new messages...(converting line endings)")
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1927 (save-excursion
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1928 (goto-char (point-max))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1929 (while (search-backward "\r\n" (point-min) t)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1930 (delete-char 1)))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1931 (setq end (marker-position end-marker))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1932 (set-marker end-marker nil)))
88194
1f1ae6ac5610 (rmail-process-new-messages): Add an X-Coding-System header if one
Henrik Enberg <henrik.enberg@telia.com>
parents: 88192
diff changeset
1933
88207
8d2ef2dbf238 (rmail-process-new-messages): Decode message accoding to
Henrik Enberg <henrik.enberg@telia.com>
parents: 88206
diff changeset
1934 ;; Decode Message according to charset.
8d2ef2dbf238 (rmail-process-new-messages): Decode message accoding to
Henrik Enberg <henrik.enberg@telia.com>
parents: 88206
diff changeset
1935 (setq last-coding-system-used nil)
8d2ef2dbf238 (rmail-process-new-messages): Decode message accoding to
Henrik Enberg <henrik.enberg@telia.com>
parents: 88206
diff changeset
1936 (or rmail-enable-mime
8d2ef2dbf238 (rmail-process-new-messages): Decode message accoding to
Henrik Enberg <henrik.enberg@telia.com>
parents: 88206
diff changeset
1937 (not rmail-enable-multibyte)
8d2ef2dbf238 (rmail-process-new-messages): Decode message accoding to
Henrik Enberg <henrik.enberg@telia.com>
parents: 88206
diff changeset
1938 (let ((mime-charset
88251
5f2ee806ffbb (rmail-process-new-messages): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88250
diff changeset
1939 (when (and rmail-decode-mime-charset
5f2ee806ffbb (rmail-process-new-messages): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88250
diff changeset
1940 (save-excursion
5f2ee806ffbb (rmail-process-new-messages): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88250
diff changeset
1941 (goto-char (rmail-header-get-limit))
5f2ee806ffbb (rmail-process-new-messages): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88250
diff changeset
1942 (let ((case-fold-search t))
5f2ee806ffbb (rmail-process-new-messages): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88250
diff changeset
1943 (re-search-backward
5f2ee806ffbb (rmail-process-new-messages): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88250
diff changeset
1944 rmail-mime-charset-pattern
5f2ee806ffbb (rmail-process-new-messages): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88250
diff changeset
1945 (point-min) t))))
88207
8d2ef2dbf238 (rmail-process-new-messages): Decode message accoding to
Henrik Enberg <henrik.enberg@telia.com>
parents: 88206
diff changeset
1946 (intern (downcase (match-string 1))))))
8d2ef2dbf238 (rmail-process-new-messages): Decode message accoding to
Henrik Enberg <henrik.enberg@telia.com>
parents: 88206
diff changeset
1947 (rmail-decode-region start (point) mime-charset)))
8d2ef2dbf238 (rmail-process-new-messages): Decode message accoding to
Henrik Enberg <henrik.enberg@telia.com>
parents: 88206
diff changeset
1948
88194
1f1ae6ac5610 (rmail-process-new-messages): Add an X-Coding-System header if one
Henrik Enberg <henrik.enberg@telia.com>
parents: 88192
diff changeset
1949 ;; Add an X-Coding-System header if we don't have one.
1f1ae6ac5610 (rmail-process-new-messages): Add an X-Coding-System header if one
Henrik Enberg <henrik.enberg@telia.com>
parents: 88192
diff changeset
1950 (unless (rmail-header-get-header "X-Coding-System")
88207
8d2ef2dbf238 (rmail-process-new-messages): Decode message accoding to
Henrik Enberg <henrik.enberg@telia.com>
parents: 88206
diff changeset
1951 (rmail-header-add-header "X-Coding-System"
8d2ef2dbf238 (rmail-process-new-messages): Decode message accoding to
Henrik Enberg <henrik.enberg@telia.com>
parents: 88206
diff changeset
1952 (symbol-name last-coding-system-used)))
88194
1f1ae6ac5610 (rmail-process-new-messages): Add an X-Coding-System header if one
Henrik Enberg <henrik.enberg@telia.com>
parents: 88192
diff changeset
1953
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1954 ;; Make sure we have an Rmail BABYL attribute header field.
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1955 ;; All we can assume is that the Rmail BABYL header field is
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1956 ;; in the header section. It's placement can be modified by
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1957 ;; another mailer.
88179
43ed67124917 (rmail-process-new-messages): Require rmailkwd.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88176
diff changeset
1958 (setq attributes (rmail-header-get-header
43ed67124917 (rmail-process-new-messages): Require rmailkwd.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88176
diff changeset
1959 rmail-header-attribute-header))
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1960 (unless attributes
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1961 ;; No suitable header exists. Append the default BABYL
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1962 ;; data header for a new message.
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1963 (setq attributes (rmail-desc-get-default-attrs))
88179
43ed67124917 (rmail-process-new-messages): Require rmailkwd.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88176
diff changeset
1964 (rmail-header-add-header rmail-header-attribute-header attributes))
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1965 ;; Set up keywords, if any. The keywords are provided via a
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1966 ;; comma separated list and returned as a list of strings.
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1967 (setq keywords (rmail-header-get-keywords))
88179
43ed67124917 (rmail-process-new-messages): Require rmailkwd.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88176
diff changeset
1968 (when keywords
43ed67124917 (rmail-process-new-messages): Require rmailkwd.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88176
diff changeset
1969 ;; Keywords do exist. Register them with the keyword
43ed67124917 (rmail-process-new-messages): Require rmailkwd.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88176
diff changeset
1970 ;; management library.
43ed67124917 (rmail-process-new-messages): Require rmailkwd.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88176
diff changeset
1971 (rmail-keyword-register-keywords keywords))
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1972
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1973 ;; Insure that we have From and Date headers.
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1974 ;;(rmail-decode-from-line)
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
1975
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1976 ;; Perform User defined filtering.
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1977 (save-excursion
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1978 (if rmail-message-filter (funcall rmail-message-filter)))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1979 ;; Accumulate the message attributes along with the message
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1980 ;; markers and the message date list.
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1981 (setq message-descriptor-list
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1982 (vconcat (list (list (point-min-marker)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1983 attributes
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1984 keywords
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1985 date
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1986 (count-lines start end)
88206
fdaa84109d39 (rmail-get-sender): Deleted
Henrik Enberg <henrik.enberg@telia.com>
parents: 88205
diff changeset
1987 (cadr (mail-extract-address-components
88222
f1ded67120e9 (rmail-process-new-messages): Use
Henrik Enberg <henrik.enberg@telia.com>
parents: 88212
diff changeset
1988 (rmail-header-get-header "from")))
88256
db2e6586ecf5 (rmail-msgbeg, rmail-msgend): Fix and make obsolete.
Alex Schroeder <alex@gnu.org>
parents: 88253
diff changeset
1989 (mail-decode-encoded-word-string
db2e6586ecf5 (rmail-msgbeg, rmail-msgend): Fix and make obsolete.
Alex Schroeder <alex@gnu.org>
parents: 88253
diff changeset
1990 (rmail-header-get-header "subject"))))
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1991 message-descriptor-list)))))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1992 ;; Add the new message data lists to the Rmail message descriptor
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1993 ;; vector.
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1994 (rmail-desc-add-descriptors message-descriptor-list)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1995 ;; Unless requested otherwise, show the number of new messages.
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1996 ;; Return the number of new messages.
88179
43ed67124917 (rmail-process-new-messages): Require rmailkwd.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88176
diff changeset
1997 (or nomsg (message "Processing new messages...done (%d)"
43ed67124917 (rmail-process-new-messages): Require rmailkwd.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88176
diff changeset
1998 new-message-counter))
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
1999 new-message-counter))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2000
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2001 ;;; mbox: deprecated
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2002 (defun rmail-maybe-set-message-counters ()
88148
658c777d9be6 (rmail-message-vector, rmail-deleted-vector)
Richard M. Stallman <rms@gnu.org>
parents: 88144
diff changeset
2003 )
658c777d9be6 (rmail-message-vector, rmail-deleted-vector)
Richard M. Stallman <rms@gnu.org>
parents: 88144
diff changeset
2004
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2005 (defun rmail-beginning-of-message ()
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2006 "Show current message starting from the beginning."
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2007 (interactive)
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2008 (let ((rmail-show-message-hook
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2009 (list (function (lambda ()
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2010 (goto-char (point-min)))))))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2011 (rmail-show-message rmail-current-message)))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2012
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2013 (defun rmail-end-of-message ()
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2014 "Show bottom of current message."
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2015 (interactive)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2016 (let ((rmail-show-message-hook
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2017 (list (function (lambda ()
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2018 (goto-char (point-max))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2019 (recenter (1- (window-height))))))))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2020 (rmail-show-message rmail-current-message)))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2021
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2022 (defun rmail-unknown-mail-followup-to ()
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2023 "Handle a \"Mail-Followup-To\" header field with an unknown mailing list.
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2024 Ask the user whether to add that list name to `mail-mailing-lists'."
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2025 (save-restriction
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2026 (rmail-narrow-to-non-pruned-header)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2027 (let ((mail-followup-to (mail-fetch-field "mail-followup-to" nil t)))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2028 (when mail-followup-to
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2029 (let ((addresses
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2030 (split-string
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2031 (mail-strip-quoted-names mail-followup-to)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2032 ",[[:space:]]+" t)))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2033 (dolist (addr addresses)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2034 (when (and (not (member addr mail-mailing-lists))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2035 (not
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2036 ;; taken from rmailsum.el
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2037 (string-match
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2038 (or rmail-user-mail-address-regexp
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2039 (concat "^\\("
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2040 (regexp-quote (user-login-name))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2041 "\\($\\|@\\)\\|"
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2042 (regexp-quote
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2043 (or user-mail-address
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2044 (concat (user-login-name) "@"
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2045 (or mail-host-address
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2046 (system-name)))))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2047 "\\>\\)"))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2048 addr))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2049 (y-or-n-p
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2050 (format "Add `%s' to `mail-mailing-lists'? "
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2051 addr)))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2052 (customize-save-variable 'mail-mailing-lists
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2053 (cons addr mail-mailing-lists)))))))))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2054
9431
65e65fe6e8f3 (rmail-show-message): New argument no-summary.
Richard M. Stallman <rms@gnu.org>
parents: 9394
diff changeset
2055 (defun rmail-show-message (&optional n no-summary)
2076
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
2056 "Show message number N (prefix argument), counting from start of file.
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2057 If NO-SUMMARY is non-nil, then do not update the summary buffer."
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2058 (interactive "p")
88207
8d2ef2dbf238 (rmail-process-new-messages): Decode message accoding to
Henrik Enberg <henrik.enberg@telia.com>
parents: 88206
diff changeset
2059 (unless (eq major-mode 'rmail-mode)
8d2ef2dbf238 (rmail-process-new-messages): Decode message accoding to
Henrik Enberg <henrik.enberg@telia.com>
parents: 88206
diff changeset
2060 (switch-to-buffer rmail-buffer))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2061 (if (zerop rmail-total-messages)
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2062 (progn
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2063 (message "No messages to show. Add something better soon.")
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2064 (force-mode-line-update))
88207
8d2ef2dbf238 (rmail-process-new-messages): Decode message accoding to
Henrik Enberg <henrik.enberg@telia.com>
parents: 88206
diff changeset
2065 (let (blurb)
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2066 ;; Set n to the first sane message based on the sign of n:
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2067 ;; positive but greater than the total number of messages -> n;
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2068 ;; negative -> 1.
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2069 (if (not n)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2070 (setq n rmail-current-message)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2071 (cond ((<= n 0)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2072 (setq n 1
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2073 rmail-current-message 1
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2074 blurb "No previous message"))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2075 ((> n rmail-total-messages)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2076 (setq n rmail-total-messages
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2077 rmail-current-message rmail-total-messages
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2078 blurb "No following message"))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2079 (t
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2080 (setq rmail-current-message n))))
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2081 (let ((beg (rmail-desc-get-start n))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2082 (end (rmail-desc-get-end n)))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2083 (rmail-header-show-headers)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2084 (widen)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2085 (narrow-to-region beg end)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2086 (goto-char (point-min))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2087 (if (re-search-forward "^X-Coding-System: *\\(.*\\)$" nil t)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2088 (let ((coding-system (intern (match-string 1))))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2089 (condition-case nil
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2090 (progn
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2091 (check-coding-system coding-system)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2092 (setq buffer-file-coding-system coding-system))
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2093 (error
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2094 (setq buffer-file-coding-system nil))))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2095 (setq buffer-file-coding-system nil))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2096 ;; Clear the "unseen" attribute when we show a message, unless
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2097 ;; it is already cleared.
88207
8d2ef2dbf238 (rmail-process-new-messages): Decode message accoding to
Henrik Enberg <henrik.enberg@telia.com>
parents: 88206
diff changeset
2098 (when (rmail-desc-attr-p rmail-desc-unseen-index n)
8d2ef2dbf238 (rmail-process-new-messages): Decode message accoding to
Henrik Enberg <henrik.enberg@telia.com>
parents: 88206
diff changeset
2099 (rmail-desc-set-attribute rmail-desc-unseen-index nil n))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2100 (rmail-display-labels)
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2101 ;; Deal with MIME
17093
f8584d52dd48 (rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents: 17065
diff changeset
2102 (if (eq rmail-enable-mime t)
f8584d52dd48 (rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents: 17065
diff changeset
2103 (funcall rmail-show-mime-function)
88246
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2104 (setq rmail-view-buffer rmail-buffer))
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2105 ;; Deal with the message headers and URLs..
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2106 (rmail-header-hide-headers)
7084
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2107 (rmail-highlight-headers)
88207
8d2ef2dbf238 (rmail-process-new-messages): Decode message accoding to
Henrik Enberg <henrik.enberg@telia.com>
parents: 88206
diff changeset
2108 (when transient-mark-mode (deactivate-mark))
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2109 ;; Make sure that point in the Rmail window is at the beginning
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2110 ;; of the buffer.
88246
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2111 (goto-char (point-min))
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2112 (set-window-point (get-buffer-window rmail-buffer) (point))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2113 ;; Run any User code.
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2114 (run-hooks 'rmail-show-message-hook)
88207
8d2ef2dbf238 (rmail-process-new-messages): Decode message accoding to
Henrik Enberg <henrik.enberg@telia.com>
parents: 88206
diff changeset
2115 ;; If there is a summary buffer, try to move to this message in
8d2ef2dbf238 (rmail-process-new-messages): Decode message accoding to
Henrik Enberg <henrik.enberg@telia.com>
parents: 88206
diff changeset
2116 ;; that buffer. But don't complain if this message is not
8d2ef2dbf238 (rmail-process-new-messages): Decode message accoding to
Henrik Enberg <henrik.enberg@telia.com>
parents: 88206
diff changeset
2117 ;; mentioned in the summary. Don't do this at all if we were
8d2ef2dbf238 (rmail-process-new-messages): Decode message accoding to
Henrik Enberg <henrik.enberg@telia.com>
parents: 88206
diff changeset
2118 ;; called on behalf of cursor motion in the summary buffer.
9431
65e65fe6e8f3 (rmail-show-message): New argument no-summary.
Richard M. Stallman <rms@gnu.org>
parents: 9394
diff changeset
2119 (and (rmail-summary-exists) (not no-summary)
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2120 (save-excursion
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2121 (let ((curr-msg rmail-current-message))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2122 ;; Set the summary current message, disabling the
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2123 ;; Rmail buffer update.
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2124 (set-buffer rmail-summary-buffer)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2125 (rmail-summary-goto-msg curr-msg nil t))))
37611
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2126 (with-current-buffer rmail-buffer
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2127 (rmail-auto-file))
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2128 ;; Post back any status messages.
88207
8d2ef2dbf238 (rmail-process-new-messages): Decode message accoding to
Henrik Enberg <henrik.enberg@telia.com>
parents: 88206
diff changeset
2129 (when blurb
88246
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2130 (message blurb))))))
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2131
35471
a06f22cd075b (rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 34185
diff changeset
2132 (defun rmail-redecode-body (coding)
a06f22cd075b (rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 34185
diff changeset
2133 "Decode the body of the current message using coding system CODING.
a06f22cd075b (rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 34185
diff changeset
2134 This is useful with mail messages that have malformed or missing
a06f22cd075b (rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 34185
diff changeset
2135 charset= headers.
a06f22cd075b (rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 34185
diff changeset
2136
a06f22cd075b (rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 34185
diff changeset
2137 This function assumes that the current message is already decoded
a06f22cd075b (rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 34185
diff changeset
2138 and displayed in the RMAIL buffer, but the coding system used to
a06f22cd075b (rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 34185
diff changeset
2139 decode it was incorrect. It then encodes the message back to its
35548
a22e84d6a26b (rmail-redecode-body): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 35471
diff changeset
2140 original form, and decodes it again, using the coding system CODING.
35471
a06f22cd075b (rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 34185
diff changeset
2141
a06f22cd075b (rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 34185
diff changeset
2142 Note that if Emacs erroneously auto-detected one of the iso-2022
a06f22cd075b (rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 34185
diff changeset
2143 encodings in the message, this function might fail because the escape
a06f22cd075b (rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 34185
diff changeset
2144 sequences that switch between character sets and also single-shift and
a06f22cd075b (rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 34185
diff changeset
2145 locking-shift codes are impossible to recover. This function is meant
a06f22cd075b (rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 34185
diff changeset
2146 to be used to fix messages encoded with 8-bit encodings, such as
a06f22cd075b (rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 34185
diff changeset
2147 iso-8859, koi8-r, etc."
a06f22cd075b (rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 34185
diff changeset
2148 (interactive "zCoding system for re-decoding this message: ")
88246
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2149 (unless rmail-enable-mime
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2150 (with-current-buffer rmail-buffer
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2151 (save-excursion
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2152 (unwind-protect
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2153 (let ((start (rmail-desc-get-start rmail-current-message))
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2154 (end (rmail-desc-get-end rmail-current-message))
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2155 header)
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2156 ;; We need the message headers pruned (we later restore
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2157 ;; the pruned stat to what it was, see the end of
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2158 ;; unwind-protect form).
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2159 (rmail-header-show-headers)
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2160 (narrow-to-region start end)
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2161 (setq header (rmail-header-get-header "X-Coding-System"))
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2162 (if header
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2163 (let ((old-coding (intern header))
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2164 (buffer-read-only nil))
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2165 (check-coding-system old-coding)
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2166 ;; Make sure the new coding system uses the same EOL
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2167 ;; conversion, to prevent ^M characters from popping
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2168 ;; up all over the place.
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2169 (setq coding
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2170 (coding-system-change-eol-conversion
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2171 coding
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2172 (coding-system-eol-type old-coding)))
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2173 ;; Do the actual recoding.
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2174 (encode-coding-region start end old-coding)
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2175 (decode-coding-region start end coding)
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2176 ;; Rewrite the x-coding-system header according to
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2177 ;; what we did.
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2178 (setq last-coding-system-used coding)
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2179 (rmail-header-add-header
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2180 "X-Coding-System"
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2181 (symbol-name last-coding-system-used))
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2182 (rmail-show-message rmail-current-message))
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2183 (error "No X-Coding-System header found")))
80cb86e7ac6d (rmail-redecode-body): Simplify.
Henrik Enberg <henrik.enberg@telia.com>
parents: 88243
diff changeset
2184 (rmail-header-hide-headers))))))
35471
a06f22cd075b (rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents: 34185
diff changeset
2185
7084
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2186 (defun rmail-highlight-headers ()
88256
db2e6586ecf5 (rmail-msgbeg, rmail-msgend): Fix and make obsolete.
Alex Schroeder <alex@gnu.org>
parents: 88253
diff changeset
2187 "Find all occurrences of certain fields, and highlight them.
db2e6586ecf5 (rmail-msgbeg, rmail-msgend): Fix and make obsolete.
Alex Schroeder <alex@gnu.org>
parents: 88253
diff changeset
2188 The fields highlighted are determined by `rmail-highlighted-headers'.
db2e6586ecf5 (rmail-msgbeg, rmail-msgend): Fix and make obsolete.
Alex Schroeder <alex@gnu.org>
parents: 88253
diff changeset
2189 The face used is stored in the variable `rmail-highlight-face' and
db2e6586ecf5 (rmail-msgbeg, rmail-msgend): Fix and make obsolete.
Alex Schroeder <alex@gnu.org>
parents: 88253
diff changeset
2190 defaults to the face `rmail-highlight-face'."
7084
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2191 ;; Do this only if the system supports faces.
8094
d9c6c2429f85 (rmail-highlight-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents: 7955
diff changeset
2192 (if (and (fboundp 'internal-find-face)
d9c6c2429f85 (rmail-highlight-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents: 7955
diff changeset
2193 rmail-highlighted-headers)
7084
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2194 (save-excursion
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2195 (search-forward "\n\n" nil 'move)
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2196 (save-restriction
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2197 (narrow-to-region (point-min) (point))
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2198 (let ((case-fold-search t)
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2199 (inhibit-read-only t)
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2200 ;; Highlight with boldface if that is available.
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2201 ;; Otherwise use the `highlight' face.
8383
d2b1b642f4e6 (rmail-highlighted-face): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8378
diff changeset
2202 (face (or rmail-highlight-face
d2b1b642f4e6 (rmail-highlighted-face): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8378
diff changeset
2203 (if (face-differs-from-default-p 'bold)
d2b1b642f4e6 (rmail-highlighted-face): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 8378
diff changeset
2204 'bold 'highlight)))
7084
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2205 ;; List of overlays to reuse.
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2206 (overlays rmail-overlay-list))
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2207 (goto-char (point-min))
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2208 (while (re-search-forward rmail-highlighted-headers nil t)
7955
a03d7bdee306 (rmail-highlight-headers): Don't skip newlines, just tab and space.
Richard M. Stallman <rms@gnu.org>
parents: 7696
diff changeset
2209 (skip-chars-forward " \t")
7084
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2210 (let ((beg (point))
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2211 overlay)
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2212 (while (progn (forward-line 1)
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2213 (looking-at "[ \t]")))
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2214 ;; Back up over newline, then trailing spaces or tabs
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2215 (forward-char -1)
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2216 (while (member (preceding-char) '(? ?\t))
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2217 (forward-char -1))
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2218 (if overlays
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2219 ;; Reuse an overlay we already have.
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2220 (progn
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2221 (setq overlay (car overlays)
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2222 overlays (cdr overlays))
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2223 (overlay-put overlay 'face face)
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2224 (move-overlay overlay beg (point)))
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2225 ;; Make a new overlay and add it to
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2226 ;; rmail-overlay-list.
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2227 (setq overlay (make-overlay beg (point)))
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2228 (overlay-put overlay 'face face)
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2229 (setq rmail-overlay-list
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2230 (cons overlay rmail-overlay-list))))))))))
5ceea5b326b6 (rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents: 7065
diff changeset
2231
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2232 ;;; mbox ready
29160
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
2233 (defun rmail-auto-file ()
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
2234 "Automatically move a message into a sub-folder based on criteria.
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
2235 Called when a new message is displayed."
88190
e40931b9db5d (rmail-auto-file): Rewrote test for "filed" using
Alex Schroeder <alex@gnu.org>
parents: 88188
diff changeset
2236 (if (or (member "filed" (rmail-desc-get-keywords rmail-current-message))
29160
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
2237 (not (string= (buffer-file-name)
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
2238 (expand-file-name rmail-file-name))))
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
2239 ;; Do nothing if it's already been filed.
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
2240 nil
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
2241 ;; Find out some basics (common fields)
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
2242 (let ((from (mail-fetch-field "from"))
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
2243 (subj (mail-fetch-field "subject"))
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
2244 (to (concat (mail-fetch-field "to") "," (mail-fetch-field "cc")))
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2245 (directives rmail-automatic-folder-directives)
29160
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
2246 (directive-loop nil)
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
2247 (folder nil))
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2248 (while directives
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2249 (setq folder (car (car directives))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2250 directive-loop (cdr (car directives)))
29160
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
2251 (while (and (car directive-loop)
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
2252 (let ((f (cond
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
2253 ((string= (car directive-loop) "from") from)
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
2254 ((string= (car directive-loop) "to") to)
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
2255 ((string= (car directive-loop) "subject") subj)
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
2256 (t (mail-fetch-field (car directive-loop))))))
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
2257 (and f (string-match (car (cdr directive-loop)) f))))
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
2258 (setq directive-loop (cdr (cdr directive-loop))))
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
2259 ;; If there are no directives left, then it was a complete match.
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
2260 (if (null directive-loop)
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
2261 (if (null folder)
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
2262 (rmail-delete-forward)
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
2263 (if (string= "/dev/null" folder)
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
2264 (rmail-delete-message)
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2265 (rmail-output folder 1 t)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2266 (setq directives nil))))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2267 (setq directives (cdr directives))))))
29160
998506bd35f3 1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents: 29025
diff changeset
2268
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2269 (defun rmail-next-message (n)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2270 "Show following message whether deleted or not.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2271 With prefix arg N, moves forward N messages, or backward if N is negative."
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2272 (interactive "p")
37611
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2273 (set-buffer rmail-buffer)
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2274 (rmail-maybe-set-message-counters)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2275 (rmail-show-message (+ rmail-current-message n)))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2276
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2277 (defun rmail-previous-message (n)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2278 "Show previous message whether deleted or not.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2279 With prefix arg N, moves backward N messages, or forward if N is negative."
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2280 (interactive "p")
45144
30db00c75dbf (rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents: 44141
diff changeset
2281 (rmail-next-message (- n)))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2282
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2283 (defun rmail-next-undeleted-message (n)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2284 "Show following non-deleted message.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2285 With prefix arg N, moves forward N non-deleted messages,
4838
754b38c0e941 (rmail): Really don't get new mail if file name was given.
Richard M. Stallman <rms@gnu.org>
parents: 4819
diff changeset
2286 or backward if N is negative.
754b38c0e941 (rmail): Really don't get new mail if file name was given.
Richard M. Stallman <rms@gnu.org>
parents: 4819
diff changeset
2287
754b38c0e941 (rmail): Really don't get new mail if file name was given.
Richard M. Stallman <rms@gnu.org>
parents: 4819
diff changeset
2288 Returns t if a new message is being shown, nil otherwise."
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2289 (interactive "p")
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2290 (let ((lastwin rmail-current-message)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2291 (current rmail-current-message))
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2292
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2293 ;; Handle forward movement looking for an undeleted message. Move
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2294 ;; forward a message at a time as long as there are subsequent
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2295 ;; messages. Stop if the last message is encountered.
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2296 (while (and (> n 0) (< current rmail-total-messages))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2297 (setq current (1+ current))
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2298 (if (not (rmail-desc-deleted-p current))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2299 (setq lastwin current
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2300 n (1- n))))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2301
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2302 ;; Handle backward movement looking for an undeleted message.
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2303 ;; Move backward a message at a time as long as there are
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2304 ;; preceding messages. Stop if the first message is encountered.
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2305 (while (and (< n 0) (> current 1))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2306 (setq current (1- current))
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2307 (if (not (rmail-desc-deleted-p current))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2308 (setq lastwin current
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2309 n (1+ n))))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2310
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2311 ;; Show the message (even if no movement took place so that the
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2312 ;; delete attribute is marked) and determine the result value.
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2313 (rmail-show-message lastwin)
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2314 (if (/= lastwin rmail-current-message)
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2315 t
4838
754b38c0e941 (rmail): Really don't get new mail if file name was given.
Richard M. Stallman <rms@gnu.org>
parents: 4819
diff changeset
2316 (if (< n 0)
754b38c0e941 (rmail): Really don't get new mail if file name was given.
Richard M. Stallman <rms@gnu.org>
parents: 4819
diff changeset
2317 (message "No previous nondeleted message"))
754b38c0e941 (rmail): Really don't get new mail if file name was given.
Richard M. Stallman <rms@gnu.org>
parents: 4819
diff changeset
2318 (if (> n 0)
754b38c0e941 (rmail): Really don't get new mail if file name was given.
Richard M. Stallman <rms@gnu.org>
parents: 4819
diff changeset
2319 (message "No following nondeleted message"))
754b38c0e941 (rmail): Really don't get new mail if file name was given.
Richard M. Stallman <rms@gnu.org>
parents: 4819
diff changeset
2320 nil)))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2321
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2322 ;;; mbox: ready.
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2323 (defun rmail-previous-undeleted-message (n)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2324 "Show previous non-deleted message.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2325 With prefix argument N, moves backward N non-deleted messages,
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2326 or forward if N is negative."
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2327 (interactive "p")
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2328 (rmail-next-undeleted-message (- n)))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2329
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2330 ;;; mbox: ready.
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2331 (defun rmail-first-message ()
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2332 "Show first message in file."
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2333 (interactive)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2334 (rmail-show-message 1))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2335
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2336 ;;; mbox: ready
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2337 (defun rmail-last-message ()
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2338 "Show last message in file."
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2339 (interactive)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2340 (rmail-show-message rmail-total-messages))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2341
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2342 ;;; mbox: not called
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2343 (defun rmail-what-message ()
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2344 (let ((where (point))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2345 (low 1)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2346 (high rmail-total-messages)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2347 (mid (/ rmail-total-messages 2)))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2348 (while (> (- high low) 1)
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2349 (if (>= where (rmail-desc-get-start mid))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2350 (setq low mid)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2351 (setq high mid))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2352 (setq mid (+ low (/ (- high low) 2))))
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2353 (if (>= where (rmail-desc-get-start high)) high low)))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2354
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2355 (defun rmail-narrow-to-header (msg)
88170
c8c3cfdd5200 (rmail-nuke-pinhead-header, rmail-reformat-message)
Alex Schroeder <alex@gnu.org>
parents: 88167
diff changeset
2356 "Narrow to buffer the headers of message number MSG."
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2357 (save-excursion
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2358 (let ((start (rmail-desc-get-start msg))
88170
c8c3cfdd5200 (rmail-nuke-pinhead-header, rmail-reformat-message)
Alex Schroeder <alex@gnu.org>
parents: 88167
diff changeset
2359 (end (rmail-desc-get-end msg)))
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2360 (widen)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2361 (goto-char start)
88170
c8c3cfdd5200 (rmail-nuke-pinhead-header, rmail-reformat-message)
Alex Schroeder <alex@gnu.org>
parents: 88167
diff changeset
2362 (search-forward "\n\n" end) ; error if we don't find it
c8c3cfdd5200 (rmail-nuke-pinhead-header, rmail-reformat-message)
Alex Schroeder <alex@gnu.org>
parents: 88167
diff changeset
2363 (narrow-to-region start (point)))))
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2364
2076
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
2365 (defun rmail-message-recipients-p (msg recipients &optional primary-only)
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
2366 (save-restriction
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
2367 (or (string-match recipients (or (mail-fetch-field "To") ""))
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
2368 (string-match recipients (or (mail-fetch-field "From") ""))
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
2369 (if (not primary-only)
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
2370 (string-match recipients (or (mail-fetch-field "Cc") ""))))))
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
2371
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2372 (defun rmail-message-regexp-p (msg regexp)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2373 "Return t, if for message number MSG, regexp REGEXP matches in the header."
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2374 (save-excursion
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2375 (save-restriction
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2376 (rmail-narrow-to-header msg)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2377 (re-search-forward regexp nil t))))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2378
37611
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2379 (defun rmail-search-message (msg regexp)
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2380 "Return non-nil, if for message number MSG, regexp REGEXP matches."
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2381 (goto-char (rmail-desc-get-start msg))
37611
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2382 (if rmail-enable-mime
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2383 (funcall rmail-search-mime-message-function msg regexp)
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2384 (re-search-forward regexp (rmail-desc-get-end msg) t)))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2385
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2386 (defvar rmail-search-last-regexp nil)
874
b945f592b94d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
2387 (defun rmail-search (regexp &optional n)
13808
308a47d72b19 (rmail-ignored-headers): Add resent-date, nntp-posting-host.
Karl Heuer <kwzh@gnu.org>
parents: 13724
diff changeset
2388 "Show message containing next match for REGEXP (but not the current msg).
874
b945f592b94d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
2389 Prefix argument gives repeat count; negative argument means search
b945f592b94d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
2390 backwards (through earlier messages).
b945f592b94d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
2391 Interactively, empty argument means use same regexp used last time."
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2392 (interactive
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2393 (let* ((reversep (< (prefix-numeric-value current-prefix-arg) 0))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2394 (prompt
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2395 (concat (if reversep "Reverse " "") "Rmail search (regexp"))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2396 regexp)
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2397 (setq prompt
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2398 (concat prompt
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2399 (if rmail-search-last-regexp
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2400 (concat ", default "
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2401 rmail-search-last-regexp "): ")
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2402 "): ")))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2403 (setq regexp (read-string prompt))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2404 (cond ((not (equal regexp ""))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2405 (setq rmail-search-last-regexp regexp))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2406 ((not rmail-search-last-regexp)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2407 (error "No previous Rmail search string")))
874
b945f592b94d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
2408 (list rmail-search-last-regexp
b945f592b94d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
2409 (prefix-numeric-value current-prefix-arg))))
b945f592b94d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
2410 (or n (setq n 1))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2411 (message "%sRmail search for %s..."
937
0f082d63bfd6 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 874
diff changeset
2412 (if (< n 0) "Reverse " "")
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2413 regexp)
37611
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2414 (set-buffer rmail-buffer)
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2415 (let ((omin (point-min))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2416 (omax (point-max))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2417 (opoint (point))
874
b945f592b94d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
2418 (reversep (< n 0))
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2419 (msg rmail-current-message)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2420 win)
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2421 (unwind-protect
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2422 (progn
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2423 (widen)
874
b945f592b94d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
2424 (while (/= n 0)
b945f592b94d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
2425 ;; Check messages one by one, advancing message number up or down
b945f592b94d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
2426 ;; but searching forward through each message.
b945f592b94d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
2427 (if reversep
b945f592b94d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
2428 (while (and (null win) (> msg 1))
37611
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2429 (setq msg (1- msg)
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2430 win (rmail-search-message msg regexp)))
874
b945f592b94d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
2431 (while (and (null win) (< msg rmail-total-messages))
37611
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2432 (setq msg (1+ msg)
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2433 win (rmail-search-message msg regexp))))
937
0f082d63bfd6 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 874
diff changeset
2434 (setq n (+ n (if reversep 1 -1)))))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2435 (if win
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2436 (progn
37611
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2437 (rmail-show-message msg)
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2438 ;; Search forward (if this is a normal search) or backward
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2439 ;; (if this is a reverse search) through this message to
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2440 ;; position point. This search may fail because REGEXP
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2441 ;; was found in the hidden portion of this message. In
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2442 ;; that case, move point to the beginning of visible
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2443 ;; portion.
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2444 (if reversep
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2445 (progn
37611
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2446 (goto-char (point-max))
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2447 (re-search-backward regexp nil 'move))
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2448 (goto-char (point-min))
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2449 (re-search-forward regexp nil t))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2450 (message "%sRmail search for %s...done"
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2451 (if reversep "Reverse " "")
37611
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2452 regexp))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2453 (goto-char opoint)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2454 (narrow-to-region omin omax)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2455 (ding)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2456 (message "Search failed: %s" regexp)))))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2457
874
b945f592b94d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
2458 (defun rmail-search-backwards (regexp &optional n)
b945f592b94d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
2459 "Show message containing previous match for REGEXP.
b945f592b94d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
2460 Prefix argument gives repeat count; negative argument means search
b945f592b94d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
2461 forward (through later messages).
b945f592b94d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
2462 Interactively, empty argument means use same regexp used last time."
b945f592b94d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
2463 (interactive
937
0f082d63bfd6 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 874
diff changeset
2464 (let* ((reversep (>= (prefix-numeric-value current-prefix-arg) 0))
874
b945f592b94d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
2465 (prompt
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2466 (concat (if reversep "Reverse " "") "Rmail search (regexp"))
874
b945f592b94d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
2467 regexp)
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2468 (setq prompt
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2469 (concat prompt
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2470 (if rmail-search-last-regexp
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2471 (concat ", default "
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2472 rmail-search-last-regexp "): ")
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2473 "): ")))
874
b945f592b94d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
2474 (setq regexp (read-string prompt))
b945f592b94d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
2475 (cond ((not (equal regexp ""))
b945f592b94d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
2476 (setq rmail-search-last-regexp regexp))
b945f592b94d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
2477 ((not rmail-search-last-regexp)
b945f592b94d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
2478 (error "No previous Rmail search string")))
b945f592b94d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
2479 (list rmail-search-last-regexp
b945f592b94d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
2480 (prefix-numeric-value current-prefix-arg))))
12198
74afe5e734a8 (rmail-search-backwards): Default count is 1, not -1.
Karl Heuer <kwzh@gnu.org>
parents: 11552
diff changeset
2481 (rmail-search regexp (- (or n 1))))
874
b945f592b94d *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
2482
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2483 (defun rmail-first-unseen-message ()
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2484 "Show the first message which has not been seen. If all messages
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2485 have been seen, then show the last message."
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2486 (let ((current 1)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2487 found)
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2488 (while (and (not found) (<= current rmail-total-messages))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2489 (if (rmail-desc-attr-p rmail-desc-unseen-index current)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2490 (setq found current))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2491 (setq current (1+ current)))
1342
776d4c59f256 * rmail.el (rmail-first-unseen-message): Don't show the message,
Joseph Arceneaux <jla@gnu.org>
parents: 1267
diff changeset
2492 found))
10662
cd968ab6a0eb (rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10640
diff changeset
2493
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2494 (defun rmail-current-subject ()
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2495 "Return the current subject.
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2496 The subject is stripped of leading and trailing whitespace, and
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2497 of typical reply prefixes such as Re:."
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2498 (let ((subject (or (mail-fetch-field "Subject") "")))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2499 (if (string-match "\\`[ \t]+" subject)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2500 (setq subject (substring subject (match-end 0))))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2501 (if (string-match rmail-reply-regexp subject)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2502 (setq subject (substring subject (match-end 0))))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2503 (if (string-match "[ \t]+\\'" subject)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2504 (setq subject (substring subject 0 (match-beginning 0))))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2505 subject))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2506
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2507 (defun rmail-current-subject-regexp ()
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2508 "Return a regular expression matching the current subject.
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2509 The regular expression matches the subject header line of
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2510 messages about the same subject. The subject itself is stripped
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2511 of leading and trailing whitespace, of typical reply prefixes
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2512 such as Re: and whitespace within the subject is replaced by a
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2513 regular expression matching whitespace in general in order to
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2514 take into account that subject header lines may include newlines
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2515 and more whitespace. The returned regular expressions contains
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2516 `rmail-reply-regexp' and ends with a newline."
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2517 (let ((subject (rmail-current-subject)))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2518 ;; If Subject is long, mailers will break it into several lines at
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2519 ;; arbitrary places, so replace whitespace with a regexp that will
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2520 ;; match any sequence of spaces, TABs, and newlines.
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2521 (setq subject (regexp-quote subject))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2522 (setq subject
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2523 (replace-regexp-in-string "[ \t\n]+" "[ \t\n]+" subject t t))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2524 (concat "^Subject: "
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2525 (if (string= "\\`" (substring rmail-reply-regexp 0 2))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2526 (substring rmail-reply-regexp 2)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2527 rmail-reply-regexp)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2528 subject "[ \t]*\n")))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2529
10662
cd968ab6a0eb (rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10640
diff changeset
2530 (defun rmail-next-same-subject (n)
cd968ab6a0eb (rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10640
diff changeset
2531 "Go to the next mail message having the same subject header.
cd968ab6a0eb (rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10640
diff changeset
2532 With prefix argument N, do this N times.
cd968ab6a0eb (rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10640
diff changeset
2533 If N is negative, go backwards instead."
cd968ab6a0eb (rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10640
diff changeset
2534 (interactive "p")
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2535 (let ((search-regexp (rmail-current-subject-regexp))
15746
d7a83c7ea12a (rmail-next-same-subject): Don't set search-regexp
Karl Heuer <kwzh@gnu.org>
parents: 15549
diff changeset
2536 (forward (> n 0))
d7a83c7ea12a (rmail-next-same-subject): Don't set search-regexp
Karl Heuer <kwzh@gnu.org>
parents: 15549
diff changeset
2537 (i rmail-current-message)
17065
01cba1834368 (rmail-next-same-subject, rmail-reply): Ignore case, to
Karl Heuer <kwzh@gnu.org>
parents: 17011
diff changeset
2538 (case-fold-search t)
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2539 found)
10662
cd968ab6a0eb (rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10640
diff changeset
2540 (save-excursion
cd968ab6a0eb (rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10640
diff changeset
2541 (save-restriction
cd968ab6a0eb (rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10640
diff changeset
2542 (widen)
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2543 (if forward
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2544 (while (and (/= n 0) (< i rmail-total-messages))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2545 (let (done)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2546 (while (and (not done)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2547 (< i rmail-total-messages))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2548 (setq i (+ i 1))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2549 (rmail-narrow-to-header i)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2550 (goto-char (point-min))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2551 (setq done (re-search-forward search-regexp (point-max) t)))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2552 (if done (setq found i)))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2553 (setq n (1- n)))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2554 (while (and (/= n 0) (> i 1))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2555 (let (done)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2556 (while (and (not done) (> i 1))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2557 (setq i (- i 1))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2558 (rmail-narrow-to-header i)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2559 (goto-char (point-min))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2560 (setq done (re-search-forward search-regexp (point-max) t)))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2561 (if done (setq found i)))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2562 (setq n (1+ n))))))
10662
cd968ab6a0eb (rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10640
diff changeset
2563 (if found
cd968ab6a0eb (rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10640
diff changeset
2564 (rmail-show-message found)
cd968ab6a0eb (rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10640
diff changeset
2565 (error "No %s message with same subject"
cd968ab6a0eb (rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10640
diff changeset
2566 (if forward "following" "previous")))))
cd968ab6a0eb (rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10640
diff changeset
2567
cd968ab6a0eb (rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10640
diff changeset
2568 (defun rmail-previous-same-subject (n)
cd968ab6a0eb (rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10640
diff changeset
2569 "Go to the previous mail message having the same subject header.
cd968ab6a0eb (rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10640
diff changeset
2570 With prefix argument N, do this N times.
cd968ab6a0eb (rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10640
diff changeset
2571 If N is negative, go forwards instead."
cd968ab6a0eb (rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10640
diff changeset
2572 (interactive "p")
cd968ab6a0eb (rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10640
diff changeset
2573 (rmail-next-same-subject (- n)))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2574
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2575 ;;;; *** Rmail Message Deletion Commands ***
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2576
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2577 (defun rmail-delete-message ()
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2578 "Delete this message and stay on it."
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2579 (interactive)
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2580 (rmail-desc-set-attribute rmail-desc-deleted-index t rmail-current-message)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2581 (run-hooks 'rmail-delete-message-hook)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2582 (rmail-show-message rmail-current-message))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2583
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2584 (defun rmail-undelete-previous-message ()
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2585 "Back up to deleted message, select it, and undelete it."
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2586 (interactive)
37611
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2587 (set-buffer rmail-buffer)
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2588 (let ((msg rmail-current-message))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2589 (while (and (> msg 0)
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2590 (not (rmail-desc-attr-p rmail-desc-deleted-index msg)))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2591 (setq msg (1- msg)))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2592 (if (= msg 0)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2593 (error "No previous deleted message")
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2594 (rmail-desc-set-attribute rmail-desc-deleted-index nil msg)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2595 (rmail-show-message msg)
2076
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
2596 (if (rmail-summary-exists)
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
2597 (save-excursion
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
2598 (set-buffer rmail-summary-buffer)
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
2599 (rmail-summary-mark-undeleted msg)))
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
2600 (rmail-maybe-display-summary))))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2601
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2602 ;;; mbox: ready
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2603 (defun rmail-delete-forward (&optional backward)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2604 "Delete this message and move to next nondeleted one.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2605 Deleted messages stay in the file until the \\[rmail-expunge] command is given.
4838
754b38c0e941 (rmail): Really don't get new mail if file name was given.
Richard M. Stallman <rms@gnu.org>
parents: 4819
diff changeset
2606 With prefix argument, delete and move backward.
754b38c0e941 (rmail): Really don't get new mail if file name was given.
Richard M. Stallman <rms@gnu.org>
parents: 4819
diff changeset
2607
754b38c0e941 (rmail): Really don't get new mail if file name was given.
Richard M. Stallman <rms@gnu.org>
parents: 4819
diff changeset
2608 Returns t if a new message is displayed after the delete, or nil otherwise."
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2609 (interactive "P")
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2610 (rmail-desc-set-attribute rmail-desc-deleted-index t rmail-current-message)
13477
5c500f39271c (rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents: 13302
diff changeset
2611 (run-hooks 'rmail-delete-message-hook)
2076
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
2612 (let ((del-msg rmail-current-message))
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
2613 (if (rmail-summary-exists)
9394
802381617d14 (rmail-delete-forward): Use rmail-select-summary.
Richard M. Stallman <rms@gnu.org>
parents: 9380
diff changeset
2614 (rmail-select-summary
802381617d14 (rmail-delete-forward): Use rmail-select-summary.
Richard M. Stallman <rms@gnu.org>
parents: 9380
diff changeset
2615 (rmail-summary-mark-deleted del-msg)))
4838
754b38c0e941 (rmail): Really don't get new mail if file name was given.
Richard M. Stallman <rms@gnu.org>
parents: 4819
diff changeset
2616 (prog1 (rmail-next-undeleted-message (if backward -1 1))
754b38c0e941 (rmail): Really don't get new mail if file name was given.
Richard M. Stallman <rms@gnu.org>
parents: 4819
diff changeset
2617 (rmail-maybe-display-summary))))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2618
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2619 ;;; mbox: ready
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2620 (defun rmail-delete-backward ()
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2621 "Delete this message and move to previous nondeleted one.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2622 Deleted messages stay in the file until the \\[rmail-expunge] command is given."
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2623 (interactive)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2624 (rmail-delete-forward t))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2625
34185
f43d562a5b65 (rmail-expunge-confirmed): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 34055
diff changeset
2626 (defun rmail-expunge-confirmed ()
88148
658c777d9be6 (rmail-message-vector, rmail-deleted-vector)
Richard M. Stallman <rms@gnu.org>
parents: 88144
diff changeset
2627 "Return t if deleted message should be expunged. If necessary, ask the user.
34185
f43d562a5b65 (rmail-expunge-confirmed): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 34055
diff changeset
2628 See also user-option `rmail-confirm-expunge'."
37611
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2629 (set-buffer rmail-buffer)
88148
658c777d9be6 (rmail-message-vector, rmail-deleted-vector)
Richard M. Stallman <rms@gnu.org>
parents: 88144
diff changeset
2630 (let ((some-deleted))
658c777d9be6 (rmail-message-vector, rmail-deleted-vector)
Richard M. Stallman <rms@gnu.org>
parents: 88144
diff changeset
2631 (dotimes (i rmail-total-messages)
658c777d9be6 (rmail-message-vector, rmail-deleted-vector)
Richard M. Stallman <rms@gnu.org>
parents: 88144
diff changeset
2632 (if (rmail-desc-deleted-p (1+ i))
658c777d9be6 (rmail-message-vector, rmail-deleted-vector)
Richard M. Stallman <rms@gnu.org>
parents: 88144
diff changeset
2633 (setq some-deleted t)))
658c777d9be6 (rmail-message-vector, rmail-deleted-vector)
Richard M. Stallman <rms@gnu.org>
parents: 88144
diff changeset
2634 (or (not some-deleted)
658c777d9be6 (rmail-message-vector, rmail-deleted-vector)
Richard M. Stallman <rms@gnu.org>
parents: 88144
diff changeset
2635 (null rmail-confirm-expunge)
658c777d9be6 (rmail-message-vector, rmail-deleted-vector)
Richard M. Stallman <rms@gnu.org>
parents: 88144
diff changeset
2636 (funcall rmail-confirm-expunge
658c777d9be6 (rmail-message-vector, rmail-deleted-vector)
Richard M. Stallman <rms@gnu.org>
parents: 88144
diff changeset
2637 "Erase deleted messages from Rmail file? "))))
34185
f43d562a5b65 (rmail-expunge-confirmed): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 34055
diff changeset
2638
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2639 ;;; mbox: ready
2076
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
2640 (defun rmail-only-expunge ()
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2641 "Actually erase all deleted messages in the file."
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2642 (interactive)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2643 (message "Expunging deleted messages...")
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2644
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2645 ;; Discard all undo records for this buffer.
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2646 (or (eq buffer-undo-list t) (setq buffer-undo-list nil))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2647
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2648 ;; Remove the messages from the buffer and from the Rmail message
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2649 ;; descriptor vector.
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2650 (rmail-desc-prune-deleted-messages 'rmail-expunge-callback)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2651
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2652 ;; Update the Rmail message counter, deal with the summary buffer,
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2653 ;; show the current message and update the User status.
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2654 (setq rmail-total-messages (rmail-desc-get-count))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2655 (rmail-show-message rmail-current-message t)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2656 (if rmail-summary-buffer
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2657 (save-excursion
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2658 (set-buffer rmail-summary-buffer)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2659 (rmail-update-summary)))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2660 (message "Expunging deleted messages...done"))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2661
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2662 ;;; We'll deal with this later. -pmr
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2663 ;;; (if rmail-enable-mime
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2664 ;;; (goto-char (+ (point-min) opoint))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2665 ;;; (goto-char (+ (point) opoint))))))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2666
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2667 ;;; mbox: ready
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2668 (defun rmail-expunge-callback (n)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2669 "Called after message N has been pruned to update the current Rmail
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2670 message counter."
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2671 (if (< n rmail-current-message)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2672 (setq rmail-current-message (1- rmail-current-message))))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2673
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2674 ;;; mbox: ready
2076
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
2675 (defun rmail-expunge ()
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
2676 "Erase deleted messages from Rmail file and summary buffer."
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
2677 (interactive)
34185
f43d562a5b65 (rmail-expunge-confirmed): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 34055
diff changeset
2678 (when (rmail-expunge-confirmed)
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2679 (rmail-only-expunge)))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2680
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2681 ;;;; *** Rmail Mailing Commands ***
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2682
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2683 ;;; mbox: In progress. I'm still not happy with the initial citation
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2684 ;;; stuff. -pmr
16633
bd4dbc8ca6f7 (rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents: 16467
diff changeset
2685 (defun rmail-start-mail (&optional noerase to subject in-reply-to cc
bd4dbc8ca6f7 (rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents: 16467
diff changeset
2686 replybuffer sendactions same-window others)
bd4dbc8ca6f7 (rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents: 16467
diff changeset
2687 (let (yank-action)
bd4dbc8ca6f7 (rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents: 16467
diff changeset
2688 (if replybuffer
bd4dbc8ca6f7 (rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents: 16467
diff changeset
2689 (setq yank-action (list 'insert-buffer replybuffer)))
bd4dbc8ca6f7 (rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents: 16467
diff changeset
2690 (setq others (cons (cons "cc" cc) others))
bd4dbc8ca6f7 (rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents: 16467
diff changeset
2691 (setq others (cons (cons "in-reply-to" in-reply-to) others))
bd4dbc8ca6f7 (rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents: 16467
diff changeset
2692 (if same-window
bd4dbc8ca6f7 (rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents: 16467
diff changeset
2693 (compose-mail to subject others
bd4dbc8ca6f7 (rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents: 16467
diff changeset
2694 noerase nil
bd4dbc8ca6f7 (rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents: 16467
diff changeset
2695 yank-action sendactions)
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2696 (if rmail-mail-new-frame
16633
bd4dbc8ca6f7 (rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents: 16467
diff changeset
2697 (prog1
bd4dbc8ca6f7 (rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents: 16467
diff changeset
2698 (compose-mail to subject others
bd4dbc8ca6f7 (rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents: 16467
diff changeset
2699 noerase 'switch-to-buffer-other-frame
bd4dbc8ca6f7 (rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents: 16467
diff changeset
2700 yank-action sendactions)
bd4dbc8ca6f7 (rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents: 16467
diff changeset
2701 ;; This is not a standard frame parameter;
bd4dbc8ca6f7 (rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents: 16467
diff changeset
2702 ;; nothing except sendmail.el looks at it.
bd4dbc8ca6f7 (rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents: 16467
diff changeset
2703 (modify-frame-parameters (selected-frame)
bd4dbc8ca6f7 (rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents: 16467
diff changeset
2704 '((mail-dedicated-frame . t))))
bd4dbc8ca6f7 (rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents: 16467
diff changeset
2705 (compose-mail to subject others
bd4dbc8ca6f7 (rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents: 16467
diff changeset
2706 noerase 'switch-to-buffer-other-window
bd4dbc8ca6f7 (rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents: 16467
diff changeset
2707 yank-action sendactions)))))
4108
e4fbcd480455 (rmail-mail-new-frame): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 4071
diff changeset
2708
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2709 (defun rmail-mail ()
2076
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
2710 "Send mail in another window.
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
2711 While composing the message, use \\[mail-yank-original] to yank the
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
2712 original message into it."
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2713 (interactive)
17093
f8584d52dd48 (rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents: 17065
diff changeset
2714 (rmail-start-mail nil nil nil nil nil rmail-view-buffer))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2715
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2716 (defun rmail-continue ()
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2717 "Continue composing outgoing message previously being composed."
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2718 (interactive)
4108
e4fbcd480455 (rmail-mail-new-frame): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 4071
diff changeset
2719 (rmail-start-mail t))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2720
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2721 ;;; mbox: ready -pmr
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2722 (defun rmail-reply (just-sender)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2723 "Reply to the current message.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2724 Normally include CC: to all other recipients of original message;
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2725 prefix argument means ignore them. While composing the reply,
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2726 use \\[mail-yank-original] to yank the original message into it."
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2727 (interactive "P")
88144
9c50ab53e31f (rmail): Error if file is Babyl format.
Richard M. Stallman <rms@gnu.org>
parents: 88140
diff changeset
2728 (if (= rmail-total-messages 0)
9c50ab53e31f (rmail): Error if file is Babyl format.
Richard M. Stallman <rms@gnu.org>
parents: 88140
diff changeset
2729 (error "No messages in this file"))
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2730 (save-excursion
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2731 (save-restriction
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2732 (let ((msgnum rmail-current-message)
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2733 (display-state (rmail-desc-get-header-display-state
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2734 rmail-current-message))
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2735 from reply-to cc subject date to message-id references
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2736 resent-to resent-cc resent-reply-to)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2737 (rmail-header-show-headers)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2738 (setq from (mail-fetch-field "from")
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2739 reply-to (or (mail-fetch-field "reply-to" nil t) from)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2740 cc (and (not just-sender)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2741 (mail-fetch-field "cc" nil t))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2742 subject (mail-fetch-field "subject")
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2743 date (mail-fetch-field "date")
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2744 to (or (mail-fetch-field "to" nil t) "")
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2745 message-id (mail-fetch-field "message-id")
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2746 references (mail-fetch-field "references" nil nil t)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2747 resent-reply-to (mail-fetch-field "resent-reply-to" nil t)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2748 resent-cc (and (not just-sender)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2749 (mail-fetch-field "resent-cc" nil t))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2750 resent-to (or (mail-fetch-field "resent-to" nil t) ""))
16467
446f51ea7cb8 (rmail-reply): Merge resent-to and resent-cc into to and cc.
Richard M. Stallman <rms@gnu.org>
parents: 16452
diff changeset
2751 ;;; resent-subject (mail-fetch-field "resent-subject")
446f51ea7cb8 (rmail-reply): Merge resent-to and resent-cc into to and cc.
Richard M. Stallman <rms@gnu.org>
parents: 16452
diff changeset
2752 ;;; resent-date (mail-fetch-field "resent-date")
446f51ea7cb8 (rmail-reply): Merge resent-to and resent-cc into to and cc.
Richard M. Stallman <rms@gnu.org>
parents: 16452
diff changeset
2753 ;;; resent-message-id (mail-fetch-field "resent-message-id")
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2754 ;; Merge the resent-to and resent-cc into the to and cc.
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2755 (if (and resent-to (not (equal resent-to "")))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2756 (if (not (equal to ""))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2757 (setq to (concat to ", " resent-to))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2758 (setq to resent-to)))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2759 (if (and resent-cc (not (equal resent-cc "")))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2760 (if (not (equal cc ""))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2761 (setq cc (concat cc ", " resent-cc))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2762 (setq cc resent-cc)))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2763 ;; Add `Re: ' to subject if not there already.
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2764 (and (stringp subject)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2765 (setq subject
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2766 (concat rmail-reply-prefix
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2767 (if (let ((case-fold-search t))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2768 (string-match rmail-reply-regexp subject))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2769 (substring subject (match-end 0))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2770 subject))))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2771 ;; Reset the headers display state before switching to the
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2772 ;; reply buffer.
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2773 (rmail-header-toggle-visibility (if display-state 1 0))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2774
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2775 ;; Now setup the mail reply buffer.
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2776 (rmail-start-mail
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2777 nil
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2778 ;; Using mail-strip-quoted-names is undesirable with newer mailers
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2779 ;; since they can handle the names unstripped.
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2780 ;; I don't know whether there are other mailers that still
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2781 ;; need the names to be stripped.
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2782 (mail-strip-quoted-names reply-to)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2783 subject
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2784 (rmail-make-in-reply-to-field from date message-id)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2785 (if just-sender
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2786 nil
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2787 ;; mail-strip-quoted-names is NOT necessary for rmail-dont-reply-to
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2788 ;; to do its job.
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2789 (let* ((cc-list (rmail-dont-reply-to
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2790 (mail-strip-quoted-names
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2791 (if (null cc) to (concat to ", " cc))))))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2792 (if (string= cc-list "") nil cc-list)))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2793 rmail-view-buffer
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2794 (list (list 'rmail-reply-callback rmail-buffer "answered" t msgnum))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2795 nil
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2796 (list (cons "References" (concat (mapconcat 'identity references " ")
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2797 " " message-id))))))))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2798
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2799 (defun rmail-reply-callback (buffer attr state n)
88144
9c50ab53e31f (rmail): Error if file is Babyl format.
Richard M. Stallman <rms@gnu.org>
parents: 88140
diff changeset
2800 "Mail reply callback function.
9c50ab53e31f (rmail): Error if file is Babyl format.
Richard M. Stallman <rms@gnu.org>
parents: 88140
diff changeset
2801 Sets ATTR (a string) if STATE is
9c50ab53e31f (rmail): Error if file is Babyl format.
Richard M. Stallman <rms@gnu.org>
parents: 88140
diff changeset
2802 non-nil, otherwise clears it. N is the message number.
9c50ab53e31f (rmail): Error if file is Babyl format.
Richard M. Stallman <rms@gnu.org>
parents: 88140
diff changeset
2803 BUFFER, possibly narrowed, contains an mbox mail message."
17565
09d1f6578d7f (rmail-reply): Pass Rmail buffer and msgnum
Richard M. Stallman <rms@gnu.org>
parents: 17306
diff changeset
2804 (save-excursion
09d1f6578d7f (rmail-reply): Pass Rmail buffer and msgnum
Richard M. Stallman <rms@gnu.org>
parents: 17306
diff changeset
2805 (set-buffer buffer)
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2806 (rmail-set-attribute attr state n)))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2807
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2808 (defun rmail-mark-message (msgnum-list attr-index)
88144
9c50ab53e31f (rmail): Error if file is Babyl format.
Richard M. Stallman <rms@gnu.org>
parents: 88140
diff changeset
2809 "Set attribute ATTRIBUTE-INDEX in the message of the car of MSGNUM-LIST.
9c50ab53e31f (rmail): Error if file is Babyl format.
Richard M. Stallman <rms@gnu.org>
parents: 88140
diff changeset
2810 This is used in the send-actions for
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2811 message buffers. MSGNUM-LIST is a list of the form (MSGNUM)."
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2812 (save-excursion
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2813 (let ((n (car msgnum-list)))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2814 (set-buffer rmail-buffer)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2815 (rmail-narrow-to-message n)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2816 (rmail-desc-set-attribute attr-index t n))))
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2817
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2818 (defun rmail-narrow-to-message (n)
88144
9c50ab53e31f (rmail): Error if file is Babyl format.
Richard M. Stallman <rms@gnu.org>
parents: 88140
diff changeset
2819 "Narrow the current (rmail) buffer to bracket message N."
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2820 (widen)
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2821 (narrow-to-region (rmail-desc-get-start n) (rmail-desc-get-end n)))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2822
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2823 (defun rmail-make-in-reply-to-field (from date message-id)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2824 (cond ((not from)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2825 (if message-id
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2826 message-id
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2827 nil))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2828 (mail-use-rfc822
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2829 (require 'rfc822)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2830 (let ((tem (car (rfc822-addresses from))))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2831 (if message-id
19315
f842aabf9735 (rmail-make-in-reply-to-field): Don't cause an
Richard M. Stallman <rms@gnu.org>
parents: 19031
diff changeset
2832 (if (or (not tem)
f842aabf9735 (rmail-make-in-reply-to-field): Don't cause an
Richard M. Stallman <rms@gnu.org>
parents: 19031
diff changeset
2833 (string-match
f842aabf9735 (rmail-make-in-reply-to-field): Don't cause an
Richard M. Stallman <rms@gnu.org>
parents: 19031
diff changeset
2834 (regexp-quote (if (string-match "@[^@]*\\'" tem)
f842aabf9735 (rmail-make-in-reply-to-field): Don't cause an
Richard M. Stallman <rms@gnu.org>
parents: 19031
diff changeset
2835 (substring tem 0
f842aabf9735 (rmail-make-in-reply-to-field): Don't cause an
Richard M. Stallman <rms@gnu.org>
parents: 19031
diff changeset
2836 (match-beginning 0))
f842aabf9735 (rmail-make-in-reply-to-field): Don't cause an
Richard M. Stallman <rms@gnu.org>
parents: 19031
diff changeset
2837 tem))
f842aabf9735 (rmail-make-in-reply-to-field): Don't cause an
Richard M. Stallman <rms@gnu.org>
parents: 19031
diff changeset
2838 message-id))
f842aabf9735 (rmail-make-in-reply-to-field): Don't cause an
Richard M. Stallman <rms@gnu.org>
parents: 19031
diff changeset
2839 ;; missing From, or Message-ID is sufficiently informative
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2840 message-id
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2841 (concat message-id " (" tem ")"))
5692
bb9b20ea092d (rmail-make-in-reply-to-field): Discard text properties from
Richard M. Stallman <rms@gnu.org>
parents: 5611
diff changeset
2842 ;; Copy TEM, discarding text properties.
bb9b20ea092d (rmail-make-in-reply-to-field): Discard text properties from
Richard M. Stallman <rms@gnu.org>
parents: 5611
diff changeset
2843 (setq tem (copy-sequence tem))
bb9b20ea092d (rmail-make-in-reply-to-field): Discard text properties from
Richard M. Stallman <rms@gnu.org>
parents: 5611
diff changeset
2844 (set-text-properties 0 (length tem) nil tem)
bb9b20ea092d (rmail-make-in-reply-to-field): Discard text properties from
Richard M. Stallman <rms@gnu.org>
parents: 5611
diff changeset
2845 (setq tem (copy-sequence tem))
bb9b20ea092d (rmail-make-in-reply-to-field): Discard text properties from
Richard M. Stallman <rms@gnu.org>
parents: 5611
diff changeset
2846 ;; Use prin1 to fake RFC822 quoting
bb9b20ea092d (rmail-make-in-reply-to-field): Discard text properties from
Richard M. Stallman <rms@gnu.org>
parents: 5611
diff changeset
2847 (let ((field (prin1-to-string tem)))
bb9b20ea092d (rmail-make-in-reply-to-field): Discard text properties from
Richard M. Stallman <rms@gnu.org>
parents: 5611
diff changeset
2848 (if date
bb9b20ea092d (rmail-make-in-reply-to-field): Discard text properties from
Richard M. Stallman <rms@gnu.org>
parents: 5611
diff changeset
2849 (concat field "'s message of " date)
bb9b20ea092d (rmail-make-in-reply-to-field): Discard text properties from
Richard M. Stallman <rms@gnu.org>
parents: 5611
diff changeset
2850 field)))))
20681
4a46ac370fc8 (rmail): Don't bind enable-multibyte-characters;
Richard M. Stallman <rms@gnu.org>
parents: 20662
diff changeset
2851 ((let* ((foo "[^][\000-\037()<>@,;:\\\" ]+")
4a46ac370fc8 (rmail): Don't bind enable-multibyte-characters;
Richard M. Stallman <rms@gnu.org>
parents: 20662
diff changeset
2852 (bar "[^][\000-\037()<>@,;:\\\"]+"))
4a46ac370fc8 (rmail): Don't bind enable-multibyte-characters;
Richard M. Stallman <rms@gnu.org>
parents: 20662
diff changeset
2853 ;; These strings both match all non-ASCII characters.
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2854 (or (string-match (concat "\\`[ \t]*\\(" bar
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2855 "\\)\\(<" foo "@" foo ">\\)?[ \t]*\\'")
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2856 ;; "Unix Loser <Foo@bar.edu>" => "Unix Loser"
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2857 from)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2858 (string-match (concat "\\`[ \t]*<" foo "@" foo ">[ \t]*(\\("
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2859 bar "\\))[ \t]*\\'")
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2860 ;; "<Bugs@bar.edu>" (Losing Unix) => "Losing Unix"
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2861 from)))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2862 (let ((start (match-beginning 1))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2863 (end (match-end 1)))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2864 ;; Trim whitespace which above regexp match allows
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2865 (while (and (< start end)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2866 (memq (aref from start) '(?\t ?\ )))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2867 (setq start (1+ start)))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2868 (while (and (< start end)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2869 (memq (aref from (1- end)) '(?\t ?\ )))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2870 (setq end (1- end)))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2871 (let ((field (substring from start end)))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2872 (if date (setq field (concat "message from " field " on " date)))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2873 (if message-id
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2874 ;; "<AA259@bar.edu> (message from Unix Loser on 1-Apr-89)"
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2875 (concat message-id " (" field ")")
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2876 field))))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2877 (t
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2878 ;; If we can't kludge it simply, do it correctly
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2879 (let ((mail-use-rfc822 t))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2880 (rmail-make-in-reply-to-field from date message-id)))))
10970
c71d4c1319e4 (rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10815
diff changeset
2881
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2882 ;;; mbox: ready
2687
37cca1d50b6a (rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents: 2571
diff changeset
2883 (defun rmail-forward (resend)
37cca1d50b6a (rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents: 2571
diff changeset
2884 "Forward the current message to another user.
37cca1d50b6a (rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents: 2571
diff changeset
2885 With prefix argument, \"resend\" the message instead of forwarding it;
37cca1d50b6a (rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents: 2571
diff changeset
2886 see the documentation of `rmail-resend'."
37cca1d50b6a (rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents: 2571
diff changeset
2887 (interactive "P")
88144
9c50ab53e31f (rmail): Error if file is Babyl format.
Richard M. Stallman <rms@gnu.org>
parents: 88140
diff changeset
2888 (if (= rmail-total-messages 0)
9c50ab53e31f (rmail): Error if file is Babyl format.
Richard M. Stallman <rms@gnu.org>
parents: 88140
diff changeset
2889 (error "No messages in this file"))
2687
37cca1d50b6a (rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents: 2571
diff changeset
2890 (if resend
37cca1d50b6a (rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents: 2571
diff changeset
2891 (call-interactively 'rmail-resend)
37611
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2892 (let ((forward-buffer rmail-buffer)
9153
029821174e53 (rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents: 9083
diff changeset
2893 (msgnum rmail-current-message)
2687
37cca1d50b6a (rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents: 2571
diff changeset
2894 (subject (concat "["
37cca1d50b6a (rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents: 2571
diff changeset
2895 (let ((from (or (mail-fetch-field "From")
37cca1d50b6a (rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents: 2571
diff changeset
2896 (mail-fetch-field ">From"))))
37cca1d50b6a (rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents: 2571
diff changeset
2897 (if from
37cca1d50b6a (rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents: 2571
diff changeset
2898 (concat (mail-strip-quoted-names from) ": ")
37cca1d50b6a (rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents: 2571
diff changeset
2899 ""))
37cca1d50b6a (rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents: 2571
diff changeset
2900 (or (mail-fetch-field "Subject") "")
37cca1d50b6a (rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents: 2571
diff changeset
2901 "]")))
16633
bd4dbc8ca6f7 (rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents: 16467
diff changeset
2902 (if (rmail-start-mail
bd4dbc8ca6f7 (rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents: 16467
diff changeset
2903 nil nil subject nil nil nil
17565
09d1f6578d7f (rmail-reply): Pass Rmail buffer and msgnum
Richard M. Stallman <rms@gnu.org>
parents: 17306
diff changeset
2904 (list (list 'rmail-mark-message
17620
30a88c9b3505 (rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 17565
diff changeset
2905 forward-buffer
37611
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2906 (with-current-buffer rmail-buffer
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
2907 (rmail-desc-get-start msgnum))
17565
09d1f6578d7f (rmail-reply): Pass Rmail buffer and msgnum
Richard M. Stallman <rms@gnu.org>
parents: 17306
diff changeset
2908 "forwarded"))
16633
bd4dbc8ca6f7 (rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents: 16467
diff changeset
2909 ;; If only one window, use it for the mail buffer.
bd4dbc8ca6f7 (rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents: 16467
diff changeset
2910 ;; Otherwise, use another window for the mail buffer
bd4dbc8ca6f7 (rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents: 16467
diff changeset
2911 ;; so that the Rmail buffer remains visible
bd4dbc8ca6f7 (rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents: 16467
diff changeset
2912 ;; and sending the mail will get back to it.
bd4dbc8ca6f7 (rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents: 16467
diff changeset
2913 (and (not rmail-mail-new-frame) (one-window-p t)))
9153
029821174e53 (rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents: 9083
diff changeset
2914 ;; The mail buffer is now current.
4263
7c7fa71cfd6e (rmail-last-rmail-file): Initialize to a file name.
Richard M. Stallman <rms@gnu.org>
parents: 4108
diff changeset
2915 (save-excursion
4724
04714985ce20 (rmail-forward): Insert the text right after the header separator.
Richard M. Stallman <rms@gnu.org>
parents: 4698
diff changeset
2916 ;; Insert after header separator--before signature if any.
21864
191bddd991ef (rmail-forward): Use mail-text-start.
Richard M. Stallman <rms@gnu.org>
parents: 21705
diff changeset
2917 (goto-char (mail-text-start))
41511
19496cafe865 2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents: 39298
diff changeset
2918 (if (or rmail-enable-mime rmail-enable-mime-composing)
37611
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2919 (funcall rmail-insert-mime-forwarded-message-function
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2920 forward-buffer)
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2921 (insert "------- Start of forwarded message -------\n")
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2922 ;; Quote lines with `- ' if they start with `-'.
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2923 (let ((beg (point)) end)
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2924 (setq end (point-marker))
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2925 (set-marker-insertion-type end t)
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2926 (insert-buffer-substring forward-buffer)
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2927 (goto-char beg)
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2928 (while (re-search-forward "^-" end t)
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2929 (beginning-of-line)
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2930 (insert "- ")
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2931 (forward-line 1))
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2932 (goto-char end)
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2933 (skip-chars-backward "\n")
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2934 (if (< (point) end)
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2935 (forward-char 1))
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2936 (delete-region (point) end)
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2937 (set-marker end nil))
73f25c014d5c (rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents: 37592
diff changeset
2938 (insert "------- End of forwarded message -------\n"))
9153
029821174e53 (rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents: 9083
diff changeset
2939 (push-mark))))))
10970
c71d4c1319e4 (rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10815
diff changeset
2940
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2941 (defun rmail-resend (address &optional from comment mail-alias-file)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2942 "Resend current message to ADDRESSES.
5274
89b71a85be3e (rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents: 5192
diff changeset
2943 ADDRESSES should be a single address, a string consisting of several
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2944 addresses separated by commas, or a list of addresses.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2945
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2946 Optional FROM is the address to resend the message from, and
19031
369a8580b08e (rmail-resend): Use user-mail-address.
Richard M. Stallman <rms@gnu.org>
parents: 18990
diff changeset
2947 defaults from the value of `user-mail-address'.
369a8580b08e (rmail-resend): Use user-mail-address.
Richard M. Stallman <rms@gnu.org>
parents: 18990
diff changeset
2948 Optional COMMENT is a string to insert as a comment in the resent message.
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2949 Optional ALIAS-FILE is alternate aliases file to be used by sendmail,
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2950 typically for purposes of moderating a list."
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2951 (interactive "sResend to: ")
88144
9c50ab53e31f (rmail): Error if file is Babyl format.
Richard M. Stallman <rms@gnu.org>
parents: 88140
diff changeset
2952 (if (= rmail-total-messages 0)
9c50ab53e31f (rmail): Error if file is Babyl format.
Richard M. Stallman <rms@gnu.org>
parents: 88140
diff changeset
2953 (error "No messages in this file"))
3484
bd26679f0db5 (rmail-resend): Require sendmail and mailalias.
Richard M. Stallman <rms@gnu.org>
parents: 3462
diff changeset
2954 (require 'sendmail)
bd26679f0db5 (rmail-resend): Require sendmail and mailalias.
Richard M. Stallman <rms@gnu.org>
parents: 3462
diff changeset
2955 (require 'mailalias)
37956
b59847354241 (rmail-revert): Modify to work in
Gerd Moellmann <gerd@gnu.org>
parents: 37839
diff changeset
2956 (unless (or (eq rmail-view-buffer (current-buffer))
b59847354241 (rmail-revert): Modify to work in
Gerd Moellmann <gerd@gnu.org>
parents: 37839
diff changeset
2957 (eq rmail-buffer (current-buffer)))
27871
210900dff9a5 (rmail-resend): Verify buffer is really Rmail.
Gerd Moellmann <gerd@gnu.org>
parents: 27643
diff changeset
2958 (error "Not an Rmail buffer"))
19031
369a8580b08e (rmail-resend): Use user-mail-address.
Richard M. Stallman <rms@gnu.org>
parents: 18990
diff changeset
2959 (if (not from) (setq from user-mail-address))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2960 (let ((tembuf (generate-new-buffer " sendmail temp"))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2961 (case-fold-search nil)
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2962 (mail-personal-alias-file
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
2963 (or mail-alias-file mail-personal-alias-file))
23298
116f19dd86dc (rmail-resend): Work properly if invoked from summary.
Karl Heuer <kwzh@gnu.org>
parents: 23293
diff changeset
2964 (mailbuf rmail-buffer))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2965 (unwind-protect
23298
116f19dd86dc (rmail-resend): Work properly if invoked from summary.
Karl Heuer <kwzh@gnu.org>
parents: 23293
diff changeset
2966 (with-current-buffer tembuf
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2967 ;;>> Copy message into temp buffer
37956
b59847354241 (rmail-revert): Modify to work in
Gerd Moellmann <gerd@gnu.org>
parents: 37839
diff changeset
2968 (if rmail-enable-mime
b59847354241 (rmail-revert): Modify to work in
Gerd Moellmann <gerd@gnu.org>
parents: 37839
diff changeset
2969 (funcall rmail-insert-mime-resent-message-function mailbuf)
b59847354241 (rmail-revert): Modify to work in
Gerd Moellmann <gerd@gnu.org>
parents: 37839
diff changeset
2970 (insert-buffer-substring mailbuf))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2971 (goto-char (point-min))
14033
d146539da475 (rmail-retry-failure): Bind inhibit-read-only.
Richard M. Stallman <rms@gnu.org>
parents: 13834
diff changeset
2972 ;; Delete any Sender field, since that's not specifiable.
5274
89b71a85be3e (rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents: 5192
diff changeset
2973 ; Only delete Sender fields in the actual header.
89b71a85be3e (rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents: 5192
diff changeset
2974 (re-search-forward "^$" nil 'move)
89b71a85be3e (rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents: 5192
diff changeset
2975 ; Using "while" here rather than "if" because some buggy mail
89b71a85be3e (rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents: 5192
diff changeset
2976 ; software may have inserted multiple Sender fields.
89b71a85be3e (rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents: 5192
diff changeset
2977 (while (re-search-backward "^Sender:" nil t)
89b71a85be3e (rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents: 5192
diff changeset
2978 (let (beg)
89b71a85be3e (rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents: 5192
diff changeset
2979 (setq beg (point))
89b71a85be3e (rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents: 5192
diff changeset
2980 (forward-line 1)
89b71a85be3e (rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents: 5192
diff changeset
2981 (while (looking-at "[ \t]")
89b71a85be3e (rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents: 5192
diff changeset
2982 (forward-line 1))
89b71a85be3e (rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents: 5192
diff changeset
2983 (delete-region beg (point))))
89b71a85be3e (rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents: 5192
diff changeset
2984 ; Go back to the beginning of the buffer so the Resent- fields
89b71a85be3e (rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents: 5192
diff changeset
2985 ; are inserted there.
89b71a85be3e (rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents: 5192
diff changeset
2986 (goto-char (point-min))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2987 ;;>> Insert resent-from:
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2988 (insert "Resent-From: " from "\n")
4020
a35cd533fda4 (rmail-resend): Use RFC 822 style date in Resent-Date: line.
Richard M. Stallman <rms@gnu.org>
parents: 4010
diff changeset
2989 (insert "Resent-Date: " (mail-rfc822-date) "\n")
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2990 ;;>> Insert resent-to: and bcc if need be.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2991 (let ((before (point)))
4838
754b38c0e941 (rmail): Really don't get new mail if file name was given.
Richard M. Stallman <rms@gnu.org>
parents: 4819
diff changeset
2992 (if mail-self-blind
754b38c0e941 (rmail): Really don't get new mail if file name was given.
Richard M. Stallman <rms@gnu.org>
parents: 4819
diff changeset
2993 (insert "Resent-Bcc: " (user-login-name) "\n"))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2994 (insert "Resent-To: " (if (stringp address)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2995 address
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2996 (mapconcat 'identity address ",\n\t"))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2997 "\n")
11452
a24224fc5a92 (rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents: 11049
diff changeset
2998 ;; Expand abbrevs in the recipients.
8545
2aa8cbd91781 (rmail-resend): Preserve point around expand-mail-aliases.
Richard M. Stallman <rms@gnu.org>
parents: 8533
diff changeset
2999 (save-excursion
11452
a24224fc5a92 (rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents: 11049
diff changeset
3000 (if (featurep 'mailabbrev)
11533
2d1e996c4359 (rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents: 11497
diff changeset
3001 (let ((end (point-marker))
2d1e996c4359 (rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents: 11497
diff changeset
3002 (local-abbrev-table mail-abbrevs)
2d1e996c4359 (rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents: 11497
diff changeset
3003 (old-syntax-table (syntax-table)))
2d1e996c4359 (rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents: 11497
diff changeset
3004 (if (and (not (vectorp mail-abbrevs))
2d1e996c4359 (rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents: 11497
diff changeset
3005 (file-exists-p mail-personal-alias-file))
2d1e996c4359 (rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents: 11497
diff changeset
3006 (build-mail-abbrevs))
44141
264c168daeaa (rmail-resend): Call mail-abbrev-make-syntax-table.
Richard M. Stallman <rms@gnu.org>
parents: 44025
diff changeset
3007 (unless mail-abbrev-syntax-table
264c168daeaa (rmail-resend): Call mail-abbrev-make-syntax-table.
Richard M. Stallman <rms@gnu.org>
parents: 44025
diff changeset
3008 (mail-abbrev-make-syntax-table))
11533
2d1e996c4359 (rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents: 11497
diff changeset
3009 (set-syntax-table mail-abbrev-syntax-table)
2d1e996c4359 (rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents: 11497
diff changeset
3010 (goto-char before)
2d1e996c4359 (rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents: 11497
diff changeset
3011 (while (and (< (point) end)
2d1e996c4359 (rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents: 11497
diff changeset
3012 (progn (forward-word 1)
2d1e996c4359 (rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents: 11497
diff changeset
3013 (<= (point) end)))
2d1e996c4359 (rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents: 11497
diff changeset
3014 (expand-abbrev))
2d1e996c4359 (rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents: 11497
diff changeset
3015 (set-syntax-table old-syntax-table))
11452
a24224fc5a92 (rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents: 11049
diff changeset
3016 (expand-mail-aliases before (point)))))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
3017 ;;>> Set up comment, if any.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
3018 (if (and (sequencep comment) (not (zerop (length comment))))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
3019 (let ((before (point))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
3020 after)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
3021 (insert comment)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
3022 (or (eolp) (insert "\n"))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
3023 (setq after (point))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
3024 (goto-char before)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
3025 (while (< (point) after)
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
3026 (insert "Resent-Comment: ")
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
3027 (forward-line 1))))
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
3028 ;; Don't expand aliases in the destination fields
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
3029 ;; of the original message.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
3030 (let (mail-aliases)
5470
b8e8802d2216 (rmail-resend): Use send-mail-function.
Richard M. Stallman <rms@gnu.org>
parents: 5466
diff changeset
3031 (funcall send-mail-function)))
2687
37cca1d50b6a (rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents: 2571
diff changeset
3032 (kill-buffer tembuf))
23298
116f19dd86dc (rmail-resend): Work properly if invoked from summary.
Karl Heuer <kwzh@gnu.org>
parents: 23293
diff changeset
3033 (with-current-buffer rmail-buffer
116f19dd86dc (rmail-resend): Work properly if invoked from summary.
Karl Heuer <kwzh@gnu.org>
parents: 23293
diff changeset
3034 (rmail-set-attribute "resent" t rmail-current-message))))
10970
c71d4c1319e4 (rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10815
diff changeset
3035
1267
1e1a54ebb29b (mail-unsent-separator): Add another alternative.
Richard M. Stallman <rms@gnu.org>
parents: 1165
diff changeset
3036 (defvar mail-unsent-separator
1370
c017b62c8073 (mail-unsent-separator): Allow "original message" as alternative.
Richard M. Stallman <rms@gnu.org>
parents: 1360
diff changeset
3037 (concat "^ *---+ +Unsent message follows +---+ *$\\|"
c017b62c8073 (mail-unsent-separator): Allow "original message" as alternative.
Richard M. Stallman <rms@gnu.org>
parents: 1360
diff changeset
3038 "^ *---+ +Returned message +---+ *$\\|"
22158
aca5c8cb2c04 (mail-unsent-separator): Handle "returned message follows".
Richard M. Stallman <rms@gnu.org>
parents: 22135
diff changeset
3039 "^ *---+ *Returned mail follows *---+ *$\\|"
10815
52e860d10537 (rmail-retry-failure): Support a new style of failure msg.
Richard M. Stallman <rms@gnu.org>
parents: 10711
diff changeset
3040 "^Start of returned message$\\|"
22610
f5539d91e129 (mail-unsent-separator): Add new alternative.
Richard M. Stallman <rms@gnu.org>
parents: 22591
diff changeset
3041 "^---+ Below this line is a copy of the message.$\\|"
1372
e839dc00fc2e (mail-unsent-separator): Handle "Message text follows".
Richard M. Stallman <rms@gnu.org>
parents: 1370
diff changeset
3042 "^ *---+ +Original message +---+ *$\\|"
1757
7e85913523ef (mail-unsent-separator): Add `-- begin message --'.
Richard M. Stallman <rms@gnu.org>
parents: 1704
diff changeset
3043 "^ *--+ +begin message +--+ *$\\|"
4838
754b38c0e941 (rmail): Really don't get new mail if file name was given.
Richard M. Stallman <rms@gnu.org>
parents: 4819
diff changeset
3044 "^ *---+ +Original message follows +---+ *$\\|"
20984
f27355b19aba (rmail-retry-failure): Don't insist on finding
Karl Heuer <kwzh@gnu.org>
parents: 20953
diff changeset
3045 "^ *---+ +Your message follows +---+ *$\\|"
24929
6ba667635e10 (mail-unsent-separator): Add a missing \\|.
Richard M. Stallman <rms@gnu.org>
parents: 24634
diff changeset
3046 "^|? *---+ +Message text follows: +---+ *|?$\\|"
30100
020fc2e83129 (mail-unsent-separator): Changed "the" to "\\w+", as
Gerd Moellmann <gerd@gnu.org>
parents: 29301
diff changeset
3047 "^ *---+ +This is a copy of \\w+ message, including all the headers.*---+ *$")
8572
1dd6c880b6ea (rmail-retry-failure, mail-unsent-separator): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 8545
diff changeset
3048 "A regexp that matches the separator before the text of a failed message.")
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
3049
17197
7689ab3937cc (rmail-retry-failure): Special handling for mime.
Richard M. Stallman <rms@gnu.org>
parents: 17164
diff changeset
3050 (defvar mail-mime-unsent-header "^Content-Type: message/rfc822 *$"
7689ab3937cc (rmail-retry-failure): Special handling for mime.
Richard M. Stallman <rms@gnu.org>
parents: 17164
diff changeset
3051 "A regexp that matches the header of a MIME body part with a failed message.")
7689ab3937cc (rmail-retry-failure): Special handling for mime.
Richard M. Stallman <rms@gnu.org>
parents: 17164
diff changeset
3052
88125
5da4d43003a3 Modify requires and evals to reduce byte compilation warnings.
Paul Reilly <pmr@pajato.com>
parents: 49082
diff changeset
3053 ;;; NOT DONE
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
3054 (defun rmail-retry-failure ()
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
3055 "Edit a mail message which is based on the contents of the current message.
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
3056 For a message rejected by the mail system, extract the interesting headers and
8572
1dd6c880b6ea (rmail-retry-failure, mail-unsent-separator): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 8545
diff changeset
3057 the body of the original message.
17197
7689ab3937cc (rmail-retry-failure): Special handling for mime.
Richard M. Stallman <rms@gnu.org>
parents: 17164
diff changeset
3058 If the failed message is a MIME multipart message, it is searched for a
7689ab3937cc (rmail-retry-failure): Special handling for mime.
Richard M. Stallman <rms@gnu.org>
parents: 17164
diff changeset
3059 body part with a header which matches the variable `mail-mime-unsent-header'.
7689ab3937cc (rmail-retry-failure): Special handling for mime.
Richard M. Stallman <rms@gnu.org>
parents: 17164
diff changeset
3060 Otherwise, the variable `mail-unsent-separator' should match the string that
9010
9d48b6752dbf (rmail-retry-failure): Copy the whole block of headers from the message
Richard M. Stallman <rms@gnu.org>
parents: 8963
diff changeset
3061 delimits the returned original message.
9d48b6752dbf (rmail-retry-failure): Copy the whole block of headers from the message
Richard M. Stallman <rms@gnu.org>
parents: 8963
diff changeset
3062 The variable `rmail-retry-ignored-headers' is a regular expression
9d48b6752dbf (rmail-retry-failure): Copy the whole block of headers from the message
Richard M. Stallman <rms@gnu.org>
parents: 8963
diff changeset
3063 specifying headers which should not be copied into the new message."
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
3064 (interactive)
88144
9c50ab53e31f (rmail): Error if file is Babyl format.
Richard M. Stallman <rms@gnu.org>
parents: 88140
diff changeset
3065 (if (= rmail-total-messages 0)
9c50ab53e31f (rmail): Error if file is Babyl format.
Richard M. Stallman <rms@gnu.org>
parents: 88140
diff changeset
3066 (error "No messages in this file"))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
3067 (require 'mail-utils)
17821
c0422adc1b0e (rmail-retry-failure): Rename local to rmail-this-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 17762
diff changeset
3068 (let ((rmail-this-buffer (current-buffer))
13808
308a47d72b19 (rmail-ignored-headers): Add resent-date, nntp-posting-host.
Karl Heuer <kwzh@gnu.org>
parents: 13724
diff changeset
3069 (msgnum rmail-current-message)
38228
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3070 bounce-start bounce-end bounce-indent resending
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3071 ;; Fetch any content-type header in current message
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3072 ;; Must search thru the whole unpruned header.
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3073 (content-type
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3074 (save-excursion
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3075 (save-restriction
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3076 (rmail-narrow-to-non-pruned-header)
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3077 (mail-fetch-field "Content-Type") ))))
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3078 (save-excursion
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3079 (goto-char (point-min))
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3080 (let ((case-fold-search t))
45144
30db00c75dbf (rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents: 44141
diff changeset
3081 (if (and content-type
30db00c75dbf (rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents: 44141
diff changeset
3082 (string-match
30db00c75dbf (rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents: 44141
diff changeset
3083 ";[\n\t ]*boundary=\"?\\([-0-9a-z'()+_,./:=? ]+\\)\"?"
38228
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3084 content-type))
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3085 ;; Handle a MIME multipart bounce message.
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3086 (let ((codestring
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3087 (concat "\n--"
45144
30db00c75dbf (rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents: 44141
diff changeset
3088 (substring content-type (match-beginning 1)
38228
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3089 (match-end 1)))))
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3090 (unless (re-search-forward mail-mime-unsent-header nil t)
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3091 (error "Cannot find beginning of header in failed message"))
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3092 (unless (search-forward "\n\n" nil t)
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3093 (error "Cannot find start of Mime data in failed message"))
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3094 (setq bounce-start (point))
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3095 (if (search-forward codestring nil t)
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3096 (setq bounce-end (match-beginning 0))
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3097 (setq bounce-end (point-max))))
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3098 ;; Non-MIME bounce.
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3099 (or (re-search-forward mail-unsent-separator nil t)
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3100 (error "Cannot parse this as a failure message"))
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3101 (skip-chars-forward "\n")
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3102 ;; Support a style of failure message in which the original
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3103 ;; message is indented, and included within lines saying
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3104 ;; `Start of returned message' and `End of returned message'.
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3105 (if (looking-at " +Received:")
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3106 (progn
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3107 (setq bounce-start (point))
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3108 (skip-chars-forward " ")
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3109 (setq bounce-indent (- (current-column)))
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3110 (goto-char (point-max))
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3111 (re-search-backward "^End of returned message$" nil t)
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3112 (setq bounce-end (point)))
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3113 ;; One message contained a few random lines before
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3114 ;; the old message header. The first line of the
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3115 ;; message started with two hyphens. A blank line
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3116 ;; followed these random lines. The same line
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3117 ;; beginning with two hyphens was possibly marking
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3118 ;; the end of the message.
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3119 (if (looking-at "^--")
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3120 (let ((boundary (buffer-substring-no-properties
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3121 (point)
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3122 (progn (end-of-line) (point)))))
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3123 (search-forward "\n\n")
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3124 (skip-chars-forward "\n")
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3125 (setq bounce-start (point))
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3126 (goto-char (point-max))
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3127 (search-backward (concat "\n\n" boundary) bounce-start t)
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3128 (setq bounce-end (point)))
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3129 (setq bounce-start (point)
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3130 bounce-end (point-max)))
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3131 (unless (search-forward "\n\n" nil t)
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3132 (error "Cannot find end of header in failed message"))))))
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3133 ;; We have found the message that bounced, within the current message.
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3134 ;; Now start sending new message; default header fields from original.
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3135 ;; Turn off the usual actions for initializing the message body
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3136 ;; because we want to get only the text from the failure message.
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3137 (let (mail-signature mail-setup-hook)
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3138 (if (rmail-start-mail nil nil nil nil nil rmail-this-buffer
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3139 (list (list 'rmail-mark-message
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3140 rmail-this-buffer
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3141 (aref rmail-msgref-vector msgnum)
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3142 "retried")))
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3143 ;; Insert original text as initial text of new draft message.
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3144 ;; Bind inhibit-read-only since the header delimiter
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3145 ;; of the previous message was probably read-only.
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3146 (let ((inhibit-read-only t)
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3147 rmail-displayed-headers
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3148 rmail-ignored-headers)
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3149 (erase-buffer)
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3150 (insert-buffer-substring rmail-this-buffer
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3151 bounce-start bounce-end)
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3152 (goto-char (point-min))
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3153 (if bounce-indent
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3154 (indent-rigidly (point-min) (point-max) bounce-indent))
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3155 (rmail-clear-headers rmail-retry-ignored-headers)
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3156 (rmail-clear-headers "^sender:\\|^return-path:\\|^received:")
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3157 (mail-sendmail-delimit-header)
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3158 (save-restriction
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3159 (narrow-to-region (point-min) (mail-header-end))
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3160 (setq resending (mail-fetch-field "resent-to"))
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3161 (if mail-self-blind
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3162 (if resending
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3163 (insert "Resent-Bcc: " (user-login-name) "\n")
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3164 (insert "BCC: " (user-login-name) "\n"))))
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3165 (goto-char (point-min))
812026b169d4 (rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents: 38191
diff changeset
3166 (mail-position-on-field (if resending "Resent-To" "To") t))))))
10970
c71d4c1319e4 (rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10815
diff changeset
3167
2076
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
3168 (defun rmail-summary-exists ()
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
3169 "Non-nil iff in an RMAIL buffer and an associated summary buffer exists.
6408
185b1fd3a525 (rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 6389
diff changeset
3170 In fact, the non-nil value returned is the summary buffer itself."
2076
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
3171 (and rmail-summary-buffer (buffer-name rmail-summary-buffer)
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
3172 rmail-summary-buffer))
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
3173
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
3174 (defun rmail-summary-displayed ()
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
3175 "t iff in RMAIL buffer and an associated summary buffer is displayed."
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
3176 (and rmail-summary-buffer (get-buffer-window rmail-summary-buffer)))
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
3177
17630
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
3178 (defcustom rmail-redisplay-summary nil
2076
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
3179 "*Non-nil means Rmail should show the summary when it changes.
17630
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
3180 This has an effect only if a summary buffer exists."
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
3181 :type 'boolean
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
3182 :group 'rmail-summary)
2076
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
3183
17630
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
3184 (defcustom rmail-summary-window-size nil
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
3185 "*Non-nil means specify the height for an Rmail summary window."
20261
a1ca84bd10fd (rmail-summary-window-size): Allow integer values.
Karl Heuer <kwzh@gnu.org>
parents: 20053
diff changeset
3186 :type '(choice (const :tag "Disabled" nil) integer)
17630
de5770c149d9 Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17620
diff changeset
3187 :group 'rmail-summary)
6408
185b1fd3a525 (rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 6389
diff changeset
3188
2076
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
3189 ;; Put the summary buffer back on the screen, if user wants that.
5140299129c3 (rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents: 2006
diff changeset
3190 (defun rmail-maybe-display-summary ()
6408
185b1fd3a525 (rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 6389
diff changeset
3191 (let ((selected (selected-window))
185b1fd3a525 (rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 6389
diff changeset
3192 window)
185b1fd3a525 (rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 6389
diff changeset
3193 ;; If requested, make sure the summary is displayed.
185b1fd3a525 (rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 6389
diff changeset
3194 (and rmail-summary-buffer (buffer-name rmail-summary-buffer)
185b1fd3a525 (rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 6389
diff changeset
3195 rmail-redisplay-summary
8533
a0af63b5bc45 (rmail-retry-failure): Narrow to just the old header
Richard M. Stallman <rms@gnu.org>
parents: 8506
diff changeset
3196 (if (get-buffer-window rmail-summary-buffer 0)
a0af63b5bc45 (rmail-retry-failure): Narrow to just the old header
Richard M. Stallman <rms@gnu.org>
parents: 8506
diff changeset
3197 ;; It's already in some frame; show that one.
a0af63b5bc45 (rmail-retry-failure): Narrow to just the old header
Richard M. Stallman <rms@gnu.org>
parents: 8506
diff changeset
3198 (let ((frame (window-frame
a0af63b5bc45 (rmail-retry-failure): Narrow to just the old header
Richard M. Stallman <rms@gnu.org>
parents: 8506
diff changeset
3199 (get-buffer-window rmail-summary-buffer 0))))
a0af63b5bc45 (rmail-retry-failure): Narrow to just the old header
Richard M. Stallman <rms@gnu.org>
parents: 8506
diff changeset
3200 (make-frame-visible frame)
a0af63b5bc45 (rmail-retry-failure): Narrow to just the old header
Richard M. Stallman <rms@gnu.org>
parents: 8506
diff changeset
3201 (raise-frame frame))
a0af63b5bc45 (rmail-retry-failure): Narrow to just the old header
Richard M. Stallman <rms@gnu.org>
parents: 8506
diff changeset
3202 (display-buffer rmail-summary-buffer)))
6408
185b1fd3a525 (rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 6389
diff changeset
3203 ;; If requested, set the height of the summary window.
185b1fd3a525 (rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 6389
diff changeset
3204 (and rmail-summary-buffer (buffer-name rmail-summary-buffer)
185b1fd3a525 (rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 6389
diff changeset
3205 rmail-summary-window-size
185b1fd3a525 (rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 6389
diff changeset
3206 (setq window (get-buffer-window rmail-summary-buffer))
8533
a0af63b5bc45 (rmail-retry-failure): Narrow to just the old header
Richard M. Stallman <rms@gnu.org>
parents: 8506
diff changeset
3207 ;; Don't try to change the size if just one window in frame.
a0af63b5bc45 (rmail-retry-failure): Narrow to just the old header
Richard M. Stallman <rms@gnu.org>
parents: 8506
diff changeset
3208 (not (eq window (frame-root-window (window-frame window))))
45144
30db00c75dbf (rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents: 44141
diff changeset
3209 (unwind-protect
6408
185b1fd3a525 (rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 6389
diff changeset
3210 (progn
185b1fd3a525 (rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 6389
diff changeset
3211 (select-window window)
14779
afbd0214f6ec Must fontify only if we're actually showing a message.
Simon Marshall <simon@gnu.org>
parents: 14749
diff changeset
3212 (enlarge-window (- rmail-summary-window-size (window-height))))
6408
185b1fd3a525 (rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 6389
diff changeset
3213 (select-window selected)))))
270
f8d0e0ecd474 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
3214
14374
e2423983be05 Support for local fontification.
Simon Marshall <simon@gnu.org>
parents: 14370
diff changeset
3215 ;;;; *** Rmail Local Fontification ***
e2423983be05 Support for local fontification.
Simon Marshall <simon@gnu.org>
parents: 14370
diff changeset
3216
e2423983be05 Support for local fontification.
Simon Marshall <simon@gnu.org>
parents: 14370
diff changeset
3217 (defun rmail-fontify-buffer-function ()
e2423983be05 Support for local fontification.
Simon Marshall <simon@gnu.org>
parents: 14370
diff changeset
3218 ;; This function's symbol is bound to font-lock-fontify-buffer-function.
14467
f95ca90841d7 Fix up specialised fontification stuff.
Simon Marshall <simon@gnu.org>
parents: 14374
diff changeset
3219 (add-hook 'rmail-show-message-hook 'rmail-fontify-message nil t)
14779
afbd0214f6ec Must fontify only if we're actually showing a message.
Simon Marshall <simon@gnu.org>
parents: 14749
diff changeset
3220 ;; If we're already showing a message, fontify it now.
afbd0214f6ec Must fontify only if we're actually showing a message.
Simon Marshall <simon@gnu.org>
parents: 14749
diff changeset
3221 (if rmail-current-message (rmail-fontify-message))
afbd0214f6ec Must fontify only if we're actually showing a message.
Simon Marshall <simon@gnu.org>
parents: 14749
diff changeset
3222 ;; Prevent Font Lock mode from kicking in.
14467
f95ca90841d7 Fix up specialised fontification stuff.
Simon Marshall <simon@gnu.org>
parents: 14374
diff changeset
3223 (setq font-lock-fontified t))
14374
e2423983be05 Support for local fontification.
Simon Marshall <simon@gnu.org>
parents: 14370
diff changeset
3224
e2423983be05 Support for local fontification.
Simon Marshall <simon@gnu.org>
parents: 14370
diff changeset
3225 (defun rmail-unfontify-buffer-function ()
e2423983be05 Support for local fontification.
Simon Marshall <simon@gnu.org>
parents: 14370
diff changeset
3226 ;; This function's symbol is bound to font-lock-fontify-unbuffer-function.
14467
f95ca90841d7 Fix up specialised fontification stuff.
Simon Marshall <simon@gnu.org>
parents: 14374
diff changeset
3227 (let ((modified (buffer-modified-p))
f95ca90841d7 Fix up specialised fontification stuff.
Simon Marshall <simon@gnu.org>
parents: 14374
diff changeset
3228 (buffer-undo-list t) (inhibit-read-only t)
f95ca90841d7 Fix up specialised fontification stuff.
Simon Marshall <simon@gnu.org>
parents: 14374
diff changeset
3229 before-change-functions after-change-functions
f95ca90841d7 Fix up specialised fontification stuff.
Simon Marshall <simon@gnu.org>
parents: 14374
diff changeset
3230 buffer-file-name buffer-file-truename)
f95ca90841d7 Fix up specialised fontification stuff.
Simon Marshall <simon@gnu.org>
parents: 14374
diff changeset
3231 (save-restriction
f95ca90841d7 Fix up specialised fontification stuff.
Simon Marshall <simon@gnu.org>
parents: 14374
diff changeset
3232 (widen)
f95ca90841d7 Fix up specialised fontification stuff.
Simon Marshall <simon@gnu.org>
parents: 14374
diff changeset
3233 (remove-hook 'rmail-show-message-hook 'rmail-fontify-message t)
f95ca90841d7 Fix up specialised fontification stuff.
Simon Marshall <simon@gnu.org>
parents: 14374
diff changeset
3234 (remove-text-properties (point-min) (point-max) '(rmail-fontified nil))
14898
467e9d219590 (rmail-fontify-message, rmail-unfontify-buffer-function):
Richard M. Stallman <rms@gnu.org>
parents: 14779
diff changeset
3235 (font-lock-default-unfontify-buffer)
467e9d219590 (rmail-fontify-message, rmail-unfontify-buffer-function):
Richard M. Stallman <rms@gnu.org>
parents: 14779
diff changeset
3236 (and (not modified) (buffer-modified-p) (set-buffer-modified-p nil)))))
14374
e2423983be05 Support for local fontification.
Simon Marshall <simon@gnu.org>
parents: 14370
diff changeset
3237
e2423983be05 Support for local fontification.
Simon Marshall <simon@gnu.org>
parents: 14370
diff changeset
3238 (defun rmail-fontify-message ()
e2423983be05 Support for local fontification.
Simon Marshall <simon@gnu.org>
parents: 14370
diff changeset
3239 ;; Fontify the current message if it is not already fontified.
e2423983be05 Support for local fontification.
Simon Marshall <simon@gnu.org>
parents: 14370
diff changeset
3240 (if (text-property-any (point-min) (point-max) 'rmail-fontified nil)
e2423983be05 Support for local fontification.
Simon Marshall <simon@gnu.org>
parents: 14370
diff changeset
3241 (let ((modified (buffer-modified-p))
e2423983be05 Support for local fontification.
Simon Marshall <simon@gnu.org>
parents: 14370
diff changeset
3242 (buffer-undo-list t) (inhibit-read-only t)
e2423983be05 Support for local fontification.
Simon Marshall <simon@gnu.org>
parents: 14370
diff changeset
3243 before-change-functions after-change-functions
e2423983be05 Support for local fontification.
Simon Marshall <simon@gnu.org>
parents: 14370
diff changeset
3244 buffer-file-name buffer-file-truename)
e2423983be05 Support for local fontification.
Simon Marshall <simon@gnu.org>
parents: 14370
diff changeset
3245 (save-excursion
e2423983be05 Support for local fontification.
Simon Marshall <simon@gnu.org>
parents: 14370
diff changeset
3246 (save-match-data
e2423983be05 Support for local fontification.
Simon Marshall <simon@gnu.org>
parents: 14370
diff changeset
3247 (add-text-properties (point-min) (point-max) '(rmail-fontified t))
14898
467e9d219590 (rmail-fontify-message, rmail-unfontify-buffer-function):
Richard M. Stallman <rms@gnu.org>
parents: 14779
diff changeset
3248 (font-lock-fontify-region (point-min) (point-max))
467e9d219590 (rmail-fontify-message, rmail-unfontify-buffer-function):
Richard M. Stallman <rms@gnu.org>
parents: 14779
diff changeset
3249 (and (not modified) (buffer-modified-p) (set-buffer-modified-p nil)))))))
22732
3408cd75e193 No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents: 22724
diff changeset
3250
20757
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3251 ;;; Speedbar support for RMAIL files.
22732
3408cd75e193 No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents: 22724
diff changeset
3252 (eval-when-compile (require 'speedbar))
3408cd75e193 No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents: 22724
diff changeset
3253
3408cd75e193 No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents: 22724
diff changeset
3254 (defvar rmail-speedbar-match-folder-regexp "^[A-Z0-9]+\\(\\.[A-Z0-9]+\\)?$"
47024
15430c8d0eaa * startup.el (normal-splash-screen): Ensure splash buffer is
John Paul Wallington <jpw@pobox.com>
parents: 46924
diff changeset
3255 "*This regex is used to match folder names to be displayed in speedbar.
22732
3408cd75e193 No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents: 22724
diff changeset
3256 Enabling this will permit speedbar to display your folders for easy
3408cd75e193 No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents: 22724
diff changeset
3257 browsing, and moving of messages.")
20757
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3258
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3259 (defvar rmail-speedbar-last-user nil
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3260 "The last user to be displayed in the speedbar.")
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3261
22732
3408cd75e193 No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents: 22724
diff changeset
3262 (defvar rmail-speedbar-key-map nil
3408cd75e193 No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents: 22724
diff changeset
3263 "Keymap used when in rmail display mode.")
3408cd75e193 No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents: 22724
diff changeset
3264
3408cd75e193 No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents: 22724
diff changeset
3265 (defun rmail-install-speedbar-variables ()
3408cd75e193 No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents: 22724
diff changeset
3266 "Install those variables used by speedbar to enhance rmail."
3408cd75e193 No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents: 22724
diff changeset
3267 (if rmail-speedbar-key-map
3408cd75e193 No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents: 22724
diff changeset
3268 nil
3408cd75e193 No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents: 22724
diff changeset
3269 (setq rmail-speedbar-key-map (speedbar-make-specialized-keymap))
3408cd75e193 No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents: 22724
diff changeset
3270
3408cd75e193 No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents: 22724
diff changeset
3271 (define-key rmail-speedbar-key-map "e" 'speedbar-edit-line)
3408cd75e193 No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents: 22724
diff changeset
3272 (define-key rmail-speedbar-key-map "r" 'speedbar-edit-line)
3408cd75e193 No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents: 22724
diff changeset
3273 (define-key rmail-speedbar-key-map "\C-m" 'speedbar-edit-line)
3408cd75e193 No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents: 22724
diff changeset
3274 (define-key rmail-speedbar-key-map "M"
3408cd75e193 No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents: 22724
diff changeset
3275 'rmail-speedbar-move-message-to-folder-on-line)))
3408cd75e193 No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents: 22724
diff changeset
3276
20757
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3277 (defvar rmail-speedbar-menu-items
22732
3408cd75e193 No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents: 22724
diff changeset
3278 '(["Read Folder" speedbar-edit-line t]
3408cd75e193 No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents: 22724
diff changeset
3279 ["Move message to folder" rmail-speedbar-move-message-to-folder-on-line
20757
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3280 (save-excursion (beginning-of-line)
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3281 (looking-at "<M> "))])
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3282 "Additional menu-items to add to speedbar frame.")
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3283
22732
3408cd75e193 No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents: 22724
diff changeset
3284 ;; Make sure our special speedbar major mode is loaded
3408cd75e193 No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents: 22724
diff changeset
3285 (if (featurep 'speedbar)
3408cd75e193 No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents: 22724
diff changeset
3286 (rmail-install-speedbar-variables)
3408cd75e193 No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents: 22724
diff changeset
3287 (add-hook 'speedbar-load-hook 'rmail-install-speedbar-variables))
3408cd75e193 No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents: 22724
diff changeset
3288
20757
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3289 (defun rmail-speedbar-buttons (buffer)
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3290 "Create buttons for BUFFER containing rmail messages.
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3291 Click on the address under Reply to: to reply to this person.
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3292 Under Folders: Click a name to read it, or on the <M> to move the
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3293 current message into that RMAIL folder."
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3294 (let ((from nil))
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3295 (save-excursion
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3296 (set-buffer buffer)
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3297 (goto-char (point-min))
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3298 (if (not (re-search-forward "^Reply-To: " nil t))
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3299 (if (not (re-search-forward "^From:? " nil t))
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3300 (setq from t)))
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3301 (if from
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3302 nil
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3303 (setq from (buffer-substring (point) (save-excursion
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3304 (end-of-line)
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3305 (point))))))
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3306 (goto-char (point-min))
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3307 (if (and (looking-at "Reply to:")
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3308 (equal from rmail-speedbar-last-user))
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3309 nil
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3310 (setq rmail-speedbar-last-user from)
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3311 (erase-buffer)
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3312 (insert "Reply To:\n")
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3313 (if (stringp from)
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3314 (speedbar-insert-button from 'speedbar-directory-face 'highlight
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3315 'rmail-speedbar-button 'rmail-reply))
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3316 (insert "Folders:\n")
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3317 (let* ((case-fold-search nil)
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3318 (df (directory-files (save-excursion (set-buffer buffer)
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3319 default-directory)
22732
3408cd75e193 No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents: 22724
diff changeset
3320 nil rmail-speedbar-match-folder-regexp)))
20757
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3321 (while df
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3322 (speedbar-insert-button "<M>" 'speedbar-button-face 'highlight
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3323 'rmail-speedbar-move-message (car df))
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3324 (speedbar-insert-button (car df) 'speedbar-file-face 'highlight
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3325 'rmail-speedbar-find-file nil t)
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3326 (setq df (cdr df)))))))
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3327
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3328 (defun rmail-speedbar-button (text token indent)
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3329 "Execute an rmail command specified by TEXT.
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3330 The command used is TOKEN. INDENT is not used."
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3331 (speedbar-with-attached-buffer
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3332 (funcall token t)))
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3333
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3334 (defun rmail-speedbar-find-file (text token indent)
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3335 "Load in the rmail file TEXT.
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3336 TOKEN and INDENT are not used."
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3337 (speedbar-with-attached-buffer
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3338 (message "Loading in RMAIL file %s..." text)
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3339 (find-file text)))
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3340
22732
3408cd75e193 No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents: 22724
diff changeset
3341 (defun rmail-speedbar-move-message-to-folder-on-line ()
20757
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3342 "If the current line is a folder, move current message to it."
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3343 (interactive)
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3344 (save-excursion
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3345 (beginning-of-line)
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3346 (if (re-search-forward "<M> " (save-excursion (end-of-line) (point)) t)
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3347 (progn
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3348 (forward-char -2)
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3349 (speedbar-do-function-pointer)))))
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3350
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3351 (defun rmail-speedbar-move-message (text token indent)
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3352 "From button TEXT, copy current message to the rmail file specified by TOKEN.
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3353 TEXT and INDENT are not used."
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3354 (speedbar-with-attached-buffer
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3355 (message "Moving message to %s" token)
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3356 (rmail-output-to-rmail-file token)))
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3357
22838
4b3e0d38cdb0 (rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents: 22732
diff changeset
3358 ; Functions for setting, getting and encoding the POP password.
4b3e0d38cdb0 (rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents: 22732
diff changeset
3359 ; The password is encoded to prevent it from being easily accessible
4b3e0d38cdb0 (rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents: 22732
diff changeset
3360 ; to "prying eyes." Obviously, this encoding isn't "real security,"
4b3e0d38cdb0 (rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents: 22732
diff changeset
3361 ; nor is it meant to be.
4b3e0d38cdb0 (rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents: 22732
diff changeset
3362
4b3e0d38cdb0 (rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents: 22732
diff changeset
3363 ;;;###autoload
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3364 (defun rmail-set-remote-password (password)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3365 "Set PASSWORD to be used for retrieving mail from a POP or IMAP server."
22838
4b3e0d38cdb0 (rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents: 22732
diff changeset
3366 (interactive "sPassword: ")
4b3e0d38cdb0 (rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents: 22732
diff changeset
3367 (if password
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3368 (setq rmail-encoded-remote-password
22838
4b3e0d38cdb0 (rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents: 22732
diff changeset
3369 (rmail-encode-string password (emacs-pid)))
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3370 (setq rmail-remote-password nil)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3371 (setq rmail-encoded-remote-password nil)))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3372
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3373 (defun rmail-get-remote-password (imap)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3374 "Get the password for retrieving mail from a POP or IMAP server. If none
22838
4b3e0d38cdb0 (rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents: 22732
diff changeset
3375 has been set, then prompt the user for one."
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3376 (when (not rmail-encoded-remote-password)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3377 (if (not rmail-remote-password)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3378 (setq rmail-remote-password
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3379 (read-passwd (if imap
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3380 "IMAP password: "
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3381 "POP password: "))))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3382 (rmail-set-remote-password rmail-remote-password)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3383 (setq rmail-remote-password nil))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3384 (rmail-encode-string rmail-encoded-remote-password (emacs-pid)))
22838
4b3e0d38cdb0 (rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents: 22732
diff changeset
3385
4b3e0d38cdb0 (rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents: 22732
diff changeset
3386 (defun rmail-have-password ()
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3387 (or rmail-remote-password rmail-encoded-remote-password))
22838
4b3e0d38cdb0 (rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents: 22732
diff changeset
3388
4b3e0d38cdb0 (rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents: 22732
diff changeset
3389 (defun rmail-encode-string (string mask)
4b3e0d38cdb0 (rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents: 22732
diff changeset
3390 "Encode STRING with integer MASK, by taking the exclusive OR of the
4b3e0d38cdb0 (rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents: 22732
diff changeset
3391 lowest byte in the mask with the first character of string, the
4b3e0d38cdb0 (rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents: 22732
diff changeset
3392 second-lowest-byte with the second character of the string, etc.,
4b3e0d38cdb0 (rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents: 22732
diff changeset
3393 restarting at the lowest byte of the mask whenever it runs out.
4b3e0d38cdb0 (rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents: 22732
diff changeset
3394 Returns the encoded string. Calling the function again with an
4b3e0d38cdb0 (rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents: 22732
diff changeset
3395 encoded string (and the same mask) will decode the string."
23969
3e4e87cddb85 (rmail-encode-string): Make sure mask value is
Richard M. Stallman <rms@gnu.org>
parents: 23750
diff changeset
3396 (setq mask (abs mask)) ; doesn't work if negative
45144
30db00c75dbf (rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents: 44141
diff changeset
3397 (let* ((string-vector (string-to-vector string)) (i 0)
22838
4b3e0d38cdb0 (rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents: 22732
diff changeset
3398 (len (length string-vector)) (curmask mask) charmask)
4b3e0d38cdb0 (rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents: 22732
diff changeset
3399 (while (< i len)
4b3e0d38cdb0 (rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents: 22732
diff changeset
3400 (if (= curmask 0)
4b3e0d38cdb0 (rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents: 22732
diff changeset
3401 (setq curmask mask))
4b3e0d38cdb0 (rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents: 22732
diff changeset
3402 (setq charmask (% curmask 256))
4b3e0d38cdb0 (rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents: 22732
diff changeset
3403 (setq curmask (lsh curmask -8))
4b3e0d38cdb0 (rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents: 22732
diff changeset
3404 (aset string-vector i (logxor charmask (aref string-vector i)))
4b3e0d38cdb0 (rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents: 22732
diff changeset
3405 (setq i (1+ i)))
4b3e0d38cdb0 (rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents: 22732
diff changeset
3406 (concat string-vector)))
20757
f900cfe382e4 Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents: 20681
diff changeset
3407
88155
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3408 ;;;; Desktop support
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3409
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3410 (defun rmail-restore-desktop-buffer (desktop-buffer-file-name
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3411 desktop-buffer-name
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3412 desktop-buffer-misc)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3413 "Restore an rmail buffer specified in a desktop file."
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3414 (condition-case error
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3415 (progn
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3416 (rmail-input desktop-buffer-file-name)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3417 (if (eq major-mode 'rmail-mode)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3418 (current-buffer)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3419 rmail-buffer))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3420 (file-locked
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3421 (kill-buffer (current-buffer))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3422 nil)))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3423
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3424 (add-to-list 'desktop-buffer-mode-handlers
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3425 '(rmail-mode . rmail-restore-desktop-buffer))
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3426
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3427 (provide 'rmail)
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3428
d7ddb3e565de sync with trunk
Henrik Enberg <henrik.enberg@telia.com>
parents: 88152
diff changeset
3429 ;;; arch-tag: cff0a950-57fe-4f73-a86e-91ff75afd06c
658
7cbd4fcd8b0f *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 621
diff changeset
3430 ;;; rmail.el ends here