Mercurial > emacs
annotate lisp/mail/rmail.el @ 37671:deefb2de7c81
(report-emacs-bug): Don't switch the buffer to
unibyte. Suggested by Kenichi Handa <handa@etl.go.jp>.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Thu, 10 May 2001 15:47:02 +0000 |
parents | 73f25c014d5c |
children | 2022cee16ea5 |
rev | line source |
---|---|
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
621
diff
changeset
|
1 ;;; rmail.el --- main code of "RMAIL" mail reader for Emacs. |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
621
diff
changeset
|
2 |
35675
45df875afd43
(rmail-ignored-headers): Add X-Sign, X-BeenThere,
Gerd Moellmann <gerd@gnu.org>
parents:
35548
diff
changeset
|
3 ;; Copyright (C) 1985,86,87,88,93,94,95,96,97,98,2000, 2001 |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
4 ;; 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 | 9 ;; This file is part of GNU Emacs. |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
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 | 14 ;; any later version. |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
14169 | 22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
24 ;; Boston, MA 02111-1307, USA. | |
270 | 25 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
26 ;;; Code: |
270 | 27 |
28 ;; Souped up by shane@mit-ajax based on ideas of rlk@athena.mit.edu | |
29 ;; New features include attribute and keyword support, message | |
30 ;; selection by dispatch table, summary by attributes and keywords, | |
31 ;; expunging by dispatch table, sticky options for file commands. | |
32 | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
33 ;; 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
|
34 ;; 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
|
35 ;; 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
|
36 ;; 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
|
37 ;; 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
|
38 ;; |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
39 |
270 | 40 (require 'mail-utils) |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
41 |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
42 ; These variables now declared in paths.el. |
270 | 43 ;(defvar rmail-spool-directory "/usr/spool/mail/" |
44 ; "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
|
45 ;delivering new mail. Its name should end with a slash.") |
270 | 46 ;(defvar rmail-file-name |
47 ; (expand-file-name "~/RMAIL") | |
48 ; "") | |
49 | |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
50 (defgroup rmail nil |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
51 "Mail reader for Emacs." |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
52 :group 'mail) |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
53 |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
54 (defgroup rmail-retrieve nil |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
55 "Rmail retrieval options." |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
56 :prefix "rmail-" |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
57 :group 'rmail) |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
58 |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
59 (defgroup rmail-files nil |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
60 "Rmail files." |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
61 :prefix "rmail-" |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
62 :group 'rmail) |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
63 |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
64 (defgroup rmail-headers nil |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
65 "Rmail header options." |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
66 :prefix "rmail-" |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
67 :group 'rmail) |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
68 |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
69 (defgroup rmail-reply nil |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
70 "Rmail reply options." |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
71 :prefix "rmail-" |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
72 :group 'rmail) |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
73 |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
74 (defgroup rmail-summary nil |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
75 "Rmail summary options." |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
76 :prefix "rmail-" |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
77 :prefix "rmail-summary-" |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
78 :group 'rmail) |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
79 |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
80 (defgroup rmail-output nil |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
81 "Output message to a file." |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
82 :prefix "rmail-output-" |
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 |
37587
d9239fc54bce
(rmail-edit): New Custom group.
Gerd Moellmann <gerd@gnu.org>
parents:
37517
diff
changeset
|
86 (defgroup rmail-edit nil |
d9239fc54bce
(rmail-edit): New Custom group.
Gerd Moellmann <gerd@gnu.org>
parents:
37517
diff
changeset
|
87 "Rmail editing." |
d9239fc54bce
(rmail-edit): New Custom group.
Gerd Moellmann <gerd@gnu.org>
parents:
37517
diff
changeset
|
88 :prefix "rmail-edit-" |
d9239fc54bce
(rmail-edit): New Custom group.
Gerd Moellmann <gerd@gnu.org>
parents:
37517
diff
changeset
|
89 :group 'rmail) |
d9239fc54bce
(rmail-edit): New Custom group.
Gerd Moellmann <gerd@gnu.org>
parents:
37517
diff
changeset
|
90 |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
91 |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
92 (defcustom rmail-movemail-program nil |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
93 "If non-nil, name of program for fetching new mail." |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
94 :group 'rmail-retrieve |
23266
ccedad9251db
(rmail-movemail-program): Fix customize type.
Andreas Schwab <schwab@suse.de>
parents:
23185
diff
changeset
|
95 :type '(choice (const nil) string)) |
8234
8eea81545089
(rmail-movemail-program): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8230
diff
changeset
|
96 |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
97 (defcustom rmail-pop-password nil |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
98 "*Password to use when reading mail from a POP server, if required." |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
99 :type '(choice (string :tag "Password") |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
100 (const :tag "Not Required" nil)) |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
101 :group 'rmail-retrieve) |
15085
7048437bc690
(rmail-insert-inbox-text): When required, prompt for
Richard M. Stallman <rms@gnu.org>
parents:
14916
diff
changeset
|
102 |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
103 (defcustom rmail-pop-password-required nil |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
104 "*Non-nil if a password is required when reading mail using POP." |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
105 :type 'boolean |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
106 :group 'rmail-retrieve) |
15085
7048437bc690
(rmail-insert-inbox-text): When required, prompt for
Richard M. Stallman <rms@gnu.org>
parents:
14916
diff
changeset
|
107 |
21395
57c8bfa789b6
(rmail-movemail-flags): New customizable variable
Karl Heuer <kwzh@gnu.org>
parents:
21347
diff
changeset
|
108 (defcustom rmail-movemail-flags nil |
21398 | 109 "*List of flags to pass to movemail. |
110 Most commonly used to specify `-g' to enable GSS-API authentication | |
111 or `-k' to enable Kerberos authentication." | |
21512
cd1971673dfd
(rmail-movemail-flags): Fix customize type.
Andreas Schwab <schwab@suse.de>
parents:
21435
diff
changeset
|
112 :type '(repeat string) |
21669
9861518505cb
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21640
diff
changeset
|
113 :group 'rmail-retrieve |
9861518505cb
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21640
diff
changeset
|
114 :version "20.3") |
21395
57c8bfa789b6
(rmail-movemail-flags): New customizable variable
Karl Heuer <kwzh@gnu.org>
parents:
21347
diff
changeset
|
115 |
26024
28fd2425218e
(rmail-pop-password-error): Add alternative.
Dave Love <fx@gnu.org>
parents:
25573
diff
changeset
|
116 (defvar rmail-pop-password-error "invalid usercode or password\\| |
28fd2425218e
(rmail-pop-password-error): Add alternative.
Dave Love <fx@gnu.org>
parents:
25573
diff
changeset
|
117 unknown user name or bad password" |
18989
6253a99afd95
(rmail-pop-password-error): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
18957
diff
changeset
|
118 "Regular expression matching incorrect-password POP server error messages. |
6253a99afd95
(rmail-pop-password-error): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
18957
diff
changeset
|
119 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
|
120 please report it with \\[report-emacs-bug].") |
6253a99afd95
(rmail-pop-password-error): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
18957
diff
changeset
|
121 |
22912
0f372fdeee3d
(rmail-encoded-pop-password): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22840
diff
changeset
|
122 (defvar rmail-encoded-pop-password nil) |
0f372fdeee3d
(rmail-encoded-pop-password): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22840
diff
changeset
|
123 |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
124 (defcustom rmail-preserve-inbox nil |
16908
fd99785417a5
(rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16772
diff
changeset
|
125 "*Non-nil if incoming mail should be left in the user's inbox, |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
126 rather than deleted, after it is retrieved." |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
127 :type 'boolean |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
128 :group 'rmail-retrieve) |
16908
fd99785417a5
(rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16772
diff
changeset
|
129 |
270 | 130 ;;;###autoload |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
131 (defcustom rmail-dont-reply-to-names nil "\ |
270 | 132 *A regexp specifying names to prune of reply to messages. |
22840
be572a467b59
(rmail-dont-reply-to-names): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
22838
diff
changeset
|
133 A value of nil means exclude your own login name as an address |
be572a467b59
(rmail-dont-reply-to-names): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
22838
diff
changeset
|
134 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
|
135 :type '(choice regexp (const :tag "Your Name" nil)) |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
136 :group 'rmail-reply) |
270 | 137 |
138 ;;;###autoload | |
139 (defvar rmail-default-dont-reply-to-names "info-" "\ | |
140 A regular expression specifying part of the value of the default value of | |
141 the variable `rmail-dont-reply-to-names', for when the user does not set | |
142 `rmail-dont-reply-to-names' explicitly. (The other part of the default | |
143 value is the user's name.) | |
3931 | 144 It is useful to set this variable in the site customization file.") |
270 | 145 |
146 ;;;###autoload | |
35675
45df875afd43
(rmail-ignored-headers): Add X-Sign, X-BeenThere,
Gerd Moellmann <gerd@gnu.org>
parents:
35548
diff
changeset
|
147 (defcustom rmail-ignored-headers |
45df875afd43
(rmail-ignored-headers): Add X-Sign, X-BeenThere,
Gerd Moellmann <gerd@gnu.org>
parents:
35548
diff
changeset
|
148 (concat "^via:\\|^mail-from:\\|^origin:\\|^references:" |
45df875afd43
(rmail-ignored-headers): Add X-Sign, X-BeenThere,
Gerd Moellmann <gerd@gnu.org>
parents:
35548
diff
changeset
|
149 "\\|^status:\\|^received:\\|^x400-originator:\\|^x400-recipients:" |
45df875afd43
(rmail-ignored-headers): Add X-Sign, X-BeenThere,
Gerd Moellmann <gerd@gnu.org>
parents:
35548
diff
changeset
|
150 "\\|^x400-received:\\|^x400-mts-identifier:\\|^x400-content-type:" |
45df875afd43
(rmail-ignored-headers): Add X-Sign, X-BeenThere,
Gerd Moellmann <gerd@gnu.org>
parents:
35548
diff
changeset
|
151 "\\|^\\(resent-\\|\\)message-id:\\|^summary-line:\\|^resent-date:" |
45df875afd43
(rmail-ignored-headers): Add X-Sign, X-BeenThere,
Gerd Moellmann <gerd@gnu.org>
parents:
35548
diff
changeset
|
152 "\\|^nntp-posting-host:\\|^path:\\|^x-char.*:\\|^x-face:" |
45df875afd43
(rmail-ignored-headers): Add X-Sign, X-BeenThere,
Gerd Moellmann <gerd@gnu.org>
parents:
35548
diff
changeset
|
153 "\\|^x-mailer:\\|^delivered-to:\\|^lines:\\|^mime-version:" |
45df875afd43
(rmail-ignored-headers): Add X-Sign, X-BeenThere,
Gerd Moellmann <gerd@gnu.org>
parents:
35548
diff
changeset
|
154 "\\|^content-transfer-encoding:\\|^x-coding-system:" |
45df875afd43
(rmail-ignored-headers): Add X-Sign, X-BeenThere,
Gerd Moellmann <gerd@gnu.org>
parents:
35548
diff
changeset
|
155 "\\|^return-path:\\|^errors-to:\\|^return-receipt-to:" |
45df875afd43
(rmail-ignored-headers): Add X-Sign, X-BeenThere,
Gerd Moellmann <gerd@gnu.org>
parents:
35548
diff
changeset
|
156 "\\|^x-sign:\\|^x-beenthere:\\|^x-mailman-version:" |
45df875afd43
(rmail-ignored-headers): Add X-Sign, X-BeenThere,
Gerd Moellmann <gerd@gnu.org>
parents:
35548
diff
changeset
|
157 "\\|^precedence:\\|^list-help:\\|^list-post:\\|^list-subscribe:" |
45df875afd43
(rmail-ignored-headers): Add X-Sign, X-BeenThere,
Gerd Moellmann <gerd@gnu.org>
parents:
35548
diff
changeset
|
158 "\\|^list-id:\\|^list-unsubscribe:\\|^list-archive:" |
45df875afd43
(rmail-ignored-headers): Add X-Sign, X-BeenThere,
Gerd Moellmann <gerd@gnu.org>
parents:
35548
diff
changeset
|
159 "\\|^content-type:\\|^content-length:" |
35890
e468a6f4f414
(rmail-ignored-headers): Add X-Trace,
Gerd Moellmann <gerd@gnu.org>
parents:
35675
diff
changeset
|
160 "\\|^x-attribution:\\|^x-disclaimer:\\|^x-trace:" |
e468a6f4f414
(rmail-ignored-headers): Add X-Trace,
Gerd Moellmann <gerd@gnu.org>
parents:
35675
diff
changeset
|
161 "\\|^x-complaints-to:\\|^nntp-posting-date:\\|^user-agent:") |
24562
9bd33c9d9a4e
(rmail-ignored-headers): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
24521
diff
changeset
|
162 "*Regexp to match header fields that Rmail should normally hide. |
9bd33c9d9a4e
(rmail-ignored-headers): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
24521
diff
changeset
|
163 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
|
164 which normally happens once for each message, |
9bd33c9d9a4e
(rmail-ignored-headers): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
24521
diff
changeset
|
165 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
|
166 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
|
167 for a message that you have already viewed, |
9bd33c9d9a4e
(rmail-ignored-headers): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
24521
diff
changeset
|
168 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
|
169 :type 'regexp |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
170 :group 'rmail-headers) |
270 | 171 |
172 ;;;###autoload | |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
173 (defcustom rmail-displayed-headers nil |
11452
a24224fc5a92
(rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents:
11049
diff
changeset
|
174 "*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
|
175 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
|
176 `rmail-ignored-headers'." |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
177 :type '(choice regexp (const :tag "All")) |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
178 :group 'rmail-headers) |
11452
a24224fc5a92
(rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents:
11049
diff
changeset
|
179 |
a24224fc5a92
(rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents:
11049
diff
changeset
|
180 ;;;###autoload |
36568
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
181 (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
|
182 *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
|
183 :type '(choice regexp (const nil :tag "None")) |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
184 :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
|
185 |
9d48b6752dbf
(rmail-retry-failure): Copy the whole block of headers from the message
Richard M. Stallman <rms@gnu.org>
parents:
8963
diff
changeset
|
186 ;;;###autoload |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
187 (defcustom rmail-highlighted-headers "^From:\\|^Subject:" "\ |
8383
d2b1b642f4e6
(rmail-highlighted-face): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8378
diff
changeset
|
188 *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
|
189 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
|
190 See also `rmail-highlight-face'." |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
191 :type 'regexp |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
192 :group 'rmail-headers) |
7051
1733b6c1e30b
(rmail-show-message): Highlight the specified fields.
Richard M. Stallman <rms@gnu.org>
parents:
7037
diff
changeset
|
193 |
1733b6c1e30b
(rmail-show-message): Highlight the specified fields.
Richard M. Stallman <rms@gnu.org>
parents:
7037
diff
changeset
|
194 ;;;###autoload |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
195 (defcustom rmail-highlight-face nil "\ |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
196 *Face used by Rmail for highlighting headers." |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
197 :type '(choice (const :tag "Default" nil) |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
198 face) |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
199 :group 'rmail-headers) |
8383
d2b1b642f4e6
(rmail-highlighted-face): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8378
diff
changeset
|
200 |
d2b1b642f4e6
(rmail-highlighted-face): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8378
diff
changeset
|
201 ;;;###autoload |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
202 (defcustom rmail-delete-after-output nil "\ |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
203 *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
|
204 :type 'boolean |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
205 :group 'rmail-files) |
270 | 206 |
207 ;;;###autoload | |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
208 (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
|
209 *List of files which are inboxes for user's primary mail file `~/RMAIL'. |
5dd3b7338f71
(rmail): Don't use mbox as inbox by default.
Richard M. Stallman <rms@gnu.org>
parents:
2076
diff
changeset
|
210 `nil' means the default, which is (\"/usr/spool/mail/$USER\") |
5dd3b7338f71
(rmail): Don't use mbox as inbox by default.
Richard M. Stallman <rms@gnu.org>
parents:
2076
diff
changeset
|
211 \(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
|
212 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
|
213 ;; 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
|
214 ;; at load time. |
c0422adc1b0e
(rmail-retry-failure): Rename local to rmail-this-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
17762
diff
changeset
|
215 :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
|
216 (list 'repeat ':value (list (or (getenv "MAIL") |
945fed18ddb8
(rmail-primary-inbox-list): Make the initial
Karl Heuer <kwzh@gnu.org>
parents:
22912
diff
changeset
|
217 (concat "/var/spool/mail/" |
945fed18ddb8
(rmail-primary-inbox-list): Make the initial
Karl Heuer <kwzh@gnu.org>
parents:
22912
diff
changeset
|
218 (getenv "USER")))) |
17821
c0422adc1b0e
(rmail-retry-failure): Rename local to rmail-this-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
17762
diff
changeset
|
219 'file)) |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
220 :group 'rmail-retrieve |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
221 :group 'rmail-files) |
270 | 222 |
4108
e4fbcd480455
(rmail-mail-new-frame): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4071
diff
changeset
|
223 ;;;###autoload |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
224 (defcustom rmail-mail-new-frame nil |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
225 "*Non-nil means Rmail makes a new frame for composing outgoing mail." |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
226 :type 'boolean |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
227 :group 'rmail-reply) |
4108
e4fbcd480455
(rmail-mail-new-frame): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4071
diff
changeset
|
228 |
4844
25d94807689e
(rmail-retry-setup-hook): New hook variable.
Richard M. Stallman <rms@gnu.org>
parents:
4838
diff
changeset
|
229 ;;;###autoload |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
230 (defcustom rmail-secondary-file-directory "~/" |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
231 "*Directory for additional secondary Rmail files." |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
232 :type 'directory |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
233 :group 'rmail-files) |
6408
185b1fd3a525
(rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6389
diff
changeset
|
234 ;;;###autoload |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
235 (defcustom rmail-secondary-file-regexp "\\.xmail$" |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
236 "*Regexp for which files are secondary Rmail files." |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
237 :type 'regexp |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
238 :group 'rmail-files) |
6408
185b1fd3a525
(rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6389
diff
changeset
|
239 |
13477
5c500f39271c
(rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
13302
diff
changeset
|
240 ;;;###autoload |
33792
3349ff34a331
(rmail-confirm-expunge): Default to
Gerd Moellmann <gerd@gnu.org>
parents:
30544
diff
changeset
|
241 (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
|
242 "*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
|
243 :type '(choice (const :tag "No confirmation" nil) |
4aafdd90bf08
(rmail-confirm-expunge): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
27944
diff
changeset
|
244 (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
|
245 (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
|
246 :version "21.1" |
4aafdd90bf08
(rmail-confirm-expunge): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
27944
diff
changeset
|
247 :group 'rmail-files) |
4aafdd90bf08
(rmail-confirm-expunge): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
27944
diff
changeset
|
248 |
4aafdd90bf08
(rmail-confirm-expunge): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
27944
diff
changeset
|
249 ;;;###autoload |
13477
5c500f39271c
(rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
13302
diff
changeset
|
250 (defvar rmail-mode-hook nil |
5c500f39271c
(rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
13302
diff
changeset
|
251 "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
|
252 |
5c500f39271c
(rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
13302
diff
changeset
|
253 ;;;###autoload |
5c500f39271c
(rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
13302
diff
changeset
|
254 (defvar rmail-get-new-mail-hook nil |
5c500f39271c
(rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
13302
diff
changeset
|
255 "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
|
256 |
5c500f39271c
(rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
13302
diff
changeset
|
257 ;;;###autoload |
28910
65b986dbb7ba
rmail-show-message-hook): Customize and offer
Dave Love <fx@gnu.org>
parents:
28714
diff
changeset
|
258 (defcustom rmail-show-message-hook nil |
65b986dbb7ba
rmail-show-message-hook): Customize and offer
Dave Love <fx@gnu.org>
parents:
28714
diff
changeset
|
259 "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
|
260 :type 'hook |
65b986dbb7ba
rmail-show-message-hook): Customize and offer
Dave Love <fx@gnu.org>
parents:
28714
diff
changeset
|
261 :options '(goto-addr) |
65b986dbb7ba
rmail-show-message-hook): Customize and offer
Dave Love <fx@gnu.org>
parents:
28714
diff
changeset
|
262 :group 'rmail) |
13477
5c500f39271c
(rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
13302
diff
changeset
|
263 |
5c500f39271c
(rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
13302
diff
changeset
|
264 ;;;###autoload |
27944
b75299f3bc4c
(rmail-quit-hook): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
27871
diff
changeset
|
265 (defvar rmail-quit-hook nil |
b75299f3bc4c
(rmail-quit-hook): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
27871
diff
changeset
|
266 "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
|
267 |
b75299f3bc4c
(rmail-quit-hook): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
27871
diff
changeset
|
268 ;;;###autoload |
13477
5c500f39271c
(rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
13302
diff
changeset
|
269 (defvar rmail-delete-message-hook nil |
5c500f39271c
(rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
13302
diff
changeset
|
270 "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
|
271 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
|
272 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
|
273 |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
274 ;; 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
|
275 ;; 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
|
276 ;; files). |
270 | 277 |
18091
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
278 (defvar rmail-mmdf-delim1 "^\001\001\001\001\n" |
270 | 279 "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
|
280 (defvar rmail-mmdf-delim2 "^\001\001\001\001\n" |
270 | 281 "Regexp marking the end of an mmdf message") |
282 | |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
283 (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
|
284 "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
|
285 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
|
286 before obeying `rmail-ignored-headers'." |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
287 :group 'rmail-headers |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
288 :type 'function) |
270 | 289 |
29160
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
290 (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
|
291 "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
|
292 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
|
293 |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
294 (FOLDERNAME FIELD REGEXP [ FIELD REGEXP ] ... ) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
295 |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
296 Where FOLDERNAME is the name of a BABYL format folder to put the |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
297 message. If any of the field regexp's are nil, then it is ignored. |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
298 |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
299 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
|
300 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
|
301 |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
302 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
|
303 \"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
|
304 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
|
305 |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
306 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
|
307 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
|
308 |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
309 examples: |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
310 (\"/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
|
311 (\"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
|
312 :group 'rmail |
5ddbb3756471
(rmail-automatic-folder-directives): Add a custom
Gerd Moellmann <gerd@gnu.org>
parents:
33792
diff
changeset
|
313 :version "21.1" |
5ddbb3756471
(rmail-automatic-folder-directives): Add a custom
Gerd Moellmann <gerd@gnu.org>
parents:
33792
diff
changeset
|
314 :type '(repeat (sexp :tag "Directive"))) |
29160
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
315 |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
316 (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
|
317 "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
|
318 |
17065
01cba1834368
(rmail-next-same-subject, rmail-reply): Ignore case, to
Karl Heuer <kwzh@gnu.org>
parents:
17011
diff
changeset
|
319 ;; Some mailers use "Re(2):" or "Re^2:" or "Re: Re:" or "Re[2]:". |
10640 | 320 ;; This pattern should catch all the common variants. |
15833
aa7b0c77a89a
(rmail-reply-regexp): Match Re[2].
Richard M. Stallman <rms@gnu.org>
parents:
15832
diff
changeset
|
321 (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
|
322 "Regexp to delete from Subject line before inserting `rmail-reply-prefix'.") |
10640 | 323 |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
324 (defcustom rmail-display-summary nil |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
325 "*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
|
326 :group 'rmail-summary |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
327 :type 'boolean) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
328 |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
329 (defvar rmail-inbox-list nil) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
330 (put 'rmail-inbox-list 'permanent-local t) |
8384
4c88569aaa73
(rmail-display-summary): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8383
diff
changeset
|
331 |
270 | 332 (defvar rmail-keywords nil) |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
333 (put 'rmail-keywords 'permanent-local t) |
270 | 334 |
19509
ea4261efd9f9
(rmail-view-buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
19315
diff
changeset
|
335 (defvar rmail-buffer nil |
ea4261efd9f9
(rmail-view-buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
19315
diff
changeset
|
336 "The RMAIL buffer related to the current buffer. |
ea4261efd9f9
(rmail-view-buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
19315
diff
changeset
|
337 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
|
338 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
|
339 (put 'rmail-buffer 'permanent-local t) |
ea4261efd9f9
(rmail-view-buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
19315
diff
changeset
|
340 |
270 | 341 ;; Message counters and markers. Deleted flags. |
342 | |
343 (defvar rmail-current-message nil) | |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
344 (put 'rmail-current-message 'permanent-local t) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
345 |
270 | 346 (defvar rmail-total-messages nil) |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
347 (put 'rmail-total-messages 'permanent-local t) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
348 |
270 | 349 (defvar rmail-message-vector nil) |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
350 (put 'rmail-message-vector 'permanent-local t) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
351 |
270 | 352 (defvar rmail-deleted-vector nil) |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
353 (put 'rmail-deleted-vector 'permanent-local t) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
354 |
17620
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
355 (defvar rmail-msgref-vector nil |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
356 "In an Rmail buffer, a vector whose Nth element is a list (N). |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
357 When expunging renumbers messages, these lists are modified |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
358 by substituting the new message number into the existing list.") |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
359 (put 'rmail-msgref-vector 'permanent-local t) |
270 | 360 |
7061
9f27a57b7662
(rmail-show-message): Use overlays, not text properties.
Richard M. Stallman <rms@gnu.org>
parents:
7051
diff
changeset
|
361 (defvar rmail-overlay-list nil) |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
362 (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
|
363 |
270 | 364 ;; These are used by autoloaded rmail-summary. |
365 | |
366 (defvar rmail-summary-buffer nil) | |
19509
ea4261efd9f9
(rmail-view-buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
19315
diff
changeset
|
367 (put 'rmail-summary-buffer 'permanent-local t) |
270 | 368 (defvar rmail-summary-vector nil) |
19509
ea4261efd9f9
(rmail-view-buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
19315
diff
changeset
|
369 (put 'rmail-summary-vector 'permanent-local t) |
270 | 370 |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
371 (defvar rmail-view-buffer nil |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
372 "Buffer which holds RMAIL message for MIME displaying.") |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
373 (put 'rmail-view-buffer 'permanent-local t) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
374 |
270 | 375 ;; `Sticky' default variables. |
376 | |
377 ;; Last individual label specified to a or k. | |
378 (defvar rmail-last-label nil) | |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
379 (put 'rmail-last-label 'permanent-local t) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
380 |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
381 ;; Last set of values specified to C-M-n, C-M-p, C-M-s or C-M-l. |
270 | 382 (defvar rmail-last-multi-labels nil) |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
383 |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
384 (defvar rmail-last-regexp nil) |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
385 (put 'rmail-last-regexp 'permanent-local t) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
386 |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
387 (defcustom rmail-default-file "~/xmail" |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
388 "*Default file name for \\[rmail-output]." |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
389 :type 'file |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
390 :group 'rmail-files) |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
391 (defcustom rmail-default-rmail-file "~/XMAIL" |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
392 "*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
|
393 :type 'file |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
394 :group 'rmail-files) |
22201
40b715281ea5
(rmail-default-body-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22158
diff
changeset
|
395 (defcustom rmail-default-body-file "~/mailout" |
40b715281ea5
(rmail-default-body-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22158
diff
changeset
|
396 "*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
|
397 :type 'file |
40b715281ea5
(rmail-default-body-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22158
diff
changeset
|
398 :group 'rmail-files |
40b715281ea5
(rmail-default-body-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22158
diff
changeset
|
399 :version "20.3") |
617 | 400 |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
401 ;; Mule and MIME related variables. |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
402 |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
403 ;;;###autoload |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
404 (defvar rmail-file-coding-system nil |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
405 "Coding system used in RMAIL file. |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
406 |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
407 This is set to nil by default.") |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
408 |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
409 ;;;###autoload |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
410 (defcustom rmail-enable-mime nil |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
411 "*If non-nil, RMAIL uses MIME feature. |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
412 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
|
413 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
|
414 until a user explicitly requires it." |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
415 :type '(choice (const :tag "on" t) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
416 (const :tag "off" nil) |
22591
ab11b5ffa8de
(rmail-enable-mime): Use `other' widget type.
Andreas Schwab <schwab@suse.de>
parents:
22498
diff
changeset
|
417 (other :tag "when asked" ask)) |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
418 :group 'rmail) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
419 |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
420 ;;;###autoload |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
421 (defvar rmail-show-mime-function nil |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
422 "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
|
423 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
|
424 It is called with no argument.") |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
425 |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
426 ;;;###autoload |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
427 (defvar rmail-insert-mime-forwarded-message-function nil |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
428 "Function to insert a message in MIME format so it can be forwarded. |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
429 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
|
430 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
|
431 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
|
432 is the outgoing mail buffer.") |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
433 |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
434 ;;;###autoload |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
435 (defvar rmail-search-mime-message-function nil |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
436 "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
|
437 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
|
438 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
|
439 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
|
440 |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
441 ;;;###autoload |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
442 (defvar rmail-search-mime-header-function nil |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
443 "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
|
444 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
|
445 It is called with four arguments MSG, REGEXP, and LIMIT, where |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
446 MSG is the message number, |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
447 REGEXP is the regular expression, |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
448 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
|
449 |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
450 ;;;###autoload |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
451 (defvar rmail-mime-feature 'rmail-mime |
22133
543e41494c45
(rmail-mime-feature): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
22108
diff
changeset
|
452 "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
|
453 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
|
454 this feature is required with `require'.") |
24209
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
455 |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
456 ;;;###autoload |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
457 (defvar rmail-decode-mime-charset t |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
458 "*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
|
459 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
|
460 the message is decoded as normal way. |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
461 |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
462 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
|
463 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
|
464 the variable `rmail-mime-feature'.") |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
465 |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
466 ;;;###autoload |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
467 (defvar rmail-mime-charset-pattern |
24234
998fefa595a7
(rmail-mime-charset-pattern): Add optional TABs
Eli Zaretskii <eliz@gnu.org>
parents:
24231
diff
changeset
|
468 "^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
|
469 "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
|
470 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
|
471 |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
472 |
621 | 473 ;;; Regexp matching the delimiter of messages in UNIX mail format |
474 ;;; (UNIX From lines), minus the initial ^. Note that if you change | |
475 ;;; this expression, you must change the code in rmail-nuke-pinhead-header | |
476 ;;; that knows the exact ordering of the \\( \\) subexpressions. | |
617 | 477 (defvar rmail-unix-mail-delimiter |
1112 | 478 (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
|
479 (concat "\\([A-Z]?[A-Z]?[A-Z][A-Z]\\( DST\\)?" |
1112 | 480 "\\|[-+]?[0-9][0-9][0-9][0-9]" |
481 "\\|" | |
482 "\\) *"))) | |
483 (concat | |
484 "From " | |
485 | |
15534
7f169dd814ce
(rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents:
15503
diff
changeset
|
486 ;; 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
|
487 ;; 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
|
488 ;; `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
|
489 ;; `<@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
|
490 ;; can be removed, e.g. |
7f169dd814ce
(rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents:
15503
diff
changeset
|
491 ;; From: joe@y.z (Joe K |
7f169dd814ce
(rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents:
15503
diff
changeset
|
492 ;; User) |
7f169dd814ce
(rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents:
15503
diff
changeset
|
493 ;; 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
|
494 ;; From: Joe User |
7f169dd814ce
(rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents:
15503
diff
changeset
|
495 ;; <joe@y.z> |
7f169dd814ce
(rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents:
15503
diff
changeset
|
496 ;; 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
|
497 ;; 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
|
498 ;; From: "Joe User"{space}{tab} |
12c537361366
(rmail-unix-mail-delimiter): Allow space or tab as
Paul Eggert <eggert@twinsun.com>
parents:
15746
diff
changeset
|
499 ;; <joe@y.z> |
12c537361366
(rmail-unix-mail-delimiter): Allow space or tab as
Paul Eggert <eggert@twinsun.com>
parents:
15746
diff
changeset
|
500 ;; 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
|
501 ;; 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
|
502 ;; 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
|
503 ;; The following regexp rejects names whose first characters are |
7f169dd814ce
(rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents:
15503
diff
changeset
|
504 ;; 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
|
505 "\\([^\0-\b\n-\r\^?].*\\)? " |
1112 | 506 |
507 ;; The time the message was sent. | |
15534
7f169dd814ce
(rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents:
15503
diff
changeset
|
508 "\\([^\0-\r \^?]+\\) +" ; day of the week |
7f169dd814ce
(rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents:
15503
diff
changeset
|
509 "\\([^\0-\r \^?]+\\) +" ; month |
7f169dd814ce
(rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents:
15503
diff
changeset
|
510 "\\([0-3]?[0-9]\\) +" ; day of month |
7f169dd814ce
(rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents:
15503
diff
changeset
|
511 "\\([0-2][0-9]:[0-5][0-9]\\(:[0-6][0-9]\\)?\\) *" ; time of day |
1112 | 512 |
513 ;; Perhaps a time zone, specified by an abbreviation, or by a | |
514 ;; numeric offset. | |
515 time-zone-regexp | |
516 | |
517 ;; The year. | |
15534
7f169dd814ce
(rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents:
15503
diff
changeset
|
518 " \\([0-9][0-9]+\\) *" |
1112 | 519 |
520 ;; On some systems the time zone can appear after the year, too. | |
521 time-zone-regexp | |
522 | |
7037 | 523 ;; Old uucp cruft. |
524 "\\(remote from .*\\)?" | |
1112 | 525 |
526 "\n")) | |
527 nil) | |
528 | |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
529 (defvar rmail-font-lock-keywords |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
530 (eval-when-compile |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
531 (let* ((cite-chars "[>|}]") |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
532 (cite-prefix "A-Za-z") |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
533 (cite-suffix (concat cite-prefix "0-9_.@-`'\""))) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
534 (list '("^\\(From\\|Sender\\):" . font-lock-function-name-face) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
535 '("^Reply-To:.*$" . font-lock-function-name-face) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
536 '("^Subject:" . font-lock-comment-face) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
537 '("^\\(To\\|Apparently-To\\|Cc\\|Newsgroups\\):" |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
538 . font-lock-keyword-face) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
539 ;; 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
|
540 `(,cite-chars |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
541 (,(concat "\\=[ \t]*" |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
542 "\\(\\([" cite-prefix "]+[" cite-suffix "]*\\)?" |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
543 "\\(" cite-chars "[ \t]*\\)\\)+" |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
544 "\\(.*\\)") |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
545 (beginning-of-line) (end-of-line) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
546 (2 font-lock-constant-face nil t) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
547 (4 font-lock-comment-face nil t))) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
548 '("^\\(X-[A-Za-z0-9-]+\\|In-reply-to\\|Date\\):.*$" |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
549 . font-lock-string-face)))) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
550 "Additional expressions to highlight in Rmail mode.") |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
551 |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
552 ;; 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
|
553 ;; 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
|
554 (defmacro rmail-select-summary (&rest body) |
26455 | 555 `(let ((total rmail-total-messages)) |
556 (if (rmail-summary-displayed) | |
557 (let ((window (selected-window))) | |
558 (save-excursion | |
559 (unwind-protect | |
560 (progn | |
561 (pop-to-buffer rmail-summary-buffer) | |
562 ;; rmail-total-messages is a buffer-local var | |
563 ;; in the rmail buffer. | |
564 ;; This way we make it available for the body | |
565 ;; even tho the rmail buffer is not current. | |
566 (let ((rmail-total-messages total)) | |
567 ,@body)) | |
568 (select-window window)))) | |
569 (save-excursion | |
570 (set-buffer rmail-summary-buffer) | |
571 (let ((rmail-total-messages total)) | |
572 ,@body))) | |
573 (rmail-maybe-display-summary))) | |
270 | 574 |
575 ;;;; *** Rmail Mode *** | |
576 | |
20943
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
577 (defvar rmail-enable-multibyte nil) |
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
578 |
270 | 579 ;;;###autoload |
580 (defun rmail (&optional file-name-arg) | |
581 "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
|
582 Moves messages into file named by `rmail-file-name' (a babyl format file) |
270 | 583 and edits that file in RMAIL Mode. |
584 Type \\[describe-mode] once editing that file, for a list of RMAIL commands. | |
585 | |
5274
89b71a85be3e
(rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents:
5192
diff
changeset
|
586 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
|
587 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
|
588 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
|
589 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
|
590 |
4c88569aaa73
(rmail-display-summary): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8383
diff
changeset
|
591 If `rmail-display-summary' is non-nil, make a summary for this RMAIL file." |
270 | 592 (interactive (if current-prefix-arg |
13818
0d1de22afac0
(rmail): Allow nonexistent file as arg.
Richard M. Stallman <rms@gnu.org>
parents:
13808
diff
changeset
|
593 (list (read-file-name "Run rmail on RMAIL file: ")))) |
17093
f8584d52dd48
(rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents:
17065
diff
changeset
|
594 (if rmail-enable-mime |
f8584d52dd48
(rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents:
17065
diff
changeset
|
595 (condition-case err |
f8584d52dd48
(rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents:
17065
diff
changeset
|
596 (require rmail-mime-feature) |
f8584d52dd48
(rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents:
17065
diff
changeset
|
597 (error (message "Feature `%s' not provided" rmail-mime-feature) |
f8584d52dd48
(rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents:
17065
diff
changeset
|
598 (sit-for 1) |
f8584d52dd48
(rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents:
17065
diff
changeset
|
599 (setq rmail-enable-mime nil)))) |
270 | 600 (let* ((file-name (expand-file-name (or file-name-arg rmail-file-name))) |
16431
65d3768ccb05
(rmail): Run rmail-mail-hook last.
Richard M. Stallman <rms@gnu.org>
parents:
16349
diff
changeset
|
601 (existed (get-file-buffer file-name)) |
20947
a66eb4a41765
(rmail-decode-babyl-format): Message modified.
Kenichi Handa <handa@m17n.org>
parents:
20943
diff
changeset
|
602 ;; This binding is necessary because we much decide if we |
a66eb4a41765
(rmail-decode-babyl-format): Message modified.
Kenichi Handa <handa@m17n.org>
parents:
20943
diff
changeset
|
603 ;; need code conversion while the buffer is unibyte |
a66eb4a41765
(rmail-decode-babyl-format): Message modified.
Kenichi Handa <handa@m17n.org>
parents:
20943
diff
changeset
|
604 ;; (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
|
605 (rmail-enable-multibyte |
6a6568360d51
(rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents:
22610
diff
changeset
|
606 (if existed |
6a6568360d51
(rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents:
22610
diff
changeset
|
607 (with-current-buffer existed enable-multibyte-characters) |
6a6568360d51
(rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents:
22610
diff
changeset
|
608 (default-value 'enable-multibyte-characters))) |
20943
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
609 ;; Since the file may contain messages of different encodings |
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
610 ;; 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
|
611 ;; on reading. So, at first, we read the file without text |
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
612 ;; code conversion, then decode the messages one by one by |
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
613 ;; rmail-decode-babyl-format or |
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
614 ;; rmail-convert-to-babyl-format. |
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
615 (coding-system-for-read (and rmail-enable-multibyte 'raw-text)) |
20053
c315820510ba
(rmail): Avoid showing message twice.
Karl Heuer <kwzh@gnu.org>
parents:
19674
diff
changeset
|
616 run-mail-hook msg-shown) |
270 | 617 ;; Like find-file, but in the case where a buffer existed |
618 ;; and the file was reverted, recompute the message-data. | |
21705
71eacf46567c
(rmail): Don't bind enable-local-variables.
Richard M. Stallman <rms@gnu.org>
parents:
21669
diff
changeset
|
619 ;; We used to bind enable-local-variables to nil here, |
71eacf46567c
(rmail): Don't bind enable-local-variables.
Richard M. Stallman <rms@gnu.org>
parents:
21669
diff
changeset
|
620 ;; but that should not be needed now that rmail-mode |
71eacf46567c
(rmail): Don't bind enable-local-variables.
Richard M. Stallman <rms@gnu.org>
parents:
21669
diff
changeset
|
621 ;; sets it locally to nil. |
71eacf46567c
(rmail): Don't bind enable-local-variables.
Richard M. Stallman <rms@gnu.org>
parents:
21669
diff
changeset
|
622 ;; (Binding a variable locally with let is not safe if it has |
71eacf46567c
(rmail): Don't bind enable-local-variables.
Richard M. Stallman <rms@gnu.org>
parents:
21669
diff
changeset
|
623 ;; buffer-local bindings.) |
270 | 624 (if (and existed (not (verify-visited-file-modtime existed))) |
625 (progn | |
21705
71eacf46567c
(rmail): Don't bind enable-local-variables.
Richard M. Stallman <rms@gnu.org>
parents:
21669
diff
changeset
|
626 (find-file file-name) |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
627 (if (and (verify-visited-file-modtime existed) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
628 (eq major-mode 'rmail-mode)) |
270 | 629 (progn (rmail-forget-messages) |
630 (rmail-set-message-counters)))) | |
22474
927f6e2f680b
(rmail-variables): Locally bind
Richard M. Stallman <rms@gnu.org>
parents:
22435
diff
changeset
|
631 (switch-to-buffer |
927f6e2f680b
(rmail-variables): Locally bind
Richard M. Stallman <rms@gnu.org>
parents:
22435
diff
changeset
|
632 (let ((enable-local-variables nil)) |
927f6e2f680b
(rmail-variables): Locally bind
Richard M. Stallman <rms@gnu.org>
parents:
22435
diff
changeset
|
633 (find-file-noselect file-name)))) |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
634 (if (eq major-mode 'rmail-edit-mode) |
20681
4a46ac370fc8
(rmail): Don't bind enable-multibyte-characters;
Richard M. Stallman <rms@gnu.org>
parents:
20662
diff
changeset
|
635 (error "Exit Rmail Edit mode before getting new mail")) |
270 | 636 (if (and existed (> (buffer-size) 0)) |
637 ;; Buffer not new and not empty; ensure in proper mode, but that's all. | |
638 (or (eq major-mode 'rmail-mode) | |
16431
65d3768ccb05
(rmail): Run rmail-mail-hook last.
Richard M. Stallman <rms@gnu.org>
parents:
16349
diff
changeset
|
639 (progn (rmail-mode-2) |
65d3768ccb05
(rmail): Run rmail-mail-hook last.
Richard M. Stallman <rms@gnu.org>
parents:
16349
diff
changeset
|
640 (setq run-mail-hook t))) |
65d3768ccb05
(rmail): Run rmail-mail-hook last.
Richard M. Stallman <rms@gnu.org>
parents:
16349
diff
changeset
|
641 (setq run-mail-hook t) |
270 | 642 (rmail-mode-2) |
643 ;; Convert all or part to Babyl file if possible. | |
644 (rmail-convert-file) | |
22374
aaa851980d1e
(rmail): Prevent find-file from calling
Richard M. Stallman <rms@gnu.org>
parents:
22351
diff
changeset
|
645 (goto-char (point-max))) |
22498
b7643337d0c3
(rmail): Make the buffer multibyte
Richard M. Stallman <rms@gnu.org>
parents:
22474
diff
changeset
|
646 ;; As we have read a file by raw-text, the buffer is set to |
b7643337d0c3
(rmail): Make the buffer multibyte
Richard M. Stallman <rms@gnu.org>
parents:
22474
diff
changeset
|
647 ;; unibyte. We must make it multibyte if necessary. |
b7643337d0c3
(rmail): Make the buffer multibyte
Richard M. Stallman <rms@gnu.org>
parents:
22474
diff
changeset
|
648 (if (and rmail-enable-multibyte |
b7643337d0c3
(rmail): Make the buffer multibyte
Richard M. Stallman <rms@gnu.org>
parents:
22474
diff
changeset
|
649 (not enable-multibyte-characters)) |
b7643337d0c3
(rmail): Make the buffer multibyte
Richard M. Stallman <rms@gnu.org>
parents:
22474
diff
changeset
|
650 (set-buffer-multibyte t)) |
22435
98b909125b87
(rmail-toggle-header): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
22374
diff
changeset
|
651 ;; If necessary, scan to find all the messages. |
98b909125b87
(rmail-toggle-header): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
22374
diff
changeset
|
652 (rmail-maybe-set-message-counters) |
20662
910d4cdbf81f
(rmail): Unwind-protect call to rmail-get-new-mail.
Karl Heuer <kwzh@gnu.org>
parents:
20399
diff
changeset
|
653 (unwind-protect |
22374
aaa851980d1e
(rmail): Prevent find-file from calling
Richard M. Stallman <rms@gnu.org>
parents:
22351
diff
changeset
|
654 (unless (and (not file-name-arg) |
aaa851980d1e
(rmail): Prevent find-file from calling
Richard M. Stallman <rms@gnu.org>
parents:
22351
diff
changeset
|
655 (rmail-get-new-mail)) |
aaa851980d1e
(rmail): Prevent find-file from calling
Richard M. Stallman <rms@gnu.org>
parents:
22351
diff
changeset
|
656 (rmail-show-message (rmail-first-unseen-message))) |
20662
910d4cdbf81f
(rmail): Unwind-protect call to rmail-get-new-mail.
Karl Heuer <kwzh@gnu.org>
parents:
20399
diff
changeset
|
657 (progn |
910d4cdbf81f
(rmail): Unwind-protect call to rmail-get-new-mail.
Karl Heuer <kwzh@gnu.org>
parents:
20399
diff
changeset
|
658 (if rmail-display-summary (rmail-summary)) |
910d4cdbf81f
(rmail): Unwind-protect call to rmail-get-new-mail.
Karl Heuer <kwzh@gnu.org>
parents:
20399
diff
changeset
|
659 (rmail-construct-io-menu) |
910d4cdbf81f
(rmail): Unwind-protect call to rmail-get-new-mail.
Karl Heuer <kwzh@gnu.org>
parents:
20399
diff
changeset
|
660 (if run-mail-hook |
910d4cdbf81f
(rmail): Unwind-protect call to rmail-get-new-mail.
Karl Heuer <kwzh@gnu.org>
parents:
20399
diff
changeset
|
661 (run-hooks 'rmail-mode-hook)))))) |
270 | 662 |
663 ;; Given the value of MAILPATH, return a list of inbox file names. | |
664 ;; This is turned off because it is not clear that the user wants | |
665 ;; all these inboxes to feed into the primary rmail file. | |
666 ; (defun rmail-convert-mailpath (string) | |
667 ; (let (idx list) | |
668 ; (while (setq idx (string-match "[%:]" string)) | |
669 ; (let ((this (substring string 0 idx))) | |
670 ; (setq string (substring string (1+ idx))) | |
671 ; (setq list (cons (if (string-match "%" this) | |
672 ; (substring this 0 (string-match "%" this)) | |
673 ; this) | |
674 ; list)))) | |
675 ; list)) | |
676 | |
677 ; I have checked that adding "-*- rmail -*-" to the BABYL OPTIONS line | |
678 ; will not cause emacs 18.55 problems. | |
679 | |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
680 ;; This calls rmail-decode-babyl-format if the file is already Babyl. |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
681 |
270 | 682 (defun rmail-convert-file () |
683 (let (convert) | |
684 (widen) | |
685 (goto-char (point-min)) | |
686 ;; If file doesn't start like a Babyl file, | |
687 ;; convert it to one, by adding a header and converting each message. | |
688 (cond ((looking-at "BABYL OPTIONS:")) | |
689 ((looking-at "Version: 5\n") | |
690 ;; Losing babyl file made by old version of Rmail. | |
691 ;; Just fix the babyl file header; don't make a new one, | |
692 ;; so we don't lose the Labels: file attribute, etc. | |
693 (let ((buffer-read-only nil)) | |
694 (insert "BABYL OPTIONS: -*- rmail -*-\n"))) | |
4764
0e239209a6db
(rmail-convert-file): If the file is empty, don't convert it after
Brian Fox <bfox@gnu.org>
parents:
4724
diff
changeset
|
695 ((equal (point-min) (point-max)) |
0e239209a6db
(rmail-convert-file): If the file is empty, don't convert it after
Brian Fox <bfox@gnu.org>
parents:
4724
diff
changeset
|
696 ;; Empty RMAIL file. Just insert the header. |
0e239209a6db
(rmail-convert-file): If the file is empty, don't convert it after
Brian Fox <bfox@gnu.org>
parents:
4724
diff
changeset
|
697 (rmail-insert-rmail-file-header)) |
270 | 698 (t |
4764
0e239209a6db
(rmail-convert-file): If the file is empty, don't convert it after
Brian Fox <bfox@gnu.org>
parents:
4724
diff
changeset
|
699 ;; Non-empty file in non-RMAIL format. Add header and convert. |
270 | 700 (setq convert t) |
701 (rmail-insert-rmail-file-header))) | |
702 ;; If file was not a Babyl file or if there are | |
703 ;; Unix format messages added at the end, | |
704 ;; convert file as necessary. | |
705 (if (or convert | |
4673
047e8f8469d9
(rmail-convert-file): Exclude the Babyl header
Richard M. Stallman <rms@gnu.org>
parents:
4579
diff
changeset
|
706 (save-excursion |
047e8f8469d9
(rmail-convert-file): Exclude the Babyl header
Richard M. Stallman <rms@gnu.org>
parents:
4579
diff
changeset
|
707 (goto-char (point-max)) |
12839
40a12a81cc06
(rmail-convert-file): Look back for ^_ only at bol.
Richard M. Stallman <rms@gnu.org>
parents:
12727
diff
changeset
|
708 (search-backward "\n\^_") |
40a12a81cc06
(rmail-convert-file): Look back for ^_ only at bol.
Richard M. Stallman <rms@gnu.org>
parents:
12727
diff
changeset
|
709 (forward-char 2) |
4673
047e8f8469d9
(rmail-convert-file): Exclude the Babyl header
Richard M. Stallman <rms@gnu.org>
parents:
4579
diff
changeset
|
710 (looking-at "\n*From "))) |
270 | 711 (let ((buffer-read-only nil)) |
712 (message "Converting to Babyl format...") | |
4673
047e8f8469d9
(rmail-convert-file): Exclude the Babyl header
Richard M. Stallman <rms@gnu.org>
parents:
4579
diff
changeset
|
713 ;; If file needs conversion, convert it all, |
047e8f8469d9
(rmail-convert-file): Exclude the Babyl header
Richard M. Stallman <rms@gnu.org>
parents:
4579
diff
changeset
|
714 ;; except for the BABYL header. |
047e8f8469d9
(rmail-convert-file): Exclude the Babyl header
Richard M. Stallman <rms@gnu.org>
parents:
4579
diff
changeset
|
715 ;; (rmail-convert-to-babyl-format would delete the header.) |
047e8f8469d9
(rmail-convert-file): Exclude the Babyl header
Richard M. Stallman <rms@gnu.org>
parents:
4579
diff
changeset
|
716 (goto-char (point-min)) |
047e8f8469d9
(rmail-convert-file): Exclude the Babyl header
Richard M. Stallman <rms@gnu.org>
parents:
4579
diff
changeset
|
717 (search-forward "\n\^_" nil t) |
4698
196fac1c1086
(rmail-convert-file): Narrow to exclude the Babyl header.
Richard M. Stallman <rms@gnu.org>
parents:
4673
diff
changeset
|
718 (narrow-to-region (point) (point-max)) |
270 | 719 (rmail-convert-to-babyl-format) |
20943
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
720 (message "Converting to Babyl format...done")) |
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
721 (if (and (not rmail-enable-mime) |
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
722 rmail-enable-multibyte) |
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
723 ;; We still have to decode BABYL part. |
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
724 (rmail-decode-babyl-format))))) |
270 | 725 |
726 (defun rmail-insert-rmail-file-header () | |
727 (let ((buffer-read-only nil)) | |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
728 ;; -*-rmail-*- is here so that visiting the file normally |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
729 ;; recognizes it as an Rmail file. |
270 | 730 (insert "BABYL OPTIONS: -*- rmail -*- |
731 Version: 5 | |
732 Labels: | |
733 Note: This is the header of an rmail file. | |
734 Note: If you are seeing it in rmail, | |
735 Note: it means the file has no messages in it.\n\^_"))) | |
736 | |
17093
f8584d52dd48
(rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents:
17065
diff
changeset
|
737 ;; Decode Babyl formated part at the head of current buffer by |
20943
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
738 ;; rmail-file-coding-system, or if it is nil, do auto conversion. |
17093
f8584d52dd48
(rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents:
17065
diff
changeset
|
739 |
f8584d52dd48
(rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents:
17065
diff
changeset
|
740 (defun rmail-decode-babyl-format () |
f8584d52dd48
(rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents:
17065
diff
changeset
|
741 (let ((modifiedp (buffer-modified-p)) |
f8584d52dd48
(rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents:
17065
diff
changeset
|
742 (buffer-read-only nil) |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
743 (coding-system rmail-file-coding-system) |
20943
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
744 from to) |
17093
f8584d52dd48
(rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents:
17065
diff
changeset
|
745 (goto-char (point-min)) |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
746 (search-forward "\n\^_" nil t) ; Skip BABYL header. |
20943
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
747 (setq from (point)) |
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
748 (goto-char (point-max)) |
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
749 (search-backward "\n\^_" from 'mv) |
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
750 (setq to (point)) |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
751 (unless (and coding-system |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
752 (coding-system-p coding-system)) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
753 (setq coding-system (detect-coding-region from to t))) |
23293
34dc05f50ea3
(rmail-decode-babyl-format): Recognize both
Karl Heuer <kwzh@gnu.org>
parents:
23266
diff
changeset
|
754 (unless (memq coding-system |
34dc05f50ea3
(rmail-decode-babyl-format): Recognize both
Karl Heuer <kwzh@gnu.org>
parents:
23266
diff
changeset
|
755 '(undecided undecided-unix)) |
24584
244e710f3134
(rmail-decode-babyl-format): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
24562
diff
changeset
|
756 (set-buffer-modified-p t) ; avoid locking when decoding |
244e710f3134
(rmail-decode-babyl-format): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
24562
diff
changeset
|
757 (decode-coding-region from to coding-system) |
244e710f3134
(rmail-decode-babyl-format): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
24562
diff
changeset
|
758 (setq coding-system last-coding-system-used)) |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
759 (set-buffer-modified-p modifiedp) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
760 (setq buffer-file-coding-system nil) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
761 (setq save-buffer-coding-system |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
762 (or coding-system 'undecided)))) |
17093
f8584d52dd48
(rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents:
17065
diff
changeset
|
763 |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
764 (defvar rmail-mode-map nil) |
270 | 765 (if rmail-mode-map |
766 nil | |
767 (setq rmail-mode-map (make-keymap)) | |
768 (suppress-keymap rmail-mode-map) | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
769 (define-key rmail-mode-map "a" 'rmail-add-label) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
770 (define-key rmail-mode-map "b" 'rmail-bury) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
771 (define-key rmail-mode-map "c" 'rmail-continue) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
772 (define-key rmail-mode-map "d" 'rmail-delete-forward) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
773 (define-key rmail-mode-map "\C-d" 'rmail-delete-backward) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
774 (define-key rmail-mode-map "e" 'rmail-edit-current-message) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
775 (define-key rmail-mode-map "f" 'rmail-forward) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
776 (define-key rmail-mode-map "g" 'rmail-get-new-mail) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
777 (define-key rmail-mode-map "h" 'rmail-summary) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
778 (define-key rmail-mode-map "i" 'rmail-input) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
779 (define-key rmail-mode-map "j" 'rmail-show-message) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
780 (define-key rmail-mode-map "k" 'rmail-kill-label) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
781 (define-key rmail-mode-map "l" 'rmail-summary-by-labels) |
270 | 782 (define-key rmail-mode-map "\e\C-h" 'rmail-summary) |
783 (define-key rmail-mode-map "\e\C-l" 'rmail-summary-by-labels) | |
784 (define-key rmail-mode-map "\e\C-r" 'rmail-summary-by-recipients) | |
785 (define-key rmail-mode-map "\e\C-s" 'rmail-summary-by-regexp) | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
786 (define-key rmail-mode-map "\e\C-t" 'rmail-summary-by-topic) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
787 (define-key rmail-mode-map "m" 'rmail-mail) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
788 (define-key rmail-mode-map "\em" 'rmail-retry-failure) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
789 (define-key rmail-mode-map "n" 'rmail-next-undeleted-message) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
790 (define-key rmail-mode-map "\en" 'rmail-next-message) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
791 (define-key rmail-mode-map "\e\C-n" 'rmail-next-labeled-message) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
792 (define-key rmail-mode-map "o" 'rmail-output-to-rmail-file) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
793 (define-key rmail-mode-map "\C-o" 'rmail-output) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
794 (define-key rmail-mode-map "p" 'rmail-previous-undeleted-message) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
795 (define-key rmail-mode-map "\ep" 'rmail-previous-message) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
796 (define-key rmail-mode-map "\e\C-p" 'rmail-previous-labeled-message) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
797 (define-key rmail-mode-map "q" 'rmail-quit) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
798 (define-key rmail-mode-map "r" 'rmail-reply) |
1464
7f25b15a6809
(rmail-mode-map): Delete binding of M-r (use global one).
Richard M. Stallman <rms@gnu.org>
parents:
1382
diff
changeset
|
799 ;; I find I can't live without the default M-r command -- rms. |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
800 ;; (define-key rmail-mode-map "\er" 'rmail-search-backwards) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
801 (define-key rmail-mode-map "s" 'rmail-expunge-and-save) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
802 (define-key rmail-mode-map "\es" 'rmail-search) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
803 (define-key rmail-mode-map "t" 'rmail-toggle-header) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
804 (define-key rmail-mode-map "u" 'rmail-undelete-previous-message) |
17306
09aeacdc6fc2
(rmail-mode-map): Add menu item for
Richard M. Stallman <rms@gnu.org>
parents:
17237
diff
changeset
|
805 (define-key rmail-mode-map "w" 'rmail-output-body-to-file) |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
806 (define-key rmail-mode-map "x" 'rmail-expunge) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
807 (define-key rmail-mode-map "." 'rmail-beginning-of-message) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
808 (define-key rmail-mode-map "<" 'rmail-first-message) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
809 (define-key rmail-mode-map ">" 'rmail-last-message) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
810 (define-key rmail-mode-map " " 'scroll-up) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
811 (define-key rmail-mode-map "\177" 'scroll-down) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
812 (define-key rmail-mode-map "?" 'describe-mode) |
3877
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
813 (define-key rmail-mode-map "\C-c\C-s\C-d" 'rmail-sort-by-date) |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
814 (define-key rmail-mode-map "\C-c\C-s\C-s" 'rmail-sort-by-subject) |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
815 (define-key rmail-mode-map "\C-c\C-s\C-a" 'rmail-sort-by-author) |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
816 (define-key rmail-mode-map "\C-c\C-s\C-r" 'rmail-sort-by-recipient) |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
817 (define-key rmail-mode-map "\C-c\C-s\C-c" 'rmail-sort-by-correspondent) |
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
818 (define-key rmail-mode-map "\C-c\C-s\C-l" 'rmail-sort-by-lines) |
37592
767fb2304ebd
(rmail-mode-map): Use rmail-sort-by-labels
Gerd Moellmann <gerd@gnu.org>
parents:
37587
diff
changeset
|
819 (define-key rmail-mode-map "\C-c\C-s\C-k" 'rmail-sort-by-labels) |
10662
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
820 (define-key rmail-mode-map "\C-c\C-n" 'rmail-next-same-subject) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
821 (define-key rmail-mode-map "\C-c\C-p" 'rmail-previous-same-subject) |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
822 ) |
3863
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
823 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
824 (define-key rmail-mode-map [menu-bar] (make-sparse-keymap)) |
270 | 825 |
3863
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
826 (define-key rmail-mode-map [menu-bar classify] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
827 (cons "Classify" (make-sparse-keymap "Classify"))) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
828 |
6483
373e377d79f7
(rmail-secondary-file-menu): Display relative file names.
Richard M. Stallman <rms@gnu.org>
parents:
6408
diff
changeset
|
829 (define-key rmail-mode-map [menu-bar classify input-menu] |
8909
d9c10eb46ce9
Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
parents:
8875
diff
changeset
|
830 nil) |
6483
373e377d79f7
(rmail-secondary-file-menu): Display relative file names.
Richard M. Stallman <rms@gnu.org>
parents:
6408
diff
changeset
|
831 |
373e377d79f7
(rmail-secondary-file-menu): Display relative file names.
Richard M. Stallman <rms@gnu.org>
parents:
6408
diff
changeset
|
832 (define-key rmail-mode-map [menu-bar classify output-menu] |
8909
d9c10eb46ce9
Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
parents:
8875
diff
changeset
|
833 nil) |
6483
373e377d79f7
(rmail-secondary-file-menu): Display relative file names.
Richard M. Stallman <rms@gnu.org>
parents:
6408
diff
changeset
|
834 |
17306
09aeacdc6fc2
(rmail-mode-map): Add menu item for
Richard M. Stallman <rms@gnu.org>
parents:
17237
diff
changeset
|
835 (define-key rmail-mode-map [menu-bar classify output-body] |
09aeacdc6fc2
(rmail-mode-map): Add menu item for
Richard M. Stallman <rms@gnu.org>
parents:
17237
diff
changeset
|
836 '("Output body to file..." . rmail-output-body-to-file)) |
09aeacdc6fc2
(rmail-mode-map): Add menu item for
Richard M. Stallman <rms@gnu.org>
parents:
17237
diff
changeset
|
837 |
3863
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
838 (define-key rmail-mode-map [menu-bar classify output-inbox] |
8423
960d9fb24788
(rmail-mode-map): Fix the Get New Mail entry.
Richard M. Stallman <rms@gnu.org>
parents:
8420
diff
changeset
|
839 '("Output (inbox)..." . rmail-output)) |
3863
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
840 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
841 (define-key rmail-mode-map [menu-bar classify output] |
8423
960d9fb24788
(rmail-mode-map): Fix the Get New Mail entry.
Richard M. Stallman <rms@gnu.org>
parents:
8420
diff
changeset
|
842 '("Output (Rmail)..." . rmail-output-to-rmail-file)) |
3863
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
843 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
844 (define-key rmail-mode-map [menu-bar classify kill-label] |
8423
960d9fb24788
(rmail-mode-map): Fix the Get New Mail entry.
Richard M. Stallman <rms@gnu.org>
parents:
8420
diff
changeset
|
845 '("Kill Label..." . rmail-kill-label)) |
3863
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
846 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
847 (define-key rmail-mode-map [menu-bar classify add-label] |
8423
960d9fb24788
(rmail-mode-map): Fix the Get New Mail entry.
Richard M. Stallman <rms@gnu.org>
parents:
8420
diff
changeset
|
848 '("Add Label..." . rmail-add-label)) |
3863
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
849 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
850 (define-key rmail-mode-map [menu-bar summary] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
851 (cons "Summary" (make-sparse-keymap "Summary"))) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
852 |
12447
240de864f06c
(rmail-find-all-files): Bind case-fold-search.
Richard M. Stallman <rms@gnu.org>
parents:
12377
diff
changeset
|
853 (define-key rmail-mode-map [menu-bar summary senders] |
240de864f06c
(rmail-find-all-files): Bind case-fold-search.
Richard M. Stallman <rms@gnu.org>
parents:
12377
diff
changeset
|
854 '("By Senders..." . rmail-summary-by-senders)) |
240de864f06c
(rmail-find-all-files): Bind case-fold-search.
Richard M. Stallman <rms@gnu.org>
parents:
12377
diff
changeset
|
855 |
3863
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
856 (define-key rmail-mode-map [menu-bar summary labels] |
8423
960d9fb24788
(rmail-mode-map): Fix the Get New Mail entry.
Richard M. Stallman <rms@gnu.org>
parents:
8420
diff
changeset
|
857 '("By Labels..." . rmail-summary-by-labels)) |
3863
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
858 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
859 (define-key rmail-mode-map [menu-bar summary recipients] |
8423
960d9fb24788
(rmail-mode-map): Fix the Get New Mail entry.
Richard M. Stallman <rms@gnu.org>
parents:
8420
diff
changeset
|
860 '("By Recipients..." . rmail-summary-by-recipients)) |
3863
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
861 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
862 (define-key rmail-mode-map [menu-bar summary topic] |
8423
960d9fb24788
(rmail-mode-map): Fix the Get New Mail entry.
Richard M. Stallman <rms@gnu.org>
parents:
8420
diff
changeset
|
863 '("By Topic..." . rmail-summary-by-topic)) |
3863
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
864 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
865 (define-key rmail-mode-map [menu-bar summary regexp] |
8423
960d9fb24788
(rmail-mode-map): Fix the Get New Mail entry.
Richard M. Stallman <rms@gnu.org>
parents:
8420
diff
changeset
|
866 '("By Regexp..." . rmail-summary-by-regexp)) |
3863
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
867 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
868 (define-key rmail-mode-map [menu-bar summary all] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
869 '("All" . rmail-summary)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
870 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
871 (define-key rmail-mode-map [menu-bar mail] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
872 (cons "Mail" (make-sparse-keymap "Mail"))) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
873 |
8420
988800dcb009
(rmail-mode-map): Fix the Get New Mail entry.
Richard M. Stallman <rms@gnu.org>
parents:
8399
diff
changeset
|
874 (define-key rmail-mode-map [menu-bar mail rmail-get-new-mail] |
8219
5d9da948dc9f
(rmail-mode-map): Add "Get New Mail" menu item under Mail.
Richard M. Stallman <rms@gnu.org>
parents:
8094
diff
changeset
|
875 '("Get New Mail" . rmail-get-new-mail)) |
5d9da948dc9f
(rmail-mode-map): Add "Get New Mail" menu item under Mail.
Richard M. Stallman <rms@gnu.org>
parents:
8094
diff
changeset
|
876 |
5d9da948dc9f
(rmail-mode-map): Add "Get New Mail" menu item under Mail.
Richard M. Stallman <rms@gnu.org>
parents:
8094
diff
changeset
|
877 (define-key rmail-mode-map [menu-bar mail lambda] |
8230
740b46022e15
(rmail-mode-map): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
8219
diff
changeset
|
878 '("----")) |
8219
5d9da948dc9f
(rmail-mode-map): Add "Get New Mail" menu item under Mail.
Richard M. Stallman <rms@gnu.org>
parents:
8094
diff
changeset
|
879 |
5d9da948dc9f
(rmail-mode-map): Add "Get New Mail" menu item under Mail.
Richard M. Stallman <rms@gnu.org>
parents:
8094
diff
changeset
|
880 (define-key rmail-mode-map [menu-bar mail continue] |
3863
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
881 '("Continue" . rmail-continue)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
882 |
8393
4d3ae3aff631
(rmail-mode-map): Move new Re-send menu item to right place.
Richard M. Stallman <rms@gnu.org>
parents:
8384
diff
changeset
|
883 (define-key rmail-mode-map [menu-bar mail resend] |
8423
960d9fb24788
(rmail-mode-map): Fix the Get New Mail entry.
Richard M. Stallman <rms@gnu.org>
parents:
8420
diff
changeset
|
884 '("Re-send..." . rmail-resend)) |
8393
4d3ae3aff631
(rmail-mode-map): Move new Re-send menu item to right place.
Richard M. Stallman <rms@gnu.org>
parents:
8384
diff
changeset
|
885 |
3863
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
886 (define-key rmail-mode-map [menu-bar mail forward] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
887 '("Forward" . rmail-forward)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
888 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
889 (define-key rmail-mode-map [menu-bar mail retry] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
890 '("Retry" . rmail-retry-failure)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
891 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
892 (define-key rmail-mode-map [menu-bar mail reply] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
893 '("Reply" . rmail-reply)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
894 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
895 (define-key rmail-mode-map [menu-bar mail mail] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
896 '("Mail" . rmail-mail)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
897 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
898 (define-key rmail-mode-map [menu-bar delete] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
899 (cons "Delete" (make-sparse-keymap "Delete"))) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
900 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
901 (define-key rmail-mode-map [menu-bar delete expunge/save] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
902 '("Expunge/Save" . rmail-expunge-and-save)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
903 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
904 (define-key rmail-mode-map [menu-bar delete expunge] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
905 '("Expunge" . rmail-expunge)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
906 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
907 (define-key rmail-mode-map [menu-bar delete undelete] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
908 '("Undelete" . rmail-undelete-previous-message)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
909 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
910 (define-key rmail-mode-map [menu-bar delete delete] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
911 '("Delete" . rmail-delete-forward)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
912 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
913 (define-key rmail-mode-map [menu-bar move] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
914 (cons "Move" (make-sparse-keymap "Move"))) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
915 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
916 (define-key rmail-mode-map [menu-bar move search-back] |
10187
a3b8bfad0a75
(rmail-search-backward): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10160
diff
changeset
|
917 '("Search Back..." . rmail-search-backwards)) |
3863
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
918 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
919 (define-key rmail-mode-map [menu-bar move search] |
8423
960d9fb24788
(rmail-mode-map): Fix the Get New Mail entry.
Richard M. Stallman <rms@gnu.org>
parents:
8420
diff
changeset
|
920 '("Search..." . rmail-search)) |
3863
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
921 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
922 (define-key rmail-mode-map [menu-bar move previous] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
923 '("Previous Nondeleted" . rmail-previous-undeleted-message)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
924 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
925 (define-key rmail-mode-map [menu-bar move next] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
926 '("Next Nondeleted" . rmail-next-undeleted-message)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
927 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
928 (define-key rmail-mode-map [menu-bar move last] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
929 '("Last" . rmail-last-message)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
930 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
931 (define-key rmail-mode-map [menu-bar move first] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
932 '("First" . rmail-first-message)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
933 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
934 (define-key rmail-mode-map [menu-bar move previous] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
935 '("Previous" . rmail-previous-message)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
936 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
937 (define-key rmail-mode-map [menu-bar move next] |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
938 '("Next" . rmail-next-message)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
939 |
270 | 940 ;; Rmail mode is suitable only for specially formatted data. |
941 (put 'rmail-mode 'mode-class 'special) | |
942 | |
8963
286aacffb920
(rmail-mode-kill-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8909
diff
changeset
|
943 (defun rmail-mode-kill-summary () |
286aacffb920
(rmail-mode-kill-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8909
diff
changeset
|
944 (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
|
945 |
1382
9b210c7d6c23
* rmail.el (rmail-mode): Make this autoload; we might find a file
Jim Blandy <jimb@redhat.com>
parents:
1372
diff
changeset
|
946 ;;;###autoload |
270 | 947 (defun rmail-mode () |
948 "Rmail Mode is used by \\<rmail-mode-map>\\[rmail] for editing Rmail files. | |
949 All normal editing commands are turned off. | |
950 Instead, these commands are available: | |
951 | |
952 \\[rmail-beginning-of-message] Move point to front of this message (same as \\[beginning-of-buffer]). | |
953 \\[scroll-up] Scroll to next screen of this message. | |
954 \\[scroll-down] Scroll to previous screen of this message. | |
955 \\[rmail-next-undeleted-message] Move to Next non-deleted message. | |
956 \\[rmail-previous-undeleted-message] Move to Previous non-deleted message. | |
957 \\[rmail-next-message] Move to Next message whether deleted or not. | |
958 \\[rmail-previous-message] Move to Previous message whether deleted or not. | |
959 \\[rmail-first-message] Move to the first message in Rmail file. | |
960 \\[rmail-last-message] Move to the last message in Rmail file. | |
961 \\[rmail-show-message] Jump to message specified by numeric position in file. | |
962 \\[rmail-search] Search for string and show message it is found in. | |
963 \\[rmail-delete-forward] Delete this message, move to next nondeleted. | |
964 \\[rmail-delete-backward] Delete this message, move to previous nondeleted. | |
965 \\[rmail-undelete-previous-message] Undelete message. Tries current message, then earlier messages | |
966 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
|
967 \\[rmail-edit-current-message] Edit the current message. \\[rmail-cease-edit] to return to Rmail. |
270 | 968 \\[rmail-expunge] Expunge deleted messages. |
969 \\[rmail-expunge-and-save] Expunge and save the file. | |
970 \\[rmail-quit] Quit Rmail: expunge, save, then switch to another buffer. | |
971 \\[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
|
972 \\[rmail-get-new-mail] Move new mail from system spool directory into this file. |
270 | 973 \\[rmail-mail] Mail a message (same as \\[mail-other-window]). |
974 \\[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
|
975 \\[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
|
976 \\[rmail-retry-failure] Send this message again. Used on a mailer failure message. |
270 | 977 \\[rmail-forward] Forward this message to another user. |
978 \\[rmail-output-to-rmail-file] Output this message to an Rmail file (append it). | |
979 \\[rmail-output] Output this message to a Unix-format mail file (append it). | |
21405 | 980 \\[rmail-output-body-to-file] Save message body to a file. Default filename comes from Subject line. |
270 | 981 \\[rmail-input] Input Rmail file. Run Rmail on that file. |
982 \\[rmail-add-label] Add label to message. It will be displayed in the mode line. | |
983 \\[rmail-kill-label] Kill label. Remove a label from current message. | |
984 \\[rmail-next-labeled-message] Move to Next message with specified label | |
985 (label defaults to last one specified). | |
986 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
|
987 Any other label is present only if you add it with \\[rmail-add-label]. |
270 | 988 \\[rmail-previous-labeled-message] Move to Previous message with specified label |
989 \\[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
|
990 \\[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
|
991 \\[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
|
992 \\[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
|
993 \\[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
|
994 \\[rmail-toggle-header] Toggle display of complete header." |
270 | 995 (interactive) |
996 (rmail-mode-2) | |
997 (rmail-set-message-counters) | |
16431
65d3768ccb05
(rmail): Run rmail-mail-hook last.
Richard M. Stallman <rms@gnu.org>
parents:
16349
diff
changeset
|
998 (rmail-show-message rmail-total-messages) |
65d3768ccb05
(rmail): Run rmail-mail-hook last.
Richard M. Stallman <rms@gnu.org>
parents:
16349
diff
changeset
|
999 (run-hooks 'rmail-mode-hook)) |
270 | 1000 |
1001 (defun rmail-mode-2 () | |
1002 (kill-all-local-variables) | |
1003 (rmail-mode-1) | |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
1004 (rmail-perm-variables) |
16431
65d3768ccb05
(rmail): Run rmail-mail-hook last.
Richard M. Stallman <rms@gnu.org>
parents:
16349
diff
changeset
|
1005 (rmail-variables)) |
270 | 1006 |
1007 (defun rmail-mode-1 () | |
1008 (setq major-mode 'rmail-mode) | |
1009 (setq mode-name "RMAIL") | |
1010 (setq buffer-read-only t) | |
5330 | 1011 ;; No need to auto save RMAIL files in normal circumstances |
1012 ;; because they contain no info except attribute changes | |
1013 ;; and deletion of messages. | |
1014 ;; The one exception is when messages are copied into an Rmail mode buffer. | |
1015 ;; rmail-output-to-rmail-file enables auto save when you do that. | |
270 | 1016 (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
|
1017 (setq mode-line-modified "--") |
270 | 1018 (use-local-map rmail-mode-map) |
1019 (set-syntax-table text-mode-syntax-table) | |
1020 (setq local-abbrev-table text-mode-abbrev-table)) | |
1021 | |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
1022 ;; 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
|
1023 (defun rmail-perm-variables () |
270 | 1024 (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
|
1025 (make-local-variable 'rmail-last-regexp) |
270 | 1026 (make-local-variable 'rmail-deleted-vector) |
17093
f8584d52dd48
(rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents:
17065
diff
changeset
|
1027 (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
|
1028 (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
|
1029 (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
|
1030 (setq rmail-view-buffer rmail-buffer) |
270 | 1031 (make-local-variable 'rmail-summary-buffer) |
1032 (make-local-variable 'rmail-summary-vector) | |
1033 (make-local-variable 'rmail-current-message) | |
1034 (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
|
1035 (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
|
1036 (setq rmail-overlay-list nil) |
270 | 1037 (make-local-variable 'rmail-message-vector) |
17620
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
1038 (make-local-variable 'rmail-msgref-vector) |
270 | 1039 (make-local-variable 'rmail-inbox-list) |
1040 (setq rmail-inbox-list (rmail-parse-file-inboxes)) | |
3540
c14c0f2954fd
(rmail-variables): Default rmail-inbox-list here.
Richard M. Stallman <rms@gnu.org>
parents:
3484
diff
changeset
|
1041 ;; 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
|
1042 (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
|
1043 (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
|
1044 (equal buffer-file-truename |
3fb665ab94c1
(rmail-variables): Abbreviate truename for comparison.
Richard M. Stallman <rms@gnu.org>
parents:
5047
diff
changeset
|
1045 (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
|
1046 (setq rmail-inbox-list |
c14c0f2954fd
(rmail-variables): Default rmail-inbox-list here.
Richard M. Stallman <rms@gnu.org>
parents:
3484
diff
changeset
|
1047 (or rmail-primary-inbox-list |
c14c0f2954fd
(rmail-variables): Default rmail-inbox-list here.
Richard M. Stallman <rms@gnu.org>
parents:
3484
diff
changeset
|
1048 (list (or (getenv "MAIL") |
c14c0f2954fd
(rmail-variables): Default rmail-inbox-list here.
Richard M. Stallman <rms@gnu.org>
parents:
3484
diff
changeset
|
1049 (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
|
1050 (user-login-name))))))) |
270 | 1051 (make-local-variable 'rmail-keywords) |
1052 ;; 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
|
1053 (setq rmail-keywords nil)) |
270 | 1054 |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
1055 ;; 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
|
1056 (defun rmail-variables () |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1057 (make-local-variable 'save-buffer-coding-system) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1058 ;; 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
|
1059 ;; 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
|
1060 ;; because it should be determined in rmail-show-message. |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1061 (unless save-buffer-coding-system |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1062 (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
|
1063 (setq buffer-file-coding-system nil)) |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
1064 ;; 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
|
1065 (make-local-variable 'local-enable-local-variables) |
927f6e2f680b
(rmail-variables): Locally bind
Richard M. Stallman <rms@gnu.org>
parents:
22435
diff
changeset
|
1066 (setq local-enable-local-variables nil) |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
1067 (make-local-variable 'revert-buffer-function) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
1068 (setq revert-buffer-function 'rmail-revert) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
1069 (make-local-variable 'font-lock-defaults) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
1070 (setq font-lock-defaults |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1071 '(rmail-font-lock-keywords |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1072 t nil nil nil |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1073 (font-lock-maximum-size . nil) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1074 (font-lock-fontify-buffer-function . rmail-fontify-buffer-function) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1075 (font-lock-unfontify-buffer-function . rmail-unfontify-buffer-function) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1076 (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
|
1077 (make-local-variable 'require-final-newline) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
1078 (setq require-final-newline nil) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
1079 (make-local-variable 'version-control) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
1080 (setq version-control 'never) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
1081 (make-local-variable 'kill-buffer-hook) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
1082 (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
|
1083 (make-local-variable 'file-precious-flag) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
1084 (setq file-precious-flag t)) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
1085 |
270 | 1086 ;; Handle M-x revert-buffer done in an rmail-mode buffer. |
1087 (defun rmail-revert (arg noconfirm) | |
22724
6a6568360d51
(rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents:
22610
diff
changeset
|
1088 (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
|
1089 (rmail-enable-multibyte enable-multibyte-characters) |
6a6568360d51
(rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents:
22610
diff
changeset
|
1090 ;; See similar code in `rmail'. |
6a6568360d51
(rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents:
22610
diff
changeset
|
1091 (coding-system-for-read (and rmail-enable-multibyte 'raw-text))) |
270 | 1092 ;; Call our caller again, but this time it does the default thing. |
1093 (if (revert-buffer arg noconfirm) | |
1094 ;; If the user said "yes", and we changed something, | |
1095 ;; reparse the messages. | |
20681
4a46ac370fc8
(rmail): Don't bind enable-multibyte-characters;
Richard M. Stallman <rms@gnu.org>
parents:
20662
diff
changeset
|
1096 (progn |
22724
6a6568360d51
(rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents:
22610
diff
changeset
|
1097 (rmail-mode-2) |
6a6568360d51
(rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents:
22610
diff
changeset
|
1098 ;; Convert all or part to Babyl file if possible. |
270 | 1099 (rmail-convert-file) |
22724
6a6568360d51
(rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents:
22610
diff
changeset
|
1100 ;; 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
|
1101 ;; unibyte. Make it multibyte if necessary. |
6a6568360d51
(rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents:
22610
diff
changeset
|
1102 (if (and rmail-enable-multibyte |
6a6568360d51
(rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents:
22610
diff
changeset
|
1103 (not enable-multibyte-characters)) |
6a6568360d51
(rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents:
22610
diff
changeset
|
1104 (set-buffer-multibyte t)) |
270 | 1105 (goto-char (point-max)) |
22724
6a6568360d51
(rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents:
22610
diff
changeset
|
1106 (rmail-set-message-counters) |
6a6568360d51
(rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents:
22610
diff
changeset
|
1107 (rmail-show-message rmail-total-messages) |
6a6568360d51
(rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents:
22610
diff
changeset
|
1108 (run-hooks 'rmail-mode-hook))))) |
270 | 1109 |
1110 ;; Return a list of files from this buffer's Mail: option. | |
1111 ;; Does not assume that messages have been parsed. | |
1112 ;; Just returns nil if buffer does not look like Babyl format. | |
1113 (defun rmail-parse-file-inboxes () | |
1114 (save-excursion | |
1115 (save-restriction | |
1116 (widen) | |
1117 (goto-char 1) | |
1118 (cond ((looking-at "BABYL OPTIONS:") | |
1119 (search-forward "\n\^_" nil 'move) | |
1120 (narrow-to-region 1 (point)) | |
1121 (goto-char 1) | |
1122 (if (search-forward "\nMail:" nil t) | |
1123 (progn | |
1124 (narrow-to-region (point) (progn (end-of-line) (point))) | |
1125 (goto-char (point-min)) | |
1126 (mail-parse-comma-list)))))))) | |
1127 | |
1128 (defun rmail-expunge-and-save () | |
1129 "Expunge and save RMAIL file." | |
1130 (interactive) | |
1131 (rmail-expunge) | |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
1132 (set-buffer rmail-buffer) |
5860
ba1ff614b8f2
(rmail-expunge-and-save): Mark summary buffer as unmodified.
Karl Heuer <kwzh@gnu.org>
parents:
5850
diff
changeset
|
1133 (save-buffer) |
ba1ff614b8f2
(rmail-expunge-and-save): Mark summary buffer as unmodified.
Karl Heuer <kwzh@gnu.org>
parents:
5850
diff
changeset
|
1134 (if (rmail-summary-exists) |
ba1ff614b8f2
(rmail-expunge-and-save): Mark summary buffer as unmodified.
Karl Heuer <kwzh@gnu.org>
parents:
5850
diff
changeset
|
1135 (rmail-select-summary (set-buffer-modified-p nil)))) |
270 | 1136 |
1137 (defun rmail-quit () | |
24110
ec89235ef2a6
(rmail-quit): run `rmail-quit-hook'.
Richard M. Stallman <rms@gnu.org>
parents:
23969
diff
changeset
|
1138 "Quit out of RMAIL. |
ec89235ef2a6
(rmail-quit): run `rmail-quit-hook'.
Richard M. Stallman <rms@gnu.org>
parents:
23969
diff
changeset
|
1139 Hook `rmail-quit-hook' is run after expunging." |
270 | 1140 (interactive) |
1141 (rmail-expunge-and-save) | |
24110
ec89235ef2a6
(rmail-quit): run `rmail-quit-hook'.
Richard M. Stallman <rms@gnu.org>
parents:
23969
diff
changeset
|
1142 (when (boundp 'rmail-quit-hook) |
ec89235ef2a6
(rmail-quit): run `rmail-quit-hook'.
Richard M. Stallman <rms@gnu.org>
parents:
23969
diff
changeset
|
1143 (run-hooks 'rmail-quit-hook)) |
270 | 1144 ;; 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
|
1145 (when rmail-summary-buffer |
79e564f91938
(rmail-next-same-subject): Ignore leading and
Richard M. Stallman <rms@gnu.org>
parents:
20984
diff
changeset
|
1146 (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
|
1147 (bury-buffer rmail-summary-buffer)) |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
1148 (if rmail-enable-mime |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
1149 (let ((obuf rmail-buffer) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
1150 (ovbuf rmail-view-buffer)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
1151 (set-buffer rmail-view-buffer) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
1152 (quit-window) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
1153 (replace-buffer-in-windows ovbuf) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
1154 (replace-buffer-in-windows obuf) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
1155 (bury-buffer obuf)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
1156 (let ((obuf (current-buffer))) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
1157 (quit-window) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
1158 (replace-buffer-in-windows obuf)))) |
270 | 1159 |
10970
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1160 (defun rmail-bury () |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1161 "Bury current Rmail buffer and its summary buffer." |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1162 (interactive) |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1163 ;; 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
|
1164 ;; 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
|
1165 (let ((buffer-to-bury (current-buffer))) |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1166 (if (rmail-summary-exists) |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1167 (let (window) |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1168 (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
|
1169 (quit-window nil window)) |
10970
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1170 (bury-buffer rmail-summary-buffer))) |
21100
79e564f91938
(rmail-next-same-subject): Ignore leading and
Richard M. Stallman <rms@gnu.org>
parents:
20984
diff
changeset
|
1171 (quit-window))) |
10970
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1172 |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1173 (defun rmail-duplicate-message () |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1174 "Create a duplicated copy of the current message. |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1175 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
|
1176 original copy." |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1177 (interactive) |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1178 (widen) |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1179 (let ((buffer-read-only nil) |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1180 (number rmail-current-message) |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1181 (string (buffer-substring (rmail-msgbeg rmail-current-message) |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1182 (rmail-msgend rmail-current-message)))) |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1183 (goto-char (rmail-msgend rmail-current-message)) |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1184 (insert string) |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1185 (rmail-forget-messages) |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1186 (rmail-show-message number) |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1187 (message "Message duplicated"))) |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1188 |
270 | 1189 ;;;###autoload |
1190 (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
|
1191 "Run Rmail on file FILENAME." |
270 | 1192 (interactive "FRun rmail on RMAIL file: ") |
1193 (rmail filename)) | |
1194 | |
16241
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
1195 |
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
1196 ;; 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
|
1197 ;; 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
|
1198 ;; 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
|
1199 ;; 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
|
1200 (defun rmail-find-all-files (start) |
16241
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
1201 "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
|
1202 (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
|
1203 ;; Don't sort here. |
16241
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
1204 (let* ((case-fold-search t) |
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
1205 (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
|
1206 ;; 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
|
1207 ;; 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
|
1208 (sort files 'string<)))) |
7321
f8ee542dbe80
(rmail-input-menu): Don't call expand-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1209 |
8909
d9c10eb46ce9
Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
parents:
8875
diff
changeset
|
1210 (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
|
1211 (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
|
1212 (mapcar |
d9c10eb46ce9
Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
parents:
8875
diff
changeset
|
1213 (function (lambda (item) |
10971
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1214 (let (command) |
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1215 (if (consp item) |
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1216 (progn |
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1217 (setq command |
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1218 (rmail-list-to-menu (car item) (cdr item) |
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1219 action |
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1220 (if full-name |
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1221 (concat full-name "/" |
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1222 (car item)) |
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1223 (car item)))) |
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1224 (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
|
1225 (progn |
10971
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1226 (setq name item) |
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1227 (setq command |
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1228 (list 'lambda () '(interactive) |
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1229 (list action |
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1230 (expand-file-name |
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1231 (if full-name |
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1232 (concat full-name "/" item) |
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1233 item) |
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1234 rmail-secondary-file-directory)))))) |
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1235 (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
|
1236 (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
|
1237 (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
|
1238 menu)) |
d9c10eb46ce9
Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
parents:
8875
diff
changeset
|
1239 |
9449
d11a719d7bde
(rmail-find-all-files): Fix several errors and make faster.
Richard M. Stallman <rms@gnu.org>
parents:
9431
diff
changeset
|
1240 ;; 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
|
1241 (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
|
1242 |
8909
d9c10eb46ce9
Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
parents:
8875
diff
changeset
|
1243 (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
|
1244 (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
|
1245 (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
|
1246 (progn |
d9c10eb46ce9
Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
parents:
8875
diff
changeset
|
1247 (define-key rmail-mode-map [menu-bar classify input-menu] |
d9c10eb46ce9
Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
parents:
8875
diff
changeset
|
1248 (cons "Input Rmail File" |
d9c10eb46ce9
Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
parents:
8875
diff
changeset
|
1249 (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
|
1250 files |
8909
d9c10eb46ce9
Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
parents:
8875
diff
changeset
|
1251 'rmail-input))) |
d9c10eb46ce9
Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
parents:
8875
diff
changeset
|
1252 (define-key rmail-mode-map [menu-bar classify output-menu] |
d9c10eb46ce9
Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
parents:
8875
diff
changeset
|
1253 (cons "Output Rmail File" |
d9c10eb46ce9
Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
parents:
8875
diff
changeset
|
1254 (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
|
1255 files |
d11a719d7bde
(rmail-find-all-files): Fix several errors and make faster.
Richard M. Stallman <rms@gnu.org>
parents:
9431
diff
changeset
|
1256 'rmail-output-to-rmail-file)))) |
d11a719d7bde
(rmail-find-all-files): Fix several errors and make faster.
Richard M. Stallman <rms@gnu.org>
parents:
9431
diff
changeset
|
1257 |
d11a719d7bde
(rmail-find-all-files): Fix several errors and make faster.
Richard M. Stallman <rms@gnu.org>
parents:
9431
diff
changeset
|
1258 (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
|
1259 '("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
|
1260 (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
|
1261 '("Output Rmail File" . rmail-disable-menu))))) |
6408
185b1fd3a525
(rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6389
diff
changeset
|
1262 |
270 | 1263 |
1264 ;;;; *** Rmail input *** | |
1265 | |
1266 ;; RLK feature not added in this version: | |
1267 ;; argument specifies inbox file or files in various ways. | |
1268 | |
1269 (defun rmail-get-new-mail (&optional file-name) | |
1270 "Move any new mail from this RMAIL file's inbox files. | |
1271 The inbox files can be specified with the file's Mail: option. The | |
1272 variable `rmail-primary-inbox-list' specifies the inboxes for your | |
2423
5dd3b7338f71
(rmail): Don't use mbox as inbox by default.
Richard M. Stallman <rms@gnu.org>
parents:
2076
diff
changeset
|
1273 primary RMAIL file if it has no Mail: option. By default, this is |
5dd3b7338f71
(rmail): Don't use mbox as inbox by default.
Richard M. Stallman <rms@gnu.org>
parents:
2076
diff
changeset
|
1274 your /usr/spool/mail/$USER. |
270 | 1275 |
1276 You can also specify the file to get new mail from. In this case, the | |
1277 file of new mail is not changed or deleted. Noninteractively, you can | |
1278 pass the inbox file name as an argument. Interactively, a prefix | |
8701
f3567d21b4e9
(rmail-get-new-mail): Run rmail-get-new-mail-hook.
Richard M. Stallman <rms@gnu.org>
parents:
8591
diff
changeset
|
1279 argument causes us to read a file name and use that file as the inbox. |
f3567d21b4e9
(rmail-get-new-mail): Run rmail-get-new-mail-hook.
Richard M. Stallman <rms@gnu.org>
parents:
8591
diff
changeset
|
1280 |
16908
fd99785417a5
(rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16772
diff
changeset
|
1281 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
|
1282 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
|
1283 |
10103
efb97e6ec979
(rmail-get-new-mail): Position on first unseen message.
Richard M. Stallman <rms@gnu.org>
parents:
9633
diff
changeset
|
1284 This function runs `rmail-get-new-mail-hook' before saving the updated file. |
efb97e6ec979
(rmail-get-new-mail): Position on first unseen message.
Richard M. Stallman <rms@gnu.org>
parents:
9633
diff
changeset
|
1285 It returns t if it got any new messages." |
270 | 1286 (interactive |
1287 (list (if current-prefix-arg | |
1288 (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
|
1289 (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
|
1290 ;; 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
|
1291 ;; revert to it before we get new mail. |
270 | 1292 (or (verify-visited-file-modtime (current-buffer)) |
11533
2d1e996c4359
(rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents:
11497
diff
changeset
|
1293 (find-file (buffer-file-name))) |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
1294 (set-buffer rmail-buffer) |
270 | 1295 (rmail-maybe-set-message-counters) |
1296 (widen) | |
1297 ;; Get rid of all undo records for this buffer. | |
1298 (or (eq buffer-undo-list t) | |
1299 (setq buffer-undo-list nil)) | |
16241
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
1300 (let ((all-files (if file-name (list file-name) |
20053
c315820510ba
(rmail): Avoid showing message twice.
Karl Heuer <kwzh@gnu.org>
parents:
19674
diff
changeset
|
1301 rmail-inbox-list)) |
20943
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
1302 (rmail-enable-multibyte (default-value 'enable-multibyte-characters)) |
20053
c315820510ba
(rmail): Avoid showing message twice.
Karl Heuer <kwzh@gnu.org>
parents:
19674
diff
changeset
|
1303 found) |
16241
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
1304 (unwind-protect |
20053
c315820510ba
(rmail): Avoid showing message twice.
Karl Heuer <kwzh@gnu.org>
parents:
19674
diff
changeset
|
1305 (progn |
16928
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1306 (while all-files |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1307 (let ((opoint (point)) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1308 (new-messages 0) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1309 (delete-files ()) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1310 ;; If buffer has not changed yet, and has not been saved yet, |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1311 ;; don't replace the old backup file now. |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1312 (make-backup-files (and make-backup-files (buffer-modified-p))) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1313 (buffer-read-only nil) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1314 ;; Don't make undo records for what we do in getting mail. |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1315 (buffer-undo-list t) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1316 success |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1317 ;; Files to insert this time around. |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1318 files |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1319 ;; Last names of those files. |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1320 file-last-names) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1321 ;; Pull files off all-files onto files |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1322 ;; as long as there is no name conflict. |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1323 ;; A conflict happens when two inbox file names |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1324 ;; have the same last component. |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1325 (while (and all-files |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1326 (not (member (file-name-nondirectory (car all-files)) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1327 file-last-names))) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1328 (setq files (cons (car all-files) files) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1329 file-last-names |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1330 (cons (file-name-nondirectory (car all-files)) files)) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1331 (setq all-files (cdr all-files))) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1332 ;; Put them back in their original order. |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1333 (setq files (nreverse files)) |
16241
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
1334 |
16928
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1335 (goto-char (point-max)) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1336 (skip-chars-backward " \t\n") ; just in case of brain damage |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1337 (delete-region (point) (point-max)) ; caused by require-final-newline |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1338 (save-excursion |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1339 (save-restriction |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1340 (narrow-to-region (point) (point)) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1341 ;; Read in the contents of the inbox files, |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1342 ;; renaming them as necessary, |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1343 ;; and adding to the list of files to delete eventually. |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1344 (if file-name |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1345 (rmail-insert-inbox-text files nil) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1346 (setq delete-files (rmail-insert-inbox-text files t))) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1347 ;; Scan the new text and convert each message to babyl format. |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1348 (goto-char (point-min)) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1349 (unwind-protect |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1350 (save-excursion |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1351 (setq new-messages (rmail-convert-to-babyl-format) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1352 success t)) |
23530
8fd3e2d95a51
(rmail-get-new-mail): Delete garbage in any case.
Richard M. Stallman <rms@gnu.org>
parents:
23378
diff
changeset
|
1353 ;; Try to delete the garbage just inserted. |
8fd3e2d95a51
(rmail-get-new-mail): Delete garbage in any case.
Richard M. Stallman <rms@gnu.org>
parents:
23378
diff
changeset
|
1354 (or success (delete-region (point-min) (point-max))) |
16928
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1355 ;; If we could not convert the file's inboxes, |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1356 ;; rename the files we tried to read |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1357 ;; so we won't over and over again. |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1358 (if (and (not file-name) (not success)) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1359 (let ((delfiles delete-files) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1360 (count 0)) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1361 (while delfiles |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1362 (while (file-exists-p (format "RMAILOSE.%d" count)) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1363 (setq count (1+ count))) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1364 (rename-file (car delfiles) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1365 (format "RMAILOSE.%d" count)) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1366 (setq delfiles (cdr delfiles)))))) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1367 (or (zerop new-messages) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1368 (let (success) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1369 (widen) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1370 (search-backward "\n\^_" nil t) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1371 (narrow-to-region (point) (point-max)) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1372 (goto-char (1+ (point-min))) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1373 (rmail-count-new-messages) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1374 (run-hooks 'rmail-get-new-mail-hook) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1375 (save-buffer))) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1376 ;; Delete the old files, now that babyl file is saved. |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1377 (while delete-files |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1378 (condition-case () |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1379 ;; First, try deleting. |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1380 (condition-case () |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1381 (delete-file (car delete-files)) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1382 (file-error |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1383 ;; If we can't delete it, truncate it. |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1384 (write-region (point) (point) (car delete-files)))) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1385 (file-error nil)) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1386 (setq delete-files (cdr delete-files))))) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1387 (if (= new-messages 0) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1388 (progn (goto-char opoint) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1389 (if (or file-name rmail-inbox-list) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1390 (message "(No new mail has arrived)"))) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1391 (if (rmail-summary-exists) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1392 (rmail-select-summary |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1393 (rmail-update-summary))) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1394 (message "%d new message%s read" |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1395 new-messages (if (= 1 new-messages) "" "s")) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1396 ;; Move to the first new message |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1397 ;; unless we have other unseen messages before it. |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1398 (rmail-show-message (rmail-first-unseen-message)) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1399 (run-hooks 'rmail-after-get-new-mail-hook) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1400 (setq found t)))) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1401 found) |
16241
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
1402 ;; Don't leave the buffer screwed up if we get a disk-full error. |
20053
c315820510ba
(rmail): Avoid showing message twice.
Karl Heuer <kwzh@gnu.org>
parents:
19674
diff
changeset
|
1403 (or found (rmail-show-message))))) |
270 | 1404 |
1405 (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
|
1406 ;; 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
|
1407 ;; 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
|
1408 (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
|
1409 (error "RMAIL file %s is locked" |
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
1410 (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
|
1411 (let (file tofile delete-files movemail popmail got-password password) |
270 | 1412 (while files |
24220
33f8216be2f1
(rmail-insert-inbox-text): Handle POP mailboxes
Andrew Innes <andrewi@gnu.org>
parents:
24209
diff
changeset
|
1413 ;; Handle POP mailbox names specially; don't expand as filenames |
33f8216be2f1
(rmail-insert-inbox-text): Handle POP mailboxes
Andrew Innes <andrewi@gnu.org>
parents:
24209
diff
changeset
|
1414 ;; 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
|
1415 (setq file (car files)) |
33f8216be2f1
(rmail-insert-inbox-text): Handle POP mailboxes
Andrew Innes <andrewi@gnu.org>
parents:
24209
diff
changeset
|
1416 (setq popmail (string-match "^po:" file)) |
33f8216be2f1
(rmail-insert-inbox-text): Handle POP mailboxes
Andrew Innes <andrewi@gnu.org>
parents:
24209
diff
changeset
|
1417 (if popmail |
33f8216be2f1
(rmail-insert-inbox-text): Handle POP mailboxes
Andrew Innes <andrewi@gnu.org>
parents:
24209
diff
changeset
|
1418 (setq renamep t) |
33f8216be2f1
(rmail-insert-inbox-text): Handle POP mailboxes
Andrew Innes <andrewi@gnu.org>
parents:
24209
diff
changeset
|
1419 (setq file (file-truename |
36830
7c77da3d3841
(rmail-insert-inbox-text): Call expand-file-name before
Kenichi Handa <handa@m17n.org>
parents:
36645
diff
changeset
|
1420 (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
|
1421 (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
|
1422 ;; 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
|
1423 ;; in case of multiple inboxes that need moving. |
6f4785fee5cc
(rmail-insert-inbox-text): Always use movemail when renaming a file.
Richard M. Stallman <rms@gnu.org>
parents:
12447
diff
changeset
|
1424 (concat ".newmail-" (file-name-nondirectory file)) |
6f4785fee5cc
(rmail-insert-inbox-text): Always use movemail when renaming a file.
Richard M. Stallman <rms@gnu.org>
parents:
12447
diff
changeset
|
1425 ;; 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
|
1426 ;; 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
|
1427 ;; 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
|
1428 ;; 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
|
1429 (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
|
1430 (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
|
1431 ;; 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
|
1432 ;; since there can be mailboxes in various directories. |
6f4785fee5cc
(rmail-insert-inbox-text): Always use movemail when renaming a file.
Richard M. Stallman <rms@gnu.org>
parents:
12447
diff
changeset
|
1433 (setq movemail t) |
6f4785fee5cc
(rmail-insert-inbox-text): Always use movemail when renaming a file.
Richard M. Stallman <rms@gnu.org>
parents:
12447
diff
changeset
|
1434 ;;; ;; If getting from mail spool directory, |
6f4785fee5cc
(rmail-insert-inbox-text): Always use movemail when renaming a file.
Richard M. Stallman <rms@gnu.org>
parents:
12447
diff
changeset
|
1435 ;;; ;; use movemail to move rather than just renaming, |
6f4785fee5cc
(rmail-insert-inbox-text): Always use movemail when renaming a file.
Richard M. Stallman <rms@gnu.org>
parents:
12447
diff
changeset
|
1436 ;;; ;; so as to interlock with the mailer. |
6f4785fee5cc
(rmail-insert-inbox-text): Always use movemail when renaming a file.
Richard M. Stallman <rms@gnu.org>
parents:
12447
diff
changeset
|
1437 ;;; (setq movemail (string= file |
6f4785fee5cc
(rmail-insert-inbox-text): Always use movemail when renaming a file.
Richard M. Stallman <rms@gnu.org>
parents:
12447
diff
changeset
|
1438 ;;; (file-truename |
6f4785fee5cc
(rmail-insert-inbox-text): Always use movemail when renaming a file.
Richard M. Stallman <rms@gnu.org>
parents:
12447
diff
changeset
|
1439 ;;; (concat rmail-spool-directory |
6f4785fee5cc
(rmail-insert-inbox-text): Always use movemail when renaming a file.
Richard M. Stallman <rms@gnu.org>
parents:
12447
diff
changeset
|
1440 ;;; (file-name-nondirectory file))))) |
24220
33f8216be2f1
(rmail-insert-inbox-text): Handle POP mailboxes
Andrew Innes <andrewi@gnu.org>
parents:
24209
diff
changeset
|
1441 (if (and movemail (not popmail)) |
270 | 1442 (progn |
1443 ;; On some systems, /usr/spool/mail/foo is a directory | |
1444 ;; and the actual inbox is /usr/spool/mail/foo/foo. | |
1445 (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
|
1446 (setq file (expand-file-name (user-login-name) |
270 | 1447 file))))) |
11452
a24224fc5a92
(rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents:
11049
diff
changeset
|
1448 (cond (popmail |
22838
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
1449 (if rmail-pop-password-required |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
1450 (progn (setq got-password (not (rmail-have-password))) |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
1451 (setq password (rmail-get-pop-password)))) |
15085
7048437bc690
(rmail-insert-inbox-text): When required, prompt for
Richard M. Stallman <rms@gnu.org>
parents:
14916
diff
changeset
|
1452 (if (eq system-type 'windows-nt) |
7048437bc690
(rmail-insert-inbox-text): When required, prompt for
Richard M. Stallman <rms@gnu.org>
parents:
14916
diff
changeset
|
1453 ;; cannot have "po:" in file name |
7048437bc690
(rmail-insert-inbox-text): When required, prompt for
Richard M. Stallman <rms@gnu.org>
parents:
14916
diff
changeset
|
1454 (setq tofile |
7048437bc690
(rmail-insert-inbox-text): When required, prompt for
Richard M. Stallman <rms@gnu.org>
parents:
14916
diff
changeset
|
1455 (expand-file-name |
24220
33f8216be2f1
(rmail-insert-inbox-text): Handle POP mailboxes
Andrew Innes <andrewi@gnu.org>
parents:
24209
diff
changeset
|
1456 (concat ".newmail-pop-" |
33f8216be2f1
(rmail-insert-inbox-text): Handle POP mailboxes
Andrew Innes <andrewi@gnu.org>
parents:
24209
diff
changeset
|
1457 (file-name-nondirectory (substring file 3))) |
15085
7048437bc690
(rmail-insert-inbox-text): When required, prompt for
Richard M. Stallman <rms@gnu.org>
parents:
14916
diff
changeset
|
1458 (file-name-directory |
7048437bc690
(rmail-insert-inbox-text): When required, prompt for
Richard M. Stallman <rms@gnu.org>
parents:
14916
diff
changeset
|
1459 (expand-file-name buffer-file-name))))) |
11452
a24224fc5a92
(rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents:
11049
diff
changeset
|
1460 (message "Getting mail from post office ...")) |
a24224fc5a92
(rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents:
11049
diff
changeset
|
1461 ((and (file-exists-p tofile) |
a24224fc5a92
(rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents:
11049
diff
changeset
|
1462 (/= 0 (nth 7 (file-attributes tofile)))) |
a24224fc5a92
(rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents:
11049
diff
changeset
|
1463 (message "Getting mail from %s..." tofile)) |
a24224fc5a92
(rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents:
11049
diff
changeset
|
1464 ((and (file-exists-p file) |
a24224fc5a92
(rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents:
11049
diff
changeset
|
1465 (/= 0 (nth 7 (file-attributes file)))) |
a24224fc5a92
(rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents:
11049
diff
changeset
|
1466 (message "Getting mail from %s..." file))) |
270 | 1467 ;; Set TOFILE if have not already done so, and |
1468 ;; rename or copy the file FILE to TOFILE if and as appropriate. | |
1469 (cond ((not renamep) | |
1470 (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
|
1471 ((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
|
1472 (not (file-exists-p file)))) |
270 | 1473 nil) |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1474 ((and (not movemail) (not popmail)) |
16908
fd99785417a5
(rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16772
diff
changeset
|
1475 ;; Try copying. If that fails (perhaps no space) and |
fd99785417a5
(rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16772
diff
changeset
|
1476 ;; we're allowed to blow away the inbox, rename instead. |
fd99785417a5
(rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16772
diff
changeset
|
1477 (if rmail-preserve-inbox |
4071
4f387cc0a49f
(rmail-insert-inbox-text): If inbox is not in the
Richard M. Stallman <rms@gnu.org>
parents:
4020
diff
changeset
|
1478 (copy-file file tofile nil) |
16908
fd99785417a5
(rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16772
diff
changeset
|
1479 (condition-case nil |
fd99785417a5
(rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16772
diff
changeset
|
1480 (copy-file file tofile nil) |
fd99785417a5
(rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16772
diff
changeset
|
1481 (error |
fd99785417a5
(rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16772
diff
changeset
|
1482 ;; Third arg is t so we can replace existing file TOFILE. |
fd99785417a5
(rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16772
diff
changeset
|
1483 (rename-file file tofile t)))) |
1165 | 1484 ;; Make the real inbox file empty. |
1485 ;; Leaving it deleted could cause lossage | |
1486 ;; because mailers often won't create the file. | |
16908
fd99785417a5
(rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16772
diff
changeset
|
1487 (if (not rmail-preserve-inbox) |
fd99785417a5
(rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16772
diff
changeset
|
1488 (condition-case () |
fd99785417a5
(rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16772
diff
changeset
|
1489 (write-region (point) (point) file) |
fd99785417a5
(rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16772
diff
changeset
|
1490 (file-error nil)))) |
270 | 1491 (t |
1492 (let ((errors nil)) | |
1493 (unwind-protect | |
1494 (save-excursion | |
1495 (setq errors (generate-new-buffer " *rmail loss*")) | |
1496 (buffer-disable-undo errors) | |
16908
fd99785417a5
(rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16772
diff
changeset
|
1497 (let ((args |
fd99785417a5
(rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16772
diff
changeset
|
1498 (append |
fd99785417a5
(rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16772
diff
changeset
|
1499 (list (or rmail-movemail-program |
fd99785417a5
(rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16772
diff
changeset
|
1500 (expand-file-name "movemail" |
fd99785417a5
(rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16772
diff
changeset
|
1501 exec-directory)) |
fd99785417a5
(rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16772
diff
changeset
|
1502 nil errors nil) |
fd99785417a5
(rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16772
diff
changeset
|
1503 (if rmail-preserve-inbox |
fd99785417a5
(rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16772
diff
changeset
|
1504 (list "-p") |
fd99785417a5
(rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16772
diff
changeset
|
1505 nil) |
21395
57c8bfa789b6
(rmail-movemail-flags): New customizable variable
Karl Heuer <kwzh@gnu.org>
parents:
21347
diff
changeset
|
1506 rmail-movemail-flags |
16908
fd99785417a5
(rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16772
diff
changeset
|
1507 (list file tofile) |
22838
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
1508 (if password (list password) nil)))) |
16908
fd99785417a5
(rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16772
diff
changeset
|
1509 (apply 'call-process args)) |
270 | 1510 (if (not (buffer-modified-p errors)) |
1511 ;; No output => movemail won | |
1512 nil | |
1513 (set-buffer errors) | |
1514 (subst-char-in-region (point-min) (point-max) | |
1515 ?\n ?\ ) | |
1516 (goto-char (point-max)) | |
1517 (skip-chars-backward " \t") | |
1518 (delete-region (point) (point-max)) | |
1519 (goto-char (point-min)) | |
1520 (if (looking-at "movemail: ") | |
1521 (delete-region (point-min) (match-end 0))) | |
1522 (beep t) | |
14325
51bfdecb7084
(rmail-insert-inbox-text): Pass proper format string to message.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
1523 (message "movemail: %s" |
51bfdecb7084
(rmail-insert-inbox-text): Pass proper format string to message.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
1524 (buffer-substring (point-min) |
51bfdecb7084
(rmail-insert-inbox-text): Pass proper format string to message.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
1525 (point-max))) |
18990 | 1526 ;; If we just read the password, most likely it is |
1527 ;; wrong. Otherwise, see if there is a specific | |
1528 ;; reason to think that the problem is a wrong passwd. | |
18989
6253a99afd95
(rmail-pop-password-error): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
18957
diff
changeset
|
1529 (if (or got-password |
6253a99afd95
(rmail-pop-password-error): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
18957
diff
changeset
|
1530 (re-search-forward rmail-pop-password-error |
6253a99afd95
(rmail-pop-password-error): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
18957
diff
changeset
|
1531 nil t)) |
22838
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
1532 (rmail-set-pop-password nil)) |
270 | 1533 (sit-for 3) |
1534 nil)) | |
1535 (if errors (kill-buffer errors)))))) | |
1536 ;; At this point, TOFILE contains the name to read: | |
1537 ;; Either the alternate name (if we renamed) | |
1538 ;; or the actual inbox (if not renaming). | |
1539 (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
|
1540 (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
|
1541 size) |
270 | 1542 (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
|
1543 (setq size (nth 1 (insert-file-contents tofile))) |
270 | 1544 (goto-char (point-max)) |
1545 (or (= (preceding-char) ?\n) | |
1546 (zerop size) | |
1547 (insert ?\n)) | |
16908
fd99785417a5
(rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16772
diff
changeset
|
1548 (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
|
1549 (setq delete-files (cons tofile delete-files))))) |
270 | 1550 (message "") |
1551 (setq files (cdr files))) | |
1552 delete-files)) | |
1553 | |
24209
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
1554 ;; 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
|
1555 ;; 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
|
1556 (defun rmail-decode-region (from to coding) |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
1557 (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
|
1558 (setq coding 'undecided)) |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
1559 (decode-coding-region from to coding)) |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
1560 |
270 | 1561 ;; the rmail-break-forwarded-messages feature is not implemented |
1562 (defun rmail-convert-to-babyl-format () | |
1563 (let ((count 0) start | |
402
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
1564 (case-fold-search nil) |
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
1565 (invalid-input-resync |
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
1566 (function (lambda () |
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
1567 (message "Invalid Babyl format in inbox!") |
16241
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
1568 (sit-for 3) |
402
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
1569 ;; Try to get back in sync with a real message. |
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
1570 (if (re-search-forward |
18091
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
1571 (concat rmail-mmdf-delim1 "\\|^From") nil t) |
402
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
1572 (beginning-of-line) |
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
1573 (goto-char (point-max))))))) |
270 | 1574 (goto-char (point-min)) |
1575 (save-restriction | |
1576 (while (not (eobp)) | |
17093
f8584d52dd48
(rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents:
17065
diff
changeset
|
1577 (setq start (point)) |
270 | 1578 (cond ((looking-at "BABYL OPTIONS:");Babyl header |
402
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
1579 (if (search-forward "\n\^_" nil t) |
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
1580 ;; If we find the proper terminator, delete through there. |
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
1581 (delete-region (point-min) (point)) |
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
1582 (funcall invalid-input-resync) |
405
698d5d6e8f8b
*** empty log message ***
Michael I. Bushnell <mib@gnu.org>
parents:
403
diff
changeset
|
1583 (delete-region (point-min) (point)))) |
270 | 1584 ;; Babyl format message |
1585 ((looking-at "\^L") | |
1586 (or (search-forward "\n\^_" nil t) | |
402
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
1587 (funcall invalid-input-resync)) |
270 | 1588 (setq count (1+ count)) |
1589 ;; Make sure there is no extra white space after the ^_ | |
1590 ;; at the end of the message. | |
1591 ;; Narrowing will make sure that whatever follows the junk | |
1592 ;; will be treated properly. | |
1593 (delete-region (point) | |
1594 (save-excursion | |
1595 (skip-chars-forward " \t\n") | |
1596 (point))) | |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1597 (setq last-coding-system-used nil) |
17093
f8584d52dd48
(rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents:
17065
diff
changeset
|
1598 (or rmail-enable-mime |
20943
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
1599 (not rmail-enable-multibyte) |
17093
f8584d52dd48
(rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents:
17065
diff
changeset
|
1600 (decode-coding-region start (point) |
20943
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
1601 (or rmail-file-coding-system |
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
1602 'undecided))) |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1603 ;; Add an X-Coding-System: header if we don't have one. |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1604 (save-excursion |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1605 (goto-char start) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1606 (forward-line 1) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1607 (if (looking-at "0") |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1608 (forward-line 1) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1609 (forward-line 2)) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1610 (or (save-restriction |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1611 (narrow-to-region (point) (point-max)) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1612 (rfc822-goto-eoh) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1613 (goto-char (point-min)) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1614 (re-search-forward "^X-Coding-System:" nil t)) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1615 (insert "X-Coding-System: " |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1616 (symbol-name last-coding-system-used) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1617 "\n"))) |
270 | 1618 (narrow-to-region (point) (point-max))) |
1619 ;;*** MMDF format | |
1620 ((let ((case-fold-search t)) | |
18091
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
1621 (looking-at rmail-mmdf-delim1)) |
270 | 1622 (let ((case-fold-search t)) |
1623 (replace-match "\^L\n0, unseen,,\n*** EOOH ***\n") | |
18091
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
1624 (re-search-forward rmail-mmdf-delim2 nil t) |
270 | 1625 (replace-match "\^_")) |
1626 (save-excursion | |
1627 (save-restriction | |
1628 (narrow-to-region start (1- (point))) | |
1629 (goto-char (point-min)) | |
1630 (while (search-forward "\n\^_" nil t); single char "\^_" | |
1631 (replace-match "\n^_")))); 2 chars: "^" and "_" | |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1632 (setq last-coding-system-used nil) |
17093
f8584d52dd48
(rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents:
17065
diff
changeset
|
1633 (or rmail-enable-mime |
20943
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
1634 (not rmail-enable-multibyte) |
17839
b4a81f70d905
Coding system names changed as follows:
Kenichi Handa <handa@m17n.org>
parents:
17822
diff
changeset
|
1635 (decode-coding-region start (point) 'undecided)) |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1636 (save-excursion |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1637 (goto-char start) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1638 (forward-line 3) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1639 (insert "X-Coding-System: " |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1640 (symbol-name last-coding-system-used) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1641 "\n")) |
270 | 1642 (narrow-to-region (point) (point-max)) |
1643 (setq count (1+ count))) | |
1644 ;;*** Mail format | |
1645 ((looking-at "^From ") | |
1646 (insert "\^L\n0, unseen,,\n*** EOOH ***\n") | |
1647 (rmail-nuke-pinhead-header) | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1648 ;; If this message has a Content-Length field, |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1649 ;; skip to the end of the contents. |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1650 (let* ((header-end (save-excursion |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1651 (and (re-search-forward "\n\n" nil t) |
5466
794b93d511b9
(rmail-convert-to-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
5419
diff
changeset
|
1652 (1- (point))))) |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1653 (case-fold-search t) |
20273
f451d46a8c68
(rmail-convert-to-babyl-format): If the
Karl Heuer <kwzh@gnu.org>
parents:
20261
diff
changeset
|
1654 (quoted-printable-header-field-end |
f451d46a8c68
(rmail-convert-to-babyl-format): If the
Karl Heuer <kwzh@gnu.org>
parents:
20261
diff
changeset
|
1655 (save-excursion |
f451d46a8c68
(rmail-convert-to-babyl-format): If the
Karl Heuer <kwzh@gnu.org>
parents:
20261
diff
changeset
|
1656 (re-search-forward |
20274 | 1657 "^content-transfer-encoding:\\(\n?[\t ]\\)*quoted-printable\\(\n?[\t ]\\)*" |
20273
f451d46a8c68
(rmail-convert-to-babyl-format): If the
Karl Heuer <kwzh@gnu.org>
parents:
20261
diff
changeset
|
1658 header-end t))) |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1659 (size |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1660 ;; Get the numeric value from the Content-Length field. |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1661 (save-excursion |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1662 ;; Back up to end of prev line, |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1663 ;; in case the Content-Length field comes first. |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1664 (forward-char -1) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1665 (and (search-forward "\ncontent-length: " |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1666 header-end t) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1667 (let ((beg (point)) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1668 (eol (progn (end-of-line) (point)))) |
6389
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
parents:
6289
diff
changeset
|
1669 (string-to-int (buffer-substring beg eol))))))) |
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
parents:
6289
diff
changeset
|
1670 (and size |
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
parents:
6289
diff
changeset
|
1671 (if (and (natnump size) |
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
parents:
6289
diff
changeset
|
1672 (<= (+ header-end size) (point-max)) |
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
parents:
6289
diff
changeset
|
1673 ;; Make sure this would put us at a position |
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
parents:
6289
diff
changeset
|
1674 ;; that we could continue from. |
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
parents:
6289
diff
changeset
|
1675 (save-excursion |
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
parents:
6289
diff
changeset
|
1676 (goto-char (+ header-end size)) |
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
parents:
6289
diff
changeset
|
1677 (skip-chars-forward "\n") |
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
parents:
6289
diff
changeset
|
1678 (or (eobp) |
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
parents:
6289
diff
changeset
|
1679 (and (looking-at "BABYL OPTIONS:") |
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
parents:
6289
diff
changeset
|
1680 (search-forward "\n\^_" nil t)) |
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
parents:
6289
diff
changeset
|
1681 (and (looking-at "\^L") |
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
parents:
6289
diff
changeset
|
1682 (search-forward "\n\^_" nil t)) |
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
parents:
6289
diff
changeset
|
1683 (let ((case-fold-search t)) |
18091
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
1684 (looking-at rmail-mmdf-delim1)) |
6389
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
parents:
6289
diff
changeset
|
1685 (looking-at "From ")))) |
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
parents:
6289
diff
changeset
|
1686 (goto-char (+ header-end size)) |
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
parents:
6289
diff
changeset
|
1687 (message "Ignoring invalid Content-Length field") |
20273
f451d46a8c68
(rmail-convert-to-babyl-format): If the
Karl Heuer <kwzh@gnu.org>
parents:
20261
diff
changeset
|
1688 (sit-for 1 0 t))) |
f451d46a8c68
(rmail-convert-to-babyl-format): If the
Karl Heuer <kwzh@gnu.org>
parents:
20261
diff
changeset
|
1689 (if (re-search-forward |
f451d46a8c68
(rmail-convert-to-babyl-format): If the
Karl Heuer <kwzh@gnu.org>
parents:
20261
diff
changeset
|
1690 (concat "^[\^_]?\\(" |
f451d46a8c68
(rmail-convert-to-babyl-format): If the
Karl Heuer <kwzh@gnu.org>
parents:
20261
diff
changeset
|
1691 rmail-unix-mail-delimiter |
f451d46a8c68
(rmail-convert-to-babyl-format): If the
Karl Heuer <kwzh@gnu.org>
parents:
20261
diff
changeset
|
1692 "\\|" |
f451d46a8c68
(rmail-convert-to-babyl-format): If the
Karl Heuer <kwzh@gnu.org>
parents:
20261
diff
changeset
|
1693 rmail-mmdf-delim1 "\\|" |
f451d46a8c68
(rmail-convert-to-babyl-format): If the
Karl Heuer <kwzh@gnu.org>
parents:
20261
diff
changeset
|
1694 "^BABYL OPTIONS:\\|" |
f451d46a8c68
(rmail-convert-to-babyl-format): If the
Karl Heuer <kwzh@gnu.org>
parents:
20261
diff
changeset
|
1695 "\^L\n[01],\\)") nil t) |
f451d46a8c68
(rmail-convert-to-babyl-format): If the
Karl Heuer <kwzh@gnu.org>
parents:
20261
diff
changeset
|
1696 (goto-char (match-beginning 1)) |
f451d46a8c68
(rmail-convert-to-babyl-format): If the
Karl Heuer <kwzh@gnu.org>
parents:
20261
diff
changeset
|
1697 (goto-char (point-max))) |
f451d46a8c68
(rmail-convert-to-babyl-format): If the
Karl Heuer <kwzh@gnu.org>
parents:
20261
diff
changeset
|
1698 (setq count (1+ count)) |
f451d46a8c68
(rmail-convert-to-babyl-format): If the
Karl Heuer <kwzh@gnu.org>
parents:
20261
diff
changeset
|
1699 (if quoted-printable-header-field-end |
f451d46a8c68
(rmail-convert-to-babyl-format): If the
Karl Heuer <kwzh@gnu.org>
parents:
20261
diff
changeset
|
1700 (save-excursion |
20399
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1701 (rmail-decode-quoted-printable header-end (point)) |
20273
f451d46a8c68
(rmail-convert-to-babyl-format): If the
Karl Heuer <kwzh@gnu.org>
parents:
20261
diff
changeset
|
1702 ;; Change "quoted-printable" to "8bit", |
f451d46a8c68
(rmail-convert-to-babyl-format): If the
Karl Heuer <kwzh@gnu.org>
parents:
20261
diff
changeset
|
1703 ;; to reflect the decoding we just did. |
f451d46a8c68
(rmail-convert-to-babyl-format): If the
Karl Heuer <kwzh@gnu.org>
parents:
20261
diff
changeset
|
1704 (goto-char quoted-printable-header-field-end) |
20274 | 1705 (delete-region (point) (search-backward ":")) |
20273
f451d46a8c68
(rmail-convert-to-babyl-format): If the
Karl Heuer <kwzh@gnu.org>
parents:
20261
diff
changeset
|
1706 (insert ": 8bit")))) |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1707 |
270 | 1708 (save-excursion |
1709 (save-restriction | |
1710 (narrow-to-region start (point)) | |
1711 (goto-char (point-min)) | |
1712 (while (search-forward "\n\^_" nil t); single char | |
1713 (replace-match "\n^_")))); 2 chars: "^" and "_" | |
1714 (insert ?\^_) | |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1715 (setq last-coding-system-used nil) |
17093
f8584d52dd48
(rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents:
17065
diff
changeset
|
1716 (or rmail-enable-mime |
20943
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
1717 (not rmail-enable-multibyte) |
24209
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
1718 (let ((mime-charset |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
1719 (if (and rmail-decode-mime-charset |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
1720 (save-excursion |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
1721 (goto-char start) |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
1722 (search-forward "\n\n" nil t) |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
1723 (let ((case-fold-search t)) |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
1724 (re-search-backward |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
1725 rmail-mime-charset-pattern |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
1726 start t)))) |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
1727 (intern (downcase (match-string 1)))))) |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
1728 (rmail-decode-region start (point) mime-charset))) |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1729 (save-excursion |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1730 (goto-char start) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1731 (forward-line 3) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1732 (insert "X-Coding-System: " |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1733 (symbol-name last-coding-system-used) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1734 "\n")) |
270 | 1735 (narrow-to-region (point) (point-max))) |
1736 ;; | |
2700
9de57e00caf7
(rmail-convert-to-babyl-format): Delete 1 char
Richard M. Stallman <rms@gnu.org>
parents:
2687
diff
changeset
|
1737 ;; This kludge is because some versions of sendmail.el |
9de57e00caf7
(rmail-convert-to-babyl-format): Delete 1 char
Richard M. Stallman <rms@gnu.org>
parents:
2687
diff
changeset
|
1738 ;; insert an extra newline at the beginning that shouldn't |
9de57e00caf7
(rmail-convert-to-babyl-format): Delete 1 char
Richard M. Stallman <rms@gnu.org>
parents:
2687
diff
changeset
|
1739 ;; be there. sendmail.el has been fixed, but old versions |
9de57e00caf7
(rmail-convert-to-babyl-format): Delete 1 char
Richard M. Stallman <rms@gnu.org>
parents:
2687
diff
changeset
|
1740 ;; may still be in use. -- rms, 7 May 1993. |
9de57e00caf7
(rmail-convert-to-babyl-format): Delete 1 char
Richard M. Stallman <rms@gnu.org>
parents:
2687
diff
changeset
|
1741 ((eolp) (delete-char 1)) |
405
698d5d6e8f8b
*** empty log message ***
Michael I. Bushnell <mib@gnu.org>
parents:
403
diff
changeset
|
1742 (t (error "Cannot convert to babyl format"))))) |
270 | 1743 count)) |
1744 | |
20399
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1745 (defun rmail-hex-char-to-integer (character) |
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1746 "Return CHARACTER's value interpreted as a hex digit." |
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1747 (if (and (>= character ?0) (<= character ?9)) |
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1748 (- character ?0) |
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1749 (let ((ch (logior character 32))) |
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1750 (if (and (>= ch ?a) (<= ch ?f)) |
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1751 (- ch (- ?a 10)) |
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1752 (error "Invalid hex digit `%c'" ch))))) |
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1753 |
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1754 (defun rmail-hex-string-to-integer (hex-string) |
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1755 "Return decimal integer for HEX-STRING." |
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1756 (let ((hex-num 0) |
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1757 (index 0)) |
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1758 (while (< index (length hex-string)) |
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1759 (setq hex-num (+ (* hex-num 16) |
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1760 (rmail-hex-char-to-integer (aref hex-string index)))) |
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1761 (setq index (1+ index))) |
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1762 hex-num)) |
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1763 |
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1764 (defun rmail-decode-quoted-printable (from to) |
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1765 "Decode Quoted-Printable in the region between FROM and TO." |
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1766 (interactive "r") |
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1767 (goto-char from) |
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1768 (or (markerp to) |
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1769 (setq to (copy-marker to))) |
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1770 (while (search-forward "=" to t) |
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1771 (cond ((eq (following-char) ?\n) |
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1772 (delete-char -1) |
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1773 (delete-char 1)) |
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1774 ((looking-at "[0-9A-F][0-9A-F]") |
29025
a4eab6bb64e0
(rmail-decode-quoted-printable): Use delete-region
Kenichi Handa <handa@m17n.org>
parents:
28910
diff
changeset
|
1775 (let ((byte (rmail-hex-string-to-integer |
a4eab6bb64e0
(rmail-decode-quoted-printable): Use delete-region
Kenichi Handa <handa@m17n.org>
parents:
28910
diff
changeset
|
1776 (buffer-substring (point) (+ 2 (point)))))) |
a4eab6bb64e0
(rmail-decode-quoted-printable): Use delete-region
Kenichi Handa <handa@m17n.org>
parents:
28910
diff
changeset
|
1777 (delete-region (1- (point)) (+ 2 (point))) |
a4eab6bb64e0
(rmail-decode-quoted-printable): Use delete-region
Kenichi Handa <handa@m17n.org>
parents:
28910
diff
changeset
|
1778 (insert byte))) |
20399
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1779 ((looking-at "=") |
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1780 (delete-char 1)) |
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1781 (t |
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1782 (message "Malformed MIME quoted-printable message"))))) |
04ce86b23ffa
(rmail-decode-quoted-printable): New function
Karl Heuer <kwzh@gnu.org>
parents:
20274
diff
changeset
|
1783 |
270 | 1784 ;; Delete the "From ..." line, creating various other headers with |
1785 ;; information from it if they don't already exist. Now puts the | |
4838
754b38c0e941
(rmail): Really don't get new mail if file name was given.
Richard M. Stallman <rms@gnu.org>
parents:
4819
diff
changeset
|
1786 ;; original line into a mail-from: header line for debugging and for |
754b38c0e941
(rmail): Really don't get new mail if file name was given.
Richard M. Stallman <rms@gnu.org>
parents:
4819
diff
changeset
|
1787 ;; use by the rmail-output function. |
270 | 1788 (defun rmail-nuke-pinhead-header () |
1789 (save-excursion | |
1790 (save-restriction | |
1791 (let ((start (point)) | |
1792 (end (progn | |
1793 (condition-case () | |
1794 (search-forward "\n\n") | |
1795 (error | |
1796 (goto-char (point-max)) | |
1797 (insert "\n\n"))) | |
1798 (point))) | |
1799 has-from has-date) | |
1800 (narrow-to-region start end) | |
1801 (let ((case-fold-search t)) | |
1802 (goto-char start) | |
1803 (setq has-from (search-forward "\nFrom:" nil t)) | |
1804 (goto-char start) | |
1805 (setq has-date (and (search-forward "\nDate:" nil t) (point))) | |
1806 (goto-char start)) | |
1807 (let ((case-fold-search nil)) | |
617 | 1808 (if (re-search-forward (concat "^" rmail-unix-mail-delimiter) nil t) |
270 | 1809 (replace-match |
1810 (concat | |
1811 "Mail-from: \\&" | |
1812 ;; Keep and reformat the date if we don't | |
1813 ;; have a Date: field. | |
1814 (if has-date | |
1815 "" | |
1112 | 1816 (concat |
15534
7f169dd814ce
(rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents:
15503
diff
changeset
|
1817 "Date: \\2, \\4 \\3 \\9 \\5 " |
1112 | 1818 |
1819 ;; The timezone could be matched by group 7 or group 10. | |
1820 ;; If neither of them matched, assume EST, since only | |
1821 ;; Easterners would be so sloppy. | |
1822 ;; It's a shame the substitution can't use "\\10". | |
1823 (cond | |
1824 ((/= (match-beginning 7) (match-end 7)) "\\7") | |
1825 ((/= (match-beginning 10) (match-end 10)) | |
1826 (buffer-substring (match-beginning 10) | |
1827 (match-end 10))) | |
1828 (t "EST")) | |
1829 "\n")) | |
270 | 1830 ;; Keep and reformat the sender if we don't |
1831 ;; have a From: field. | |
1832 (if has-from | |
1833 "" | |
4340
505fb5222dea
(rmail-nuke-pinhead-header): Tell replace-match not to alter the case.
Richard M. Stallman <rms@gnu.org>
parents:
4332
diff
changeset
|
1834 "From: \\1\n")) |
505fb5222dea
(rmail-nuke-pinhead-header): Tell replace-match not to alter the case.
Richard M. Stallman <rms@gnu.org>
parents:
4332
diff
changeset
|
1835 t))))))) |
270 | 1836 |
1837 ;;;; *** Rmail Message Formatting and Header Manipulation *** | |
1838 | |
1839 (defun rmail-reformat-message (beg end) | |
1840 (goto-char beg) | |
1841 (forward-line 1) | |
1842 (if (/= (following-char) ?0) | |
1843 (error "Bad format in RMAIL file.")) | |
1844 (let ((buffer-read-only nil) | |
1845 (delta (- (buffer-size) end))) | |
1846 (delete-char 1) | |
1847 (insert ?1) | |
1848 (forward-line 1) | |
4340
505fb5222dea
(rmail-nuke-pinhead-header): Tell replace-match not to alter the case.
Richard M. Stallman <rms@gnu.org>
parents:
4332
diff
changeset
|
1849 (let ((case-fold-search 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
|
1850 (while (looking-at "Summary-line:\\|Mail-From:") |
754b38c0e941
(rmail): Really don't get new mail if file name was given.
Richard M. Stallman <rms@gnu.org>
parents:
4819
diff
changeset
|
1851 (forward-line 1))) |
270 | 1852 (if (looking-at "\\*\\*\\* EOOH \\*\\*\\*\n") |
1853 (delete-region (point) | |
1854 (progn (forward-line 1) (point)))) | |
1855 (let ((str (buffer-substring (point) | |
1856 (save-excursion (search-forward "\n\n" end 'move) | |
1857 (point))))) | |
1858 (insert str "*** EOOH ***\n") | |
1859 (narrow-to-region (point) (- (buffer-size) delta))) | |
1860 (goto-char (point-min)) | |
9062
1f55bc3c629e
(rmail-reformat-message): Run mail-message-filter
Richard M. Stallman <rms@gnu.org>
parents:
9010
diff
changeset
|
1861 (if rmail-message-filter (funcall rmail-message-filter)) |
11452
a24224fc5a92
(rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents:
11049
diff
changeset
|
1862 (if (or rmail-displayed-headers rmail-ignored-headers) |
a24224fc5a92
(rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents:
11049
diff
changeset
|
1863 (rmail-clear-headers)))) |
270 | 1864 |
9010
9d48b6752dbf
(rmail-retry-failure): Copy the whole block of headers from the message
Richard M. Stallman <rms@gnu.org>
parents:
8963
diff
changeset
|
1865 (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
|
1866 "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
|
1867 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
|
1868 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
|
1869 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
|
1870 delete all header fields *except* those whose names match that regexp. |
a24224fc5a92
(rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents:
11049
diff
changeset
|
1871 Otherwise, delete all header fields whose names match `rmail-ignored-headers'." |
21195
169fde4a67c1
(rmail-clear-headers): Make sure an empty line
Richard M. Stallman <rms@gnu.org>
parents:
21192
diff
changeset
|
1872 (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
|
1873 (forward-char -1) |
169fde4a67c1
(rmail-clear-headers): Make sure an empty line
Richard M. Stallman <rms@gnu.org>
parents:
21192
diff
changeset
|
1874 (let ((case-fold-search t) |
169fde4a67c1
(rmail-clear-headers): Make sure an empty line
Richard M. Stallman <rms@gnu.org>
parents:
21192
diff
changeset
|
1875 (buffer-read-only nil)) |
169fde4a67c1
(rmail-clear-headers): Make sure an empty line
Richard M. Stallman <rms@gnu.org>
parents:
21192
diff
changeset
|
1876 (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
|
1877 (save-restriction |
21de06ed5f74
(rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents:
21195
diff
changeset
|
1878 (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
|
1879 (let (lim next) |
21de06ed5f74
(rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents:
21195
diff
changeset
|
1880 (goto-char (point-min)) |
21de06ed5f74
(rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents:
21195
diff
changeset
|
1881 (while (and (not (eobp)) |
21de06ed5f74
(rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents:
21195
diff
changeset
|
1882 (save-excursion |
21de06ed5f74
(rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents:
21195
diff
changeset
|
1883 (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
|
1884 (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
|
1885 next (1+ lim)) |
21de06ed5f74
(rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents:
21195
diff
changeset
|
1886 (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
|
1887 (if (save-excursion |
21de06ed5f74
(rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents:
21195
diff
changeset
|
1888 (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
|
1889 (goto-char next) |
21de06ed5f74
(rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents:
21195
diff
changeset
|
1890 (delete-region (point) next)))) |
21de06ed5f74
(rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents:
21195
diff
changeset
|
1891 (goto-char (point-min))) |
21195
169fde4a67c1
(rmail-clear-headers): Make sure an empty line
Richard M. Stallman <rms@gnu.org>
parents:
21192
diff
changeset
|
1892 (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
|
1893 (save-restriction |
169fde4a67c1
(rmail-clear-headers): Make sure an empty line
Richard M. Stallman <rms@gnu.org>
parents:
21192
diff
changeset
|
1894 (narrow-to-region (point-min) (point)) |
30112
d2611d5071d0
(rmail-clear-headers): Don't throw an error
Gerd Moellmann <gerd@gnu.org>
parents:
30100
diff
changeset
|
1895 (while (and ignored-headers |
d2611d5071d0
(rmail-clear-headers): Don't throw an error
Gerd Moellmann <gerd@gnu.org>
parents:
30100
diff
changeset
|
1896 (progn |
d2611d5071d0
(rmail-clear-headers): Don't throw an error
Gerd Moellmann <gerd@gnu.org>
parents:
30100
diff
changeset
|
1897 (goto-char (point-min)) |
d2611d5071d0
(rmail-clear-headers): Don't throw an error
Gerd Moellmann <gerd@gnu.org>
parents:
30100
diff
changeset
|
1898 (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
|
1899 (beginning-of-line) |
169fde4a67c1
(rmail-clear-headers): Make sure an empty line
Richard M. Stallman <rms@gnu.org>
parents:
21192
diff
changeset
|
1900 (delete-region (point) |
21293
21de06ed5f74
(rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents:
21195
diff
changeset
|
1901 (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
|
1902 (1- (point)) |
21de06ed5f74
(rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents:
21195
diff
changeset
|
1903 (point-max))))))))) |
270 | 1904 |
16772
ce2945525699
(rmail-msg-is-pruned): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16633
diff
changeset
|
1905 (defun rmail-msg-is-pruned () |
270 | 1906 (rmail-maybe-set-message-counters) |
16772
ce2945525699
(rmail-msg-is-pruned): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16633
diff
changeset
|
1907 (save-restriction |
22263
150184345dc7
(rmail-msg-is-pruned): Delete junk from definition.
Richard M. Stallman <rms@gnu.org>
parents:
22201
diff
changeset
|
1908 (narrow-to-region (rmail-msgbeg rmail-current-message) (point-max)) |
16772
ce2945525699
(rmail-msg-is-pruned): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16633
diff
changeset
|
1909 (save-excursion |
22263
150184345dc7
(rmail-msg-is-pruned): Delete junk from definition.
Richard M. Stallman <rms@gnu.org>
parents:
22201
diff
changeset
|
1910 (goto-char (point-min)) |
150184345dc7
(rmail-msg-is-pruned): Delete junk from definition.
Richard M. Stallman <rms@gnu.org>
parents:
22201
diff
changeset
|
1911 (forward-line 1) |
16772
ce2945525699
(rmail-msg-is-pruned): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16633
diff
changeset
|
1912 (= (following-char) ?1)))) |
ce2945525699
(rmail-msg-is-pruned): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16633
diff
changeset
|
1913 |
ce2945525699
(rmail-msg-is-pruned): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16633
diff
changeset
|
1914 (defun rmail-toggle-header (&optional arg) |
ce2945525699
(rmail-msg-is-pruned): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16633
diff
changeset
|
1915 "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
|
1916 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
|
1917 otherwise, show it in full." |
ce2945525699
(rmail-msg-is-pruned): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16633
diff
changeset
|
1918 (interactive "P") |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
1919 (switch-to-buffer rmail-buffer) |
22351
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
1920 (let* ((buffer-read-only nil) |
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
1921 (pruned (rmail-msg-is-pruned)) |
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
1922 (prune (if arg |
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
1923 (> (prefix-numeric-value arg) 0) |
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
1924 (not pruned)))) |
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
1925 (if (eq pruned prune) |
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
1926 t |
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
1927 (rmail-maybe-set-message-counters) |
36642
46b2ffce9799
(rmail-toggle-header): Use a window which is showing the Rmail buffer,
Richard M. Stallman <rms@gnu.org>
parents:
36568
diff
changeset
|
1928 (let* ((window (get-buffer-window (current-buffer))) |
46b2ffce9799
(rmail-toggle-header): Use a window which is showing the Rmail buffer,
Richard M. Stallman <rms@gnu.org>
parents:
36568
diff
changeset
|
1929 (at-point-min (= (point) (point-min))) |
46b2ffce9799
(rmail-toggle-header): Use a window which is showing the Rmail buffer,
Richard M. Stallman <rms@gnu.org>
parents:
36568
diff
changeset
|
1930 (all-headers-visible (= (window-start window) (point-min))) |
46b2ffce9799
(rmail-toggle-header): Use a window which is showing the Rmail buffer,
Richard M. Stallman <rms@gnu.org>
parents:
36568
diff
changeset
|
1931 (on-header (save-excursion |
46b2ffce9799
(rmail-toggle-header): Use a window which is showing the Rmail buffer,
Richard M. Stallman <rms@gnu.org>
parents:
36568
diff
changeset
|
1932 (and (not (search-backward "\n\n" nil t)) |
46b2ffce9799
(rmail-toggle-header): Use a window which is showing the Rmail buffer,
Richard M. Stallman <rms@gnu.org>
parents:
36568
diff
changeset
|
1933 (progn |
46b2ffce9799
(rmail-toggle-header): Use a window which is showing the Rmail buffer,
Richard M. Stallman <rms@gnu.org>
parents:
36568
diff
changeset
|
1934 (end-of-line) |
46b2ffce9799
(rmail-toggle-header): Use a window which is showing the Rmail buffer,
Richard M. Stallman <rms@gnu.org>
parents:
36568
diff
changeset
|
1935 (re-search-backward "^[-A-Za-z0-9]+:" nil t)) |
46b2ffce9799
(rmail-toggle-header): Use a window which is showing the Rmail buffer,
Richard M. Stallman <rms@gnu.org>
parents:
36568
diff
changeset
|
1936 (match-string 0)))) |
46b2ffce9799
(rmail-toggle-header): Use a window which is showing the Rmail buffer,
Richard M. Stallman <rms@gnu.org>
parents:
36568
diff
changeset
|
1937 (old-screen-line |
46b2ffce9799
(rmail-toggle-header): Use a window which is showing the Rmail buffer,
Richard M. Stallman <rms@gnu.org>
parents:
36568
diff
changeset
|
1938 (rmail-count-screen-lines (window-start window) (point)))) |
22351
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
1939 (save-excursion |
22435
98b909125b87
(rmail-toggle-header): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
22374
diff
changeset
|
1940 (narrow-to-region (rmail-msgbeg rmail-current-message) (point-max)) |
98b909125b87
(rmail-toggle-header): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
22374
diff
changeset
|
1941 (if pruned |
98b909125b87
(rmail-toggle-header): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
22374
diff
changeset
|
1942 (let (new-start) |
98b909125b87
(rmail-toggle-header): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
22374
diff
changeset
|
1943 (goto-char (point-min)) |
98b909125b87
(rmail-toggle-header): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
22374
diff
changeset
|
1944 (forward-line 1) |
98b909125b87
(rmail-toggle-header): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
22374
diff
changeset
|
1945 ;; Change 1 to 0. |
98b909125b87
(rmail-toggle-header): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
22374
diff
changeset
|
1946 (delete-char 1) |
98b909125b87
(rmail-toggle-header): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
22374
diff
changeset
|
1947 (insert ?0) |
98b909125b87
(rmail-toggle-header): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
22374
diff
changeset
|
1948 ;; Insert new EOOH line at the proper place. |
98b909125b87
(rmail-toggle-header): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
22374
diff
changeset
|
1949 (forward-line 1) |
98b909125b87
(rmail-toggle-header): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
22374
diff
changeset
|
1950 (let ((case-fold-search t)) |
98b909125b87
(rmail-toggle-header): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
22374
diff
changeset
|
1951 (while (looking-at "Summary-Line:\\|Mail-From:") |
98b909125b87
(rmail-toggle-header): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
22374
diff
changeset
|
1952 (forward-line 1))) |
98b909125b87
(rmail-toggle-header): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
22374
diff
changeset
|
1953 (insert "*** EOOH ***\n") |
98b909125b87
(rmail-toggle-header): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
22374
diff
changeset
|
1954 (setq new-start (point)) |
98b909125b87
(rmail-toggle-header): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
22374
diff
changeset
|
1955 ;; Delete the old reformatted header. |
98b909125b87
(rmail-toggle-header): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
22374
diff
changeset
|
1956 (forward-char -1) |
98b909125b87
(rmail-toggle-header): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
22374
diff
changeset
|
1957 (search-forward "\n*** EOOH ***\n") |
98b909125b87
(rmail-toggle-header): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
22374
diff
changeset
|
1958 (forward-line -1) |
98b909125b87
(rmail-toggle-header): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
22374
diff
changeset
|
1959 (let ((start (point))) |
98b909125b87
(rmail-toggle-header): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
22374
diff
changeset
|
1960 (search-forward "\n\n") |
98b909125b87
(rmail-toggle-header): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
22374
diff
changeset
|
1961 (delete-region start (point))) |
98b909125b87
(rmail-toggle-header): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
22374
diff
changeset
|
1962 ;; Narrow to after the new EOOH line. |
98b909125b87
(rmail-toggle-header): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
22374
diff
changeset
|
1963 (narrow-to-region new-start (point-max))) |
22351
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
1964 (rmail-reformat-message (point-min) (point-max)))) |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
1965 (cond (rmail-enable-mime |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
1966 (funcall rmail-show-mime-function)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
1967 (at-point-min |
22351
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
1968 (goto-char (point-min))) |
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
1969 (on-header |
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
1970 (goto-char (point-min)) |
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
1971 (search-forward "\n\n") |
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
1972 (or (re-search-backward (concat "^" (regexp-quote on-header)) nil t) |
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
1973 (goto-char (point-min)))) |
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
1974 (t |
36642
46b2ffce9799
(rmail-toggle-header): Use a window which is showing the Rmail buffer,
Richard M. Stallman <rms@gnu.org>
parents:
36568
diff
changeset
|
1975 (save-selected-window |
46b2ffce9799
(rmail-toggle-header): Use a window which is showing the Rmail buffer,
Richard M. Stallman <rms@gnu.org>
parents:
36568
diff
changeset
|
1976 (select-window window) |
46b2ffce9799
(rmail-toggle-header): Use a window which is showing the Rmail buffer,
Richard M. Stallman <rms@gnu.org>
parents:
36568
diff
changeset
|
1977 (recenter old-screen-line) |
46b2ffce9799
(rmail-toggle-header): Use a window which is showing the Rmail buffer,
Richard M. Stallman <rms@gnu.org>
parents:
36568
diff
changeset
|
1978 (if (and all-headers-visible |
46b2ffce9799
(rmail-toggle-header): Use a window which is showing the Rmail buffer,
Richard M. Stallman <rms@gnu.org>
parents:
36568
diff
changeset
|
1979 (not (= (window-start) (point-min)))) |
46b2ffce9799
(rmail-toggle-header): Use a window which is showing the Rmail buffer,
Richard M. Stallman <rms@gnu.org>
parents:
36568
diff
changeset
|
1980 (let ((lines-offscreen (rmail-count-screen-lines |
46b2ffce9799
(rmail-toggle-header): Use a window which is showing the Rmail buffer,
Richard M. Stallman <rms@gnu.org>
parents:
36568
diff
changeset
|
1981 (point-min) |
46b2ffce9799
(rmail-toggle-header): Use a window which is showing the Rmail buffer,
Richard M. Stallman <rms@gnu.org>
parents:
36568
diff
changeset
|
1982 (window-start window)))) |
46b2ffce9799
(rmail-toggle-header): Use a window which is showing the Rmail buffer,
Richard M. Stallman <rms@gnu.org>
parents:
36568
diff
changeset
|
1983 (recenter (min (+ old-screen-line lines-offscreen) |
46b2ffce9799
(rmail-toggle-header): Use a window which is showing the Rmail buffer,
Richard M. Stallman <rms@gnu.org>
parents:
36568
diff
changeset
|
1984 ;; last line of window |
36645 | 1985 (- (window-height) 2))))))))) |
22351
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
1986 (rmail-highlight-headers)))) |
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
1987 |
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
1988 ;; Lifted from repos-count-screen-lines. |
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
1989 ;; 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
|
1990 (defun rmail-count-screen-lines (start end) |
22330
6d28f2670ebe
(rmail-toggle-header): Preserve point
Karl Heuer <kwzh@gnu.org>
parents:
22263
diff
changeset
|
1991 (save-excursion |
22351
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
1992 (save-restriction |
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
1993 (narrow-to-region start end) |
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
1994 (goto-char (point-min)) |
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
1995 (vertical-motion (- (point-max) (point-min)))))) |
270 | 1996 |
1997 ;;;; *** Rmail Attributes and Keywords *** | |
1998 | |
1999 ;; Make a string describing current message's attributes and keywords | |
2000 ;; and set it up as the name of a minor mode | |
2001 ;; so it will appear in the mode line. | |
2002 (defun rmail-display-labels () | |
2003 (let ((blurb "") (beg (point-min-marker)) (end (point-max-marker))) | |
2004 (save-excursion | |
2005 (unwind-protect | |
2006 (progn | |
2007 (widen) | |
2008 (goto-char (rmail-msgbeg rmail-current-message)) | |
2009 (forward-line 1) | |
2010 (if (looking-at "[01],") | |
2011 (progn | |
2012 (narrow-to-region (point) (progn (end-of-line) (point))) | |
2013 ;; Truly valid BABYL format requires a space before each | |
2014 ;; attribute or keyword name. Put them in if missing. | |
2015 (let (buffer-read-only) | |
2016 (goto-char (point-min)) | |
2017 (while (search-forward "," nil t) | |
2018 (or (looking-at "[ ,]") (eobp) | |
2019 (insert " ")))) | |
2020 (goto-char (point-max)) | |
2021 (if (search-backward ",," nil 'move) | |
2022 (progn | |
2023 (if (> (point) (1+ (point-min))) | |
2024 (setq blurb (buffer-substring (+ 1 (point-min)) (point)))) | |
2025 (if (> (- (point-max) (point)) 2) | |
2026 (setq blurb | |
2027 (concat blurb | |
2028 ";" | |
2029 (buffer-substring (+ (point) 3) | |
2030 (1- (point-max))))))))))) | |
2031 ;; Note: we don't use save-restriction because that does not work right | |
2032 ;; if changes are made outside the saved restriction | |
2033 ;; before that restriction is restored. | |
2034 (narrow-to-region beg end) | |
2035 (set-marker beg nil) | |
2036 (set-marker end nil))) | |
2037 (while (string-match " +," blurb) | |
2038 (setq blurb (concat (substring blurb 0 (match-beginning 0)) "," | |
2039 (substring blurb (match-end 0))))) | |
2040 (while (string-match ", +" blurb) | |
2041 (setq blurb (concat (substring blurb 0 (match-beginning 0)) "," | |
2042 (substring blurb (match-end 0))))) | |
2043 (setq mode-line-process | |
11452
a24224fc5a92
(rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents:
11049
diff
changeset
|
2044 (format " %d/%d%s" |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2045 rmail-current-message rmail-total-messages blurb)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2046 ;; 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
|
2047 ;; `mode-line-process' of rmail-view-buffer too. |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2048 (if (and rmail-enable-mime |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2049 (not (eq (current-buffer) rmail-view-buffer)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2050 (buffer-live-p rmail-view-buffer)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2051 (let ((mlp mode-line-process)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2052 (with-current-buffer rmail-view-buffer |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2053 (setq mode-line-process mlp)))))) |
270 | 2054 |
2055 ;; Turn an attribute of a message on or off according to STATE. | |
2056 ;; ATTR is the name of the attribute, as a string. | |
2057 ;; MSGNUM is message number to change; nil means current message. | |
2058 (defun rmail-set-attribute (attr state &optional msgnum) | |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2059 (set-buffer rmail-buffer) |
270 | 2060 (let ((omax (point-max-marker)) |
2061 (omin (point-min-marker)) | |
2062 (buffer-read-only nil)) | |
2063 (or msgnum (setq msgnum rmail-current-message)) | |
5047
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2064 (if (> msgnum 0) |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2065 (unwind-protect |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2066 (save-excursion |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2067 (widen) |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2068 (goto-char (+ 3 (rmail-msgbeg msgnum))) |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2069 (let ((curstate |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2070 (not |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2071 (null (search-backward (concat ", " attr ",") |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2072 (prog1 (point) (end-of-line)) t))))) |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2073 (or (eq curstate (not (not state))) |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2074 (if curstate |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2075 (delete-region (point) (1- (match-end 0))) |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2076 (beginning-of-line) |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2077 (forward-char 2) |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2078 (insert " " attr ",")))) |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2079 (if (string= attr "deleted") |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2080 (rmail-set-message-deleted-p msgnum state))) |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2081 ;; Note: we don't use save-restriction because that does not work right |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2082 ;; if changes are made outside the saved restriction |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2083 ;; before that restriction is restored. |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2084 (narrow-to-region omin omax) |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2085 (set-marker omin nil) |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2086 (set-marker omax nil) |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2087 (if (= msgnum rmail-current-message) |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2088 (rmail-display-labels)))))) |
270 | 2089 |
2090 ;; Return t if the attributes/keywords line of msg number MSG | |
2091 ;; contains a match for the regexp LABELS. | |
2092 (defun rmail-message-labels-p (msg labels) | |
2093 (save-excursion | |
2094 (save-restriction | |
2095 (widen) | |
2096 (goto-char (rmail-msgbeg msg)) | |
2097 (forward-char 3) | |
2098 (re-search-backward labels (prog1 (point) (end-of-line)) t)))) | |
2099 | |
2100 ;;;; *** Rmail Message Selection And Support *** | |
2101 | |
2102 (defun rmail-msgend (n) | |
2103 (marker-position (aref rmail-message-vector (1+ n)))) | |
2104 | |
2105 (defun rmail-msgbeg (n) | |
2106 (marker-position (aref rmail-message-vector n))) | |
2107 | |
2108 (defun rmail-widen-to-current-msgbeg (function) | |
2109 "Call FUNCTION with point at start of internal data of current message. | |
2110 Assumes that bounds were previously narrowed to display the message in Rmail. | |
2111 The bounds are widened enough to move point where desired, then narrowed | |
2112 again afterward. | |
2113 | |
2114 FUNCTION may not change the visible text of the message, but it may | |
2115 change the invisible header text." | |
2116 (save-excursion | |
29301
aec01f0c6729
(rmail-widen-to-current-msgbeg): Use rmail-msgbeg
Gerd Moellmann <gerd@gnu.org>
parents:
29160
diff
changeset
|
2117 (unwind-protect |
aec01f0c6729
(rmail-widen-to-current-msgbeg): Use rmail-msgbeg
Gerd Moellmann <gerd@gnu.org>
parents:
29160
diff
changeset
|
2118 (progn |
aec01f0c6729
(rmail-widen-to-current-msgbeg): Use rmail-msgbeg
Gerd Moellmann <gerd@gnu.org>
parents:
29160
diff
changeset
|
2119 (narrow-to-region (rmail-msgbeg rmail-current-message) |
aec01f0c6729
(rmail-widen-to-current-msgbeg): Use rmail-msgbeg
Gerd Moellmann <gerd@gnu.org>
parents:
29160
diff
changeset
|
2120 (point-max)) |
aec01f0c6729
(rmail-widen-to-current-msgbeg): Use rmail-msgbeg
Gerd Moellmann <gerd@gnu.org>
parents:
29160
diff
changeset
|
2121 (goto-char (point-min)) |
aec01f0c6729
(rmail-widen-to-current-msgbeg): Use rmail-msgbeg
Gerd Moellmann <gerd@gnu.org>
parents:
29160
diff
changeset
|
2122 (funcall function)) |
270 | 2123 ;; Note: we don't use save-restriction because that does not work right |
2124 ;; if changes are made outside the saved restriction | |
2125 ;; before that restriction is restored. | |
29301
aec01f0c6729
(rmail-widen-to-current-msgbeg): Use rmail-msgbeg
Gerd Moellmann <gerd@gnu.org>
parents:
29160
diff
changeset
|
2126 (narrow-to-region (rmail-msgbeg rmail-current-message) |
aec01f0c6729
(rmail-widen-to-current-msgbeg): Use rmail-msgbeg
Gerd Moellmann <gerd@gnu.org>
parents:
29160
diff
changeset
|
2127 (rmail-msgend rmail-current-message))))) |
270 | 2128 |
2129 (defun rmail-forget-messages () | |
2130 (unwind-protect | |
2131 (if (vectorp rmail-message-vector) | |
2132 (let* ((i 0) | |
2133 (v rmail-message-vector) | |
2134 (n (length v))) | |
2135 (while (< i n) | |
2136 (move-marker (aref v i) nil) | |
2137 (setq i (1+ i))))) | |
2138 (setq rmail-message-vector nil) | |
17620
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
2139 (setq rmail-msgref-vector nil) |
270 | 2140 (setq rmail-deleted-vector nil))) |
2141 | |
2142 (defun rmail-maybe-set-message-counters () | |
2143 (if (not (and rmail-deleted-vector | |
2144 rmail-message-vector | |
2145 rmail-current-message | |
2146 rmail-total-messages)) | |
2147 (rmail-set-message-counters))) | |
2148 | |
2149 (defun rmail-count-new-messages (&optional nomsg) | |
2150 (let* ((case-fold-search nil) | |
2151 (total-messages 0) | |
2152 (messages-head nil) | |
2153 (deleted-head nil)) | |
2154 (or nomsg (message "Counting new messages...")) | |
2155 (goto-char (point-max)) | |
2156 ;; Put at the end of messages-head | |
2157 ;; the entry for message N+1, which marks | |
2158 ;; the end of message N. (N = number of messages). | |
2159 (search-backward "\n\^_") | |
2160 (forward-char 1) | |
2161 (setq messages-head (list (point-marker))) | |
2162 (rmail-set-message-counters-counter (point-min)) | |
2163 (setq rmail-current-message (1+ rmail-total-messages)) | |
2164 (setq rmail-total-messages | |
2165 (+ rmail-total-messages total-messages)) | |
2166 (setq rmail-message-vector | |
2167 (vconcat rmail-message-vector (cdr messages-head))) | |
2168 (aset rmail-message-vector | |
2169 rmail-current-message (car messages-head)) | |
2170 (setq rmail-deleted-vector | |
2171 (concat rmail-deleted-vector deleted-head)) | |
2172 (setq rmail-summary-vector | |
2173 (vconcat rmail-summary-vector (make-vector total-messages nil))) | |
17620
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
2174 (setq rmail-msgref-vector |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
2175 (vconcat rmail-msgref-vector (make-vector total-messages nil))) |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
2176 ;; Fill in the new elements of rmail-msgref-vector. |
17640
bd31032a2940
(rmail-count-new-messages): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
17630
diff
changeset
|
2177 (let ((i (1+ (- rmail-total-messages total-messages)))) |
17620
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
2178 (while (<= i rmail-total-messages) |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
2179 (aset rmail-msgref-vector i (list i)) |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
2180 (setq i (1+ i)))) |
270 | 2181 (goto-char (point-min)) |
2182 (or nomsg (message "Counting new messages...done (%d)" total-messages)))) | |
2183 | |
2184 (defun rmail-set-message-counters () | |
2185 (rmail-forget-messages) | |
2186 (save-excursion | |
2187 (save-restriction | |
2188 (widen) | |
2189 (let* ((point-save (point)) | |
2190 (total-messages 0) | |
2191 (messages-after-point) | |
2192 (case-fold-search nil) | |
2193 (messages-head nil) | |
2194 (deleted-head nil)) | |
2195 (message "Counting messages...") | |
2196 (goto-char (point-max)) | |
2197 ;; Put at the end of messages-head | |
2198 ;; the entry for message N+1, which marks | |
2199 ;; the end of message N. (N = number of messages). | |
5586
fdf1d3924296
(rmail-bury): Rename local rmail-buffer to buffer-to-bury.
Richard M. Stallman <rms@gnu.org>
parents:
5470
diff
changeset
|
2200 (search-backward "\n\^_" nil t) |
fdf1d3924296
(rmail-bury): Rename local rmail-buffer to buffer-to-bury.
Richard M. Stallman <rms@gnu.org>
parents:
5470
diff
changeset
|
2201 (if (/= (point) (point-max)) (forward-char 1)) |
270 | 2202 (setq messages-head (list (point-marker))) |
2203 (rmail-set-message-counters-counter (min (point) point-save)) | |
2204 (setq messages-after-point total-messages) | |
2205 (rmail-set-message-counters-counter) | |
2206 (setq rmail-total-messages total-messages) | |
2207 (setq rmail-current-message | |
2208 (min total-messages | |
2209 (max 1 (- total-messages messages-after-point)))) | |
2210 (setq rmail-message-vector | |
2211 (apply 'vector (cons (point-min-marker) messages-head)) | |
34055
331be7a21155
(rmail-set-message-counters): Don't use "D"
Gerd Moellmann <gerd@gnu.org>
parents:
33918
diff
changeset
|
2212 rmail-deleted-vector (concat "0" deleted-head) |
17620
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
2213 rmail-summary-vector (make-vector rmail-total-messages nil) |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
2214 rmail-msgref-vector (make-vector (1+ rmail-total-messages) nil)) |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
2215 (let ((i 0)) |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
2216 (while (<= i rmail-total-messages) |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
2217 (aset rmail-msgref-vector i (list i)) |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
2218 (setq i (1+ i)))) |
270 | 2219 (message "Counting messages...done"))))) |
2220 | |
2221 (defun rmail-set-message-counters-counter (&optional stop) | |
23750
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2222 (let ((start (point)) |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2223 next) |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2224 (while (search-backward "\n\^_\^L" stop t) |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2225 ;; Detect messages that have been added with DOS line endings and |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2226 ;; convert the line endings for such messages. |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2227 (setq next (point)) |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2228 (if (looking-at "\n\^_\^L\r\n") |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2229 (let ((buffer-read-only nil) |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2230 (buffer-undo t)) |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2231 (message "Counting messages...(converting line endings)") |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2232 (save-excursion |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2233 (goto-char start) |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2234 (while (search-backward "\r\n" next t) |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2235 (delete-char 1))))) |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2236 (setq start next) |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2237 (forward-char 1) |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2238 (setq messages-head (cons (point-marker) messages-head)) |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2239 (save-excursion |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2240 (setq deleted-head |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2241 (cons (if (search-backward ", deleted," |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2242 (prog1 (point) |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2243 (forward-line 2)) |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2244 t) |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2245 ?D ?\ ) |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2246 deleted-head))) |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2247 (if (zerop (% (setq total-messages (1+ total-messages)) 20)) |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2248 (message "Counting messages...%d" total-messages))))) |
270 | 2249 |
2250 (defun rmail-beginning-of-message () | |
2251 "Show current message starting from the beginning." | |
2252 (interactive) | |
2253 (rmail-show-message rmail-current-message)) | |
2254 | |
9431
65e65fe6e8f3
(rmail-show-message): New argument no-summary.
Richard M. Stallman <rms@gnu.org>
parents:
9394
diff
changeset
|
2255 (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
|
2256 "Show message number N (prefix argument), counting from start of file. |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2257 If summary buffer is currently displayed, update current message there also." |
270 | 2258 (interactive "p") |
17093
f8584d52dd48
(rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents:
17065
diff
changeset
|
2259 (or (eq major-mode 'rmail-mode) |
f8584d52dd48
(rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents:
17065
diff
changeset
|
2260 (switch-to-buffer rmail-buffer)) |
270 | 2261 (rmail-maybe-set-message-counters) |
2262 (widen) | |
2263 (if (zerop rmail-total-messages) | |
2264 (progn (narrow-to-region (point-min) (1- (point-max))) | |
2265 (goto-char (point-min)) | |
2266 (setq mode-line-process nil)) | |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2267 (let (blurb coding-system) |
270 | 2268 (if (not n) |
2269 (setq n rmail-current-message) | |
2270 (cond ((<= n 0) | |
2271 (setq n 1 | |
2272 rmail-current-message 1 | |
2273 blurb "No previous message")) | |
2274 ((> n rmail-total-messages) | |
2275 (setq n rmail-total-messages | |
2276 rmail-current-message rmail-total-messages | |
2277 blurb "No following message")) | |
2278 (t | |
2279 (setq rmail-current-message n)))) | |
16241
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
2280 (let ((beg (rmail-msgbeg n))) |
270 | 2281 (goto-char beg) |
2282 (forward-line 1) | |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2283 (save-excursion |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2284 (let ((end (rmail-msgend n))) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2285 (save-restriction |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2286 (if (prog1 (= (following-char) ?0) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2287 (forward-line 2) |
24323
c1bb999de64e
(rmail-show-message): If an unseen message has a
Richard M. Stallman <rms@gnu.org>
parents:
24292
diff
changeset
|
2288 ;; If there's a Summary-line in the (otherwise empty) |
c1bb999de64e
(rmail-show-message): If an unseen message has a
Richard M. Stallman <rms@gnu.org>
parents:
24292
diff
changeset
|
2289 ;; header, we didn't yet get past the EOOH line. |
c1bb999de64e
(rmail-show-message): If an unseen message has a
Richard M. Stallman <rms@gnu.org>
parents:
24292
diff
changeset
|
2290 (if (looking-at "^\\*\\*\\* EOOH \\*\\*\\*\n") |
c1bb999de64e
(rmail-show-message): If an unseen message has a
Richard M. Stallman <rms@gnu.org>
parents:
24292
diff
changeset
|
2291 (forward-line 1)) |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2292 (narrow-to-region (point) end)) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2293 (rfc822-goto-eoh) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2294 (search-forward "\n*** EOOH ***\n" end t)) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2295 (narrow-to-region beg (point)) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2296 (goto-char (point-min)) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2297 (if (re-search-forward "^X-Coding-System: *\\(.*\\)$" nil t) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2298 (let ((coding-system (intern (match-string 1)))) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2299 (check-coding-system coding-system) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2300 (setq buffer-file-coding-system coding-system)) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2301 (setq buffer-file-coding-system nil))))) |
16241
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
2302 ;; Clear the "unseen" attribute when we show a message. |
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
2303 (rmail-set-attribute "unseen" nil) |
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
2304 (let ((end (rmail-msgend n))) |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2305 ;; Reformat the header, or else find the reformatted header. |
16241
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
2306 (if (= (following-char) ?0) |
270 | 2307 (rmail-reformat-message beg end) |
16241
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
2308 (search-forward "\n*** EOOH ***\n" end t) |
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
2309 (narrow-to-region (point) end))) |
270 | 2310 (goto-char (point-min)) |
2311 (rmail-display-labels) | |
17093
f8584d52dd48
(rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents:
17065
diff
changeset
|
2312 (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
|
2313 (funcall rmail-show-mime-function) |
f8584d52dd48
(rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents:
17065
diff
changeset
|
2314 (setq rmail-view-buffer rmail-buffer) |
f8584d52dd48
(rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents:
17065
diff
changeset
|
2315 ) |
7084
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents:
7065
diff
changeset
|
2316 (rmail-highlight-headers) |
7696
ebcefadd2e1b
(rmail-show-message): If transient-mark-mode, deactivate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
7563
diff
changeset
|
2317 (if transient-mark-mode (deactivate-mark)) |
270 | 2318 (run-hooks 'rmail-show-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
|
2319 ;; If there is a summary buffer, try to move to this message |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2320 ;; in that buffer. But don't complain if this message |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2321 ;; is not mentioned in the summary. |
9431
65e65fe6e8f3
(rmail-show-message): New argument no-summary.
Richard M. Stallman <rms@gnu.org>
parents:
9394
diff
changeset
|
2322 ;; Don't do this at all if we were called on behalf |
65e65fe6e8f3
(rmail-show-message): New argument no-summary.
Richard M. Stallman <rms@gnu.org>
parents:
9394
diff
changeset
|
2323 ;; of cursor motion in the summary buffer. |
65e65fe6e8f3
(rmail-show-message): New argument no-summary.
Richard M. Stallman <rms@gnu.org>
parents:
9394
diff
changeset
|
2324 (and (rmail-summary-exists) (not no-summary) |
65e65fe6e8f3
(rmail-show-message): New argument no-summary.
Richard M. Stallman <rms@gnu.org>
parents:
9394
diff
changeset
|
2325 (let ((curr-msg rmail-current-message)) |
65e65fe6e8f3
(rmail-show-message): New argument no-summary.
Richard M. Stallman <rms@gnu.org>
parents:
9394
diff
changeset
|
2326 (rmail-select-summary |
65e65fe6e8f3
(rmail-show-message): New argument no-summary.
Richard M. Stallman <rms@gnu.org>
parents:
9394
diff
changeset
|
2327 (rmail-summary-goto-msg curr-msg t t)))) |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2328 (with-current-buffer rmail-buffer |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2329 (rmail-auto-file)) |
270 | 2330 (if blurb |
2331 (message blurb)))))) | |
2332 | |
35471
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2333 (defun rmail-redecode-body (coding) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2334 "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
|
2335 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
|
2336 charset= headers. |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2337 |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2338 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
|
2339 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
|
2340 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
|
2341 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
|
2342 |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2343 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
|
2344 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
|
2345 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
|
2346 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
|
2347 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
|
2348 iso-8859, koi8-r, etc." |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2349 (interactive "zCoding system for re-decoding this message: ") |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2350 (when (not rmail-enable-mime) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2351 (or (eq major-mode 'rmail-mode) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2352 (switch-to-buffer rmail-buffer)) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2353 (save-excursion |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2354 (unwind-protect |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2355 (let ((msgbeg (rmail-msgbeg rmail-current-message)) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2356 (msgend (rmail-msgend rmail-current-message)) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2357 x-coding-header) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2358 (narrow-to-region msgbeg msgend) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2359 (goto-char (point-min)) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2360 (when (search-forward "\n*** EOOH ***\n" (point-max) t) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2361 (narrow-to-region msgbeg (point))) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2362 (goto-char (point-min)) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2363 (if (re-search-forward "^X-Coding-System: *\\(.*\\)$" nil t) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2364 (let ((old-coding (intern (match-string 1))) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2365 (buffer-read-only nil)) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2366 (check-coding-system old-coding) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2367 ;; Make sure the new coding system uses the same EOL |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2368 ;; conversion, to prevent ^M characters from popping |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2369 ;; up all over the place. |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2370 (setq coding |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2371 (coding-system-change-eol-conversion |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2372 coding |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2373 (coding-system-eol-type old-coding))) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2374 (setq x-coding-header (point-marker)) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2375 (narrow-to-region msgbeg msgend) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2376 (encode-coding-region (point) msgend old-coding) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2377 (decode-coding-region (point) msgend coding) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2378 (setq last-coding-system-used coding) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2379 ;; Rewrite the coding-system header according |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2380 ;; to what we did. |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2381 (goto-char x-coding-header) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2382 (delete-region (point) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2383 (save-excursion |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2384 (beginning-of-line) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2385 (point))) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2386 (insert "X-Coding-System: " |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2387 (symbol-name last-coding-system-used)) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2388 (set-marker x-coding-header nil) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2389 (rmail-show-message)) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2390 (error "No X-Coding-System header found"))))))) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2391 |
7084
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents:
7065
diff
changeset
|
2392 ;; Find all occurrences of certain fields, and highlight them. |
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents:
7065
diff
changeset
|
2393 (defun rmail-highlight-headers () |
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents:
7065
diff
changeset
|
2394 ;; 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
|
2395 (if (and (fboundp 'internal-find-face) |
d9c6c2429f85
(rmail-highlight-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents:
7955
diff
changeset
|
2396 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
|
2397 (save-excursion |
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents:
7065
diff
changeset
|
2398 (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
|
2399 (save-restriction |
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents:
7065
diff
changeset
|
2400 (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
|
2401 (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
|
2402 (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
|
2403 ;; 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
|
2404 ;; Otherwise use the `highlight' face. |
8383
d2b1b642f4e6
(rmail-highlighted-face): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8378
diff
changeset
|
2405 (face (or rmail-highlight-face |
d2b1b642f4e6
(rmail-highlighted-face): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8378
diff
changeset
|
2406 (if (face-differs-from-default-p 'bold) |
d2b1b642f4e6
(rmail-highlighted-face): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8378
diff
changeset
|
2407 'bold 'highlight))) |
7084
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents:
7065
diff
changeset
|
2408 ;; 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
|
2409 (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
|
2410 (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
|
2411 (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
|
2412 (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
|
2413 (let ((beg (point)) |
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents:
7065
diff
changeset
|
2414 overlay) |
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents:
7065
diff
changeset
|
2415 (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
|
2416 (looking-at "[ \t]"))) |
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents:
7065
diff
changeset
|
2417 ;; 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
|
2418 (forward-char -1) |
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents:
7065
diff
changeset
|
2419 (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
|
2420 (forward-char -1)) |
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents:
7065
diff
changeset
|
2421 (if overlays |
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents:
7065
diff
changeset
|
2422 ;; 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
|
2423 (progn |
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents:
7065
diff
changeset
|
2424 (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
|
2425 overlays (cdr overlays)) |
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents:
7065
diff
changeset
|
2426 (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
|
2427 (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
|
2428 ;; 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
|
2429 ;; rmail-overlay-list. |
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents:
7065
diff
changeset
|
2430 (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
|
2431 (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
|
2432 (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
|
2433 (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
|
2434 |
29160
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2435 (defun rmail-auto-file () |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2436 "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
|
2437 Called when a new message is displayed." |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2438 (if (or (rmail-message-labels-p rmail-current-message "filed") |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2439 (not (string= (buffer-file-name) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2440 (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
|
2441 ;; 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
|
2442 nil |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2443 ;; 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
|
2444 (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
|
2445 (subj (mail-fetch-field "subject")) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2446 (to (concat (mail-fetch-field "to") "," (mail-fetch-field "cc"))) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2447 (d rmail-automatic-folder-directives) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2448 (directive-loop nil) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2449 (folder nil)) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2450 (while d |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2451 (setq folder (car (car d)) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2452 directive-loop (cdr (car d))) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2453 (while (and (car directive-loop) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2454 (let ((f (cond |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2455 ((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
|
2456 ((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
|
2457 ((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
|
2458 (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
|
2459 (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
|
2460 (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
|
2461 ;; 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
|
2462 (if (null directive-loop) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2463 (if (null folder) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2464 (rmail-delete-forward) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2465 (if (string= "/dev/null" folder) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2466 (rmail-delete-message) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2467 (rmail-output-to-rmail-file folder 1 t) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2468 (setq d nil)))) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2469 (setq d (cdr d)))))) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2470 |
270 | 2471 (defun rmail-next-message (n) |
2472 "Show following message whether deleted or not. | |
2473 With prefix arg N, moves forward N messages, or backward if N is negative." | |
2474 (interactive "p") | |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2475 (set-buffer rmail-buffer) |
270 | 2476 (rmail-maybe-set-message-counters) |
2477 (rmail-show-message (+ rmail-current-message n))) | |
2478 | |
2479 (defun rmail-previous-message (n) | |
2480 "Show previous message whether deleted or not. | |
2481 With prefix arg N, moves backward N messages, or forward if N is negative." | |
2482 (interactive "p") | |
2483 (rmail-next-message (- n))) | |
2484 | |
2485 (defun rmail-next-undeleted-message (n) | |
2486 "Show following non-deleted message. | |
2487 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
|
2488 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
|
2489 |
754b38c0e941
(rmail): Really don't get new mail if file name was given.
Richard M. Stallman <rms@gnu.org>
parents:
4819
diff
changeset
|
2490 Returns t if a new message is being shown, nil otherwise." |
270 | 2491 (interactive "p") |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2492 (set-buffer rmail-buffer) |
270 | 2493 (rmail-maybe-set-message-counters) |
2494 (let ((lastwin rmail-current-message) | |
2495 (current rmail-current-message)) | |
2496 (while (and (> n 0) (< current rmail-total-messages)) | |
2497 (setq current (1+ current)) | |
2498 (if (not (rmail-message-deleted-p current)) | |
2499 (setq lastwin current n (1- n)))) | |
2500 (while (and (< n 0) (> current 1)) | |
2501 (setq current (1- current)) | |
2502 (if (not (rmail-message-deleted-p current)) | |
2503 (setq lastwin current n (1+ n)))) | |
2504 (if (/= lastwin rmail-current-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
|
2505 (progn (rmail-show-message lastwin) |
754b38c0e941
(rmail): Really don't get new mail if file name was given.
Richard M. Stallman <rms@gnu.org>
parents:
4819
diff
changeset
|
2506 t) |
754b38c0e941
(rmail): Really don't get new mail if file name was given.
Richard M. Stallman <rms@gnu.org>
parents:
4819
diff
changeset
|
2507 (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
|
2508 (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
|
2509 (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
|
2510 (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
|
2511 nil))) |
270 | 2512 |
2513 (defun rmail-previous-undeleted-message (n) | |
2514 "Show previous non-deleted message. | |
2515 With prefix argument N, moves backward N non-deleted messages, | |
2516 or forward if N is negative." | |
2517 (interactive "p") | |
2518 (rmail-next-undeleted-message (- n))) | |
2519 | |
2520 (defun rmail-first-message () | |
2521 "Show first message in file." | |
2522 (interactive) | |
2523 (rmail-maybe-set-message-counters) | |
2524 (rmail-show-message 1)) | |
2525 | |
2526 (defun rmail-last-message () | |
2527 "Show last message in file." | |
2528 (interactive) | |
2529 (rmail-maybe-set-message-counters) | |
2530 (rmail-show-message rmail-total-messages)) | |
2531 | |
2532 (defun rmail-what-message () | |
2533 (let ((where (point)) | |
2534 (low 1) | |
2535 (high rmail-total-messages) | |
2536 (mid (/ rmail-total-messages 2))) | |
2537 (while (> (- high low) 1) | |
2538 (if (>= where (rmail-msgbeg mid)) | |
2539 (setq low mid) | |
2540 (setq high mid)) | |
2541 (setq mid (+ low (/ (- high low) 2)))) | |
2542 (if (>= where (rmail-msgbeg high)) high low))) | |
2543 | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2544 (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
|
2545 (save-restriction |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2546 (goto-char (rmail-msgbeg msg)) |
21640
50e05b0adf4a
(rmail-message-regexp-p):
Richard M. Stallman <rms@gnu.org>
parents:
21512
diff
changeset
|
2547 (search-forward "\n*** EOOH ***\n") |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2548 (narrow-to-region (point) (progn (search-forward "\n\n") (point))) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2549 (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
|
2550 (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
|
2551 (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
|
2552 (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
|
2553 |
37494
3da588b28890
(rmail-message-regexp-p): Use rfc822-goto-eoh
Gerd Moellmann <gerd@gnu.org>
parents:
36830
diff
changeset
|
2554 (defun rmail-message-regexp-p (n regexp) |
3da588b28890
(rmail-message-regexp-p): Use rfc822-goto-eoh
Gerd Moellmann <gerd@gnu.org>
parents:
36830
diff
changeset
|
2555 "Return t, if for message number N, regexp REGEXP matches in the header." |
3da588b28890
(rmail-message-regexp-p): Use rfc822-goto-eoh
Gerd Moellmann <gerd@gnu.org>
parents:
36830
diff
changeset
|
2556 (let ((beg (rmail-msgbeg n)) |
3da588b28890
(rmail-message-regexp-p): Use rfc822-goto-eoh
Gerd Moellmann <gerd@gnu.org>
parents:
36830
diff
changeset
|
2557 (end (rmail-msgend n))) |
3da588b28890
(rmail-message-regexp-p): Use rfc822-goto-eoh
Gerd Moellmann <gerd@gnu.org>
parents:
36830
diff
changeset
|
2558 (goto-char beg) |
3da588b28890
(rmail-message-regexp-p): Use rfc822-goto-eoh
Gerd Moellmann <gerd@gnu.org>
parents:
36830
diff
changeset
|
2559 (forward-line 1) |
3da588b28890
(rmail-message-regexp-p): Use rfc822-goto-eoh
Gerd Moellmann <gerd@gnu.org>
parents:
36830
diff
changeset
|
2560 (save-excursion |
3da588b28890
(rmail-message-regexp-p): Use rfc822-goto-eoh
Gerd Moellmann <gerd@gnu.org>
parents:
36830
diff
changeset
|
2561 (save-restriction |
3da588b28890
(rmail-message-regexp-p): Use rfc822-goto-eoh
Gerd Moellmann <gerd@gnu.org>
parents:
36830
diff
changeset
|
2562 (if (prog1 (= (following-char) ?0) |
3da588b28890
(rmail-message-regexp-p): Use rfc822-goto-eoh
Gerd Moellmann <gerd@gnu.org>
parents:
36830
diff
changeset
|
2563 (forward-line 2) |
3da588b28890
(rmail-message-regexp-p): Use rfc822-goto-eoh
Gerd Moellmann <gerd@gnu.org>
parents:
36830
diff
changeset
|
2564 ;; If there's a Summary-line in the (otherwise empty) |
3da588b28890
(rmail-message-regexp-p): Use rfc822-goto-eoh
Gerd Moellmann <gerd@gnu.org>
parents:
36830
diff
changeset
|
2565 ;; header, we didn't yet get past the EOOH line. |
37517
cd2d6781a5f8
(rmail-message-regexp-p): Yet another fix.
Gerd Moellmann <gerd@gnu.org>
parents:
37500
diff
changeset
|
2566 (when (looking-at "^\\*\\*\\* EOOH \\*\\*\\*\n") |
cd2d6781a5f8
(rmail-message-regexp-p): Yet another fix.
Gerd Moellmann <gerd@gnu.org>
parents:
37500
diff
changeset
|
2567 (forward-line 1)) |
37500
797a4ab5dbed
(rmail-message-regexp-p): Don't match before
Gerd Moellmann <gerd@gnu.org>
parents:
37494
diff
changeset
|
2568 (setq beg (point)) |
37494
3da588b28890
(rmail-message-regexp-p): Use rfc822-goto-eoh
Gerd Moellmann <gerd@gnu.org>
parents:
36830
diff
changeset
|
2569 (narrow-to-region (point) end)) |
37517
cd2d6781a5f8
(rmail-message-regexp-p): Yet another fix.
Gerd Moellmann <gerd@gnu.org>
parents:
37500
diff
changeset
|
2570 (progn |
cd2d6781a5f8
(rmail-message-regexp-p): Yet another fix.
Gerd Moellmann <gerd@gnu.org>
parents:
37500
diff
changeset
|
2571 (rfc822-goto-eoh) |
cd2d6781a5f8
(rmail-message-regexp-p): Yet another fix.
Gerd Moellmann <gerd@gnu.org>
parents:
37500
diff
changeset
|
2572 (setq end (point))) |
37500
797a4ab5dbed
(rmail-message-regexp-p): Don't match before
Gerd Moellmann <gerd@gnu.org>
parents:
37494
diff
changeset
|
2573 (setq beg (point)) |
37517
cd2d6781a5f8
(rmail-message-regexp-p): Yet another fix.
Gerd Moellmann <gerd@gnu.org>
parents:
37500
diff
changeset
|
2574 (search-forward "\n*** EOOH ***\n" end t) |
cd2d6781a5f8
(rmail-message-regexp-p): Yet another fix.
Gerd Moellmann <gerd@gnu.org>
parents:
37500
diff
changeset
|
2575 (setq end (1+ (match-beginning 0))))) |
37500
797a4ab5dbed
(rmail-message-regexp-p): Don't match before
Gerd Moellmann <gerd@gnu.org>
parents:
37494
diff
changeset
|
2576 (goto-char beg) |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2577 (if rmail-enable-mime |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2578 (funcall rmail-search-mime-header-function n regexp end) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2579 (re-search-forward regexp end t))))) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2580 |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2581 (defun rmail-search-message (msg regexp) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2582 "Return non-nil, if for message number MSG, regexp REGEXP matches." |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2583 (goto-char (rmail-msgbeg msg)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2584 (if rmail-enable-mime |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2585 (funcall rmail-search-mime-message-function msg regexp) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2586 (re-search-forward regexp (rmail-msgend msg) t))) |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2587 |
270 | 2588 (defvar rmail-search-last-regexp nil) |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2589 (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
|
2590 "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
|
2591 Prefix argument gives repeat count; negative argument means search |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2592 backwards (through earlier messages). |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2593 Interactively, empty argument means use same regexp used last time." |
270 | 2594 (interactive |
2595 (let* ((reversep (< (prefix-numeric-value current-prefix-arg) 0)) | |
2596 (prompt | |
2597 (concat (if reversep "Reverse " "") "Rmail search (regexp): ")) | |
2598 regexp) | |
2599 (if rmail-search-last-regexp | |
2600 (setq prompt (concat prompt | |
2601 "(default " | |
2602 rmail-search-last-regexp | |
2603 ") "))) | |
2604 (setq regexp (read-string prompt)) | |
2605 (cond ((not (equal regexp "")) | |
2606 (setq rmail-search-last-regexp regexp)) | |
2607 ((not rmail-search-last-regexp) | |
2608 (error "No previous Rmail search string"))) | |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2609 (list rmail-search-last-regexp |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2610 (prefix-numeric-value current-prefix-arg)))) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2611 (or n (setq n 1)) |
270 | 2612 (message "%sRmail search for %s..." |
937
0f082d63bfd6
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
874
diff
changeset
|
2613 (if (< n 0) "Reverse " "") |
270 | 2614 regexp) |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2615 (set-buffer rmail-buffer) |
270 | 2616 (rmail-maybe-set-message-counters) |
2617 (let ((omin (point-min)) | |
2618 (omax (point-max)) | |
2619 (opoint (point)) | |
2620 win | |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2621 (reversep (< n 0)) |
270 | 2622 (msg rmail-current-message)) |
2623 (unwind-protect | |
2624 (progn | |
2625 (widen) | |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2626 (while (/= n 0) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2627 ;; 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
|
2628 ;; but searching forward through each message. |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2629 (if reversep |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2630 (while (and (null win) (> msg 1)) |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2631 (setq msg (1- msg) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2632 win (rmail-search-message msg regexp))) |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2633 (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
|
2634 (setq msg (1+ msg) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2635 win (rmail-search-message msg regexp)))) |
937
0f082d63bfd6
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
874
diff
changeset
|
2636 (setq n (+ n (if reversep 1 -1))))) |
270 | 2637 (if win |
2638 (progn | |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2639 (rmail-show-message msg) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2640 ;; 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
|
2641 ;; (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
|
2642 ;; position point. This search may fail because REGEXP |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2643 ;; 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
|
2644 ;; 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
|
2645 ;; portion. |
270 | 2646 (if reversep |
2647 (progn | |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2648 (goto-char (point-max)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2649 (re-search-backward regexp nil 'move)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2650 (goto-char (point-min)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2651 (re-search-forward regexp nil t)) |
270 | 2652 (message "%sRmail search for %s...done" |
2653 (if reversep "Reverse " "") | |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2654 regexp)) |
270 | 2655 (goto-char opoint) |
2656 (narrow-to-region omin omax) | |
2657 (ding) | |
2658 (message "Search failed: %s" regexp))))) | |
2659 | |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2660 (defun rmail-search-backwards (regexp &optional n) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2661 "Show message containing previous match for REGEXP. |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2662 Prefix argument gives repeat count; negative argument means search |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2663 forward (through later messages). |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2664 Interactively, empty argument means use same regexp used last time." |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2665 (interactive |
937
0f082d63bfd6
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
874
diff
changeset
|
2666 (let* ((reversep (>= (prefix-numeric-value current-prefix-arg) 0)) |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2667 (prompt |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2668 (concat (if reversep "Reverse " "") "Rmail search (regexp): ")) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2669 regexp) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2670 (if rmail-search-last-regexp |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2671 (setq prompt (concat prompt |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2672 "(default " |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2673 rmail-search-last-regexp |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2674 ") "))) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2675 (setq regexp (read-string prompt)) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2676 (cond ((not (equal regexp "")) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2677 (setq rmail-search-last-regexp regexp)) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2678 ((not rmail-search-last-regexp) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2679 (error "No previous Rmail search string"))) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2680 (list rmail-search-last-regexp |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2681 (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
|
2682 (rmail-search regexp (- (or n 1)))) |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2683 |
270 | 2684 ;; Show the first message which has the `unseen' attribute. |
2685 (defun rmail-first-unseen-message () | |
1360
9cb1a4b90b5c
Cleaned up rmail-first-unseen-message.
Joseph Arceneaux <jla@gnu.org>
parents:
1342
diff
changeset
|
2686 (rmail-maybe-set-message-counters) |
270 | 2687 (let ((current 1) |
2688 found) | |
2689 (save-restriction | |
2690 (widen) | |
10191
f81679f84f68
(rmail-first-unseen-message): Fix 1-off error.
Richard M. Stallman <rms@gnu.org>
parents:
10187
diff
changeset
|
2691 (while (and (not found) (<= current rmail-total-messages)) |
270 | 2692 (if (rmail-message-labels-p current ", ?\\(unseen\\),") |
346 | 2693 (setq found current)) |
2694 (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
|
2695 ;; Let the caller show the message. |
776d4c59f256
* rmail.el (rmail-first-unseen-message): Don't show the message,
Joseph Arceneaux <jla@gnu.org>
parents:
1267
diff
changeset
|
2696 ;; (if found |
776d4c59f256
* rmail.el (rmail-first-unseen-message): Don't show the message,
Joseph Arceneaux <jla@gnu.org>
parents:
1267
diff
changeset
|
2697 ;; (rmail-show-message found)) |
776d4c59f256
* rmail.el (rmail-first-unseen-message): Don't show the message,
Joseph Arceneaux <jla@gnu.org>
parents:
1267
diff
changeset
|
2698 found)) |
10662
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2699 |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2700 (defun rmail-next-same-subject (n) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2701 "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
|
2702 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
|
2703 If N is negative, go backwards instead." |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2704 (interactive "p") |
15746
d7a83c7ea12a
(rmail-next-same-subject): Don't set search-regexp
Karl Heuer <kwzh@gnu.org>
parents:
15549
diff
changeset
|
2705 (let ((subject (mail-fetch-field "Subject")) |
d7a83c7ea12a
(rmail-next-same-subject): Don't set search-regexp
Karl Heuer <kwzh@gnu.org>
parents:
15549
diff
changeset
|
2706 (forward (> n 0)) |
d7a83c7ea12a
(rmail-next-same-subject): Don't set search-regexp
Karl Heuer <kwzh@gnu.org>
parents:
15549
diff
changeset
|
2707 (i rmail-current-message) |
17065
01cba1834368
(rmail-next-same-subject, rmail-reply): Ignore case, to
Karl Heuer <kwzh@gnu.org>
parents:
17011
diff
changeset
|
2708 (case-fold-search t) |
15746
d7a83c7ea12a
(rmail-next-same-subject): Don't set search-regexp
Karl Heuer <kwzh@gnu.org>
parents:
15549
diff
changeset
|
2709 search-regexp found) |
21100
79e564f91938
(rmail-next-same-subject): Ignore leading and
Richard M. Stallman <rms@gnu.org>
parents:
20984
diff
changeset
|
2710 (if (string-match "\\`[ \t]+" subject) |
79e564f91938
(rmail-next-same-subject): Ignore leading and
Richard M. Stallman <rms@gnu.org>
parents:
20984
diff
changeset
|
2711 (setq subject (substring subject (match-end 0)))) |
15746
d7a83c7ea12a
(rmail-next-same-subject): Don't set search-regexp
Karl Heuer <kwzh@gnu.org>
parents:
15549
diff
changeset
|
2712 (if (string-match "Re:[ \t]*" subject) |
d7a83c7ea12a
(rmail-next-same-subject): Don't set search-regexp
Karl Heuer <kwzh@gnu.org>
parents:
15549
diff
changeset
|
2713 (setq subject (substring subject (match-end 0)))) |
21100
79e564f91938
(rmail-next-same-subject): Ignore leading and
Richard M. Stallman <rms@gnu.org>
parents:
20984
diff
changeset
|
2714 (if (string-match "[ \t]+\\'" subject) |
79e564f91938
(rmail-next-same-subject): Ignore leading and
Richard M. Stallman <rms@gnu.org>
parents:
20984
diff
changeset
|
2715 (setq subject (substring subject 0 (match-beginning 0)))) |
24634
49bd935ccb48
(rmail-next-same-subject): When searching, ignore
Karl Heuer <kwzh@gnu.org>
parents:
24584
diff
changeset
|
2716 (setq search-regexp (concat "^Subject: *\\(Re:[ \t]*\\)?" |
10662
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2717 (regexp-quote subject) |
24634
49bd935ccb48
(rmail-next-same-subject): When searching, ignore
Karl Heuer <kwzh@gnu.org>
parents:
24584
diff
changeset
|
2718 "[ \t]*\n")) |
10662
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2719 (save-excursion |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2720 (save-restriction |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2721 (widen) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2722 (while (and (/= n 0) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2723 (if forward |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2724 (< i rmail-total-messages) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2725 (> i 1))) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2726 (let (done) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2727 (while (and (not done) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2728 (if forward |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2729 (< i rmail-total-messages) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2730 (> i 1))) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2731 (setq i (if forward (1+ i) (1- i))) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2732 (goto-char (rmail-msgbeg i)) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2733 (search-forward "\n*** EOOH ***\n") |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2734 (let ((beg (point)) end) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2735 (search-forward "\n\n") |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2736 (setq end (point)) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2737 (goto-char beg) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2738 (setq done (re-search-forward search-regexp end t)))) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2739 (if done (setq found i))) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2740 (setq n (if forward (1- n) (1+ n)))))) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2741 (if found |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2742 (rmail-show-message found) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2743 (error "No %s message with same subject" |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2744 (if forward "following" "previous"))))) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2745 |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2746 (defun rmail-previous-same-subject (n) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2747 "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
|
2748 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
|
2749 If N is negative, go forwards instead." |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2750 (interactive "p") |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
2751 (rmail-next-same-subject (- n))) |
270 | 2752 |
2753 ;;;; *** Rmail Message Deletion Commands *** | |
2754 | |
2755 (defun rmail-message-deleted-p (n) | |
2756 (= (aref rmail-deleted-vector n) ?D)) | |
2757 | |
2758 (defun rmail-set-message-deleted-p (n state) | |
2759 (aset rmail-deleted-vector n (if state ?D ?\ ))) | |
2760 | |
2761 (defun rmail-delete-message () | |
2762 "Delete this message and stay on it." | |
2763 (interactive) | |
13477
5c500f39271c
(rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
13302
diff
changeset
|
2764 (rmail-set-attribute "deleted" t) |
5c500f39271c
(rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
13302
diff
changeset
|
2765 (run-hooks 'rmail-delete-message-hook)) |
270 | 2766 |
2767 (defun rmail-undelete-previous-message () | |
2768 "Back up to deleted message, select it, and undelete it." | |
2769 (interactive) | |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2770 (set-buffer rmail-buffer) |
270 | 2771 (let ((msg rmail-current-message)) |
2772 (while (and (> msg 0) | |
2773 (not (rmail-message-deleted-p msg))) | |
2774 (setq msg (1- msg))) | |
2775 (if (= msg 0) | |
2776 (error "No previous deleted message") | |
2777 (if (/= msg rmail-current-message) | |
2778 (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
|
2779 (rmail-set-attribute "deleted" nil) |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2780 (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
|
2781 (save-excursion |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2782 (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
|
2783 (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
|
2784 (rmail-maybe-display-summary)))) |
270 | 2785 |
2786 (defun rmail-delete-forward (&optional backward) | |
2787 "Delete this message and move to next nondeleted one. | |
2788 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
|
2789 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
|
2790 |
754b38c0e941
(rmail): Really don't get new mail if file name was given.
Richard M. Stallman <rms@gnu.org>
parents:
4819
diff
changeset
|
2791 Returns t if a new message is displayed after the delete, or nil otherwise." |
270 | 2792 (interactive "P") |
2793 (rmail-set-attribute "deleted" t) | |
13477
5c500f39271c
(rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
13302
diff
changeset
|
2794 (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
|
2795 (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
|
2796 (if (rmail-summary-exists) |
9394
802381617d14
(rmail-delete-forward): Use rmail-select-summary.
Richard M. Stallman <rms@gnu.org>
parents:
9380
diff
changeset
|
2797 (rmail-select-summary |
802381617d14
(rmail-delete-forward): Use rmail-select-summary.
Richard M. Stallman <rms@gnu.org>
parents:
9380
diff
changeset
|
2798 (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
|
2799 (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
|
2800 (rmail-maybe-display-summary)))) |
270 | 2801 |
2802 (defun rmail-delete-backward () | |
2803 "Delete this message and move to previous nondeleted one. | |
2804 Deleted messages stay in the file until the \\[rmail-expunge] command is given." | |
2805 (interactive) | |
2806 (rmail-delete-forward t)) | |
2807 | |
9153
029821174e53
(rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents:
9083
diff
changeset
|
2808 ;; Compute the message number a given message would have after expunging. |
029821174e53
(rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents:
9083
diff
changeset
|
2809 ;; The present number of the message is OLDNUM. |
029821174e53
(rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents:
9083
diff
changeset
|
2810 ;; DELETEDVEC should be rmail-deleted-vector. |
029821174e53
(rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents:
9083
diff
changeset
|
2811 ;; The value is nil for a message that would be deleted. |
029821174e53
(rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents:
9083
diff
changeset
|
2812 (defun rmail-msg-number-after-expunge (deletedvec oldnum) |
029821174e53
(rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents:
9083
diff
changeset
|
2813 (if (or (null oldnum) (= (aref deletedvec oldnum) ?D)) |
029821174e53
(rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents:
9083
diff
changeset
|
2814 nil |
029821174e53
(rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents:
9083
diff
changeset
|
2815 (let ((i 0) |
029821174e53
(rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents:
9083
diff
changeset
|
2816 (newnum 0)) |
029821174e53
(rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents:
9083
diff
changeset
|
2817 (while (< i oldnum) |
029821174e53
(rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents:
9083
diff
changeset
|
2818 (if (/= (aref deletedvec i) ?D) |
029821174e53
(rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents:
9083
diff
changeset
|
2819 (setq newnum (1+ newnum))) |
029821174e53
(rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents:
9083
diff
changeset
|
2820 (setq i (1+ i))) |
029821174e53
(rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents:
9083
diff
changeset
|
2821 newnum))) |
029821174e53
(rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents:
9083
diff
changeset
|
2822 |
34185
f43d562a5b65
(rmail-expunge-confirmed): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34055
diff
changeset
|
2823 (defun rmail-expunge-confirmed () |
f43d562a5b65
(rmail-expunge-confirmed): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34055
diff
changeset
|
2824 "Return t if deleted message should be expunged. If necessary, ask the user. |
f43d562a5b65
(rmail-expunge-confirmed): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34055
diff
changeset
|
2825 See also user-option `rmail-confirm-expunge'." |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2826 (set-buffer rmail-buffer) |
34185
f43d562a5b65
(rmail-expunge-confirmed): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34055
diff
changeset
|
2827 (or (not (stringp rmail-deleted-vector)) |
f43d562a5b65
(rmail-expunge-confirmed): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34055
diff
changeset
|
2828 (not (string-match "D" rmail-deleted-vector)) |
f43d562a5b65
(rmail-expunge-confirmed): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34055
diff
changeset
|
2829 (null rmail-confirm-expunge) |
f43d562a5b65
(rmail-expunge-confirmed): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34055
diff
changeset
|
2830 (funcall rmail-confirm-expunge |
f43d562a5b65
(rmail-expunge-confirmed): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34055
diff
changeset
|
2831 "Erase deleted messages from Rmail file? "))) |
f43d562a5b65
(rmail-expunge-confirmed): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34055
diff
changeset
|
2832 |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2833 (defun rmail-only-expunge () |
270 | 2834 "Actually erase all deleted messages in the file." |
2835 (interactive) | |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2836 (set-buffer rmail-buffer) |
270 | 2837 (message "Expunging deleted messages...") |
2838 ;; Discard all undo records for this buffer. | |
2839 (or (eq buffer-undo-list t) | |
2840 (setq buffer-undo-list nil)) | |
2841 (rmail-maybe-set-message-counters) | |
2842 (let* ((omax (- (buffer-size) (point-max))) | |
2843 (omin (- (buffer-size) (point-min))) | |
2844 (opoint (if (and (> rmail-current-message 0) | |
7037 | 2845 (rmail-message-deleted-p rmail-current-message)) |
2846 0 | |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2847 (if rmail-enable-mime |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2848 (with-current-buffer rmail-view-buffer |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2849 (- (point)(point-min))) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2850 (- (point) (point-min))))) |
270 | 2851 (messages-head (cons (aref rmail-message-vector 0) nil)) |
2852 (messages-tail messages-head) | |
2853 ;; Don't make any undo records for the expunging. | |
2854 (buffer-undo-list t) | |
2855 (win)) | |
2856 (unwind-protect | |
2857 (save-excursion | |
2858 (widen) | |
2859 (goto-char (point-min)) | |
2860 (let ((counter 0) | |
2861 (number 1) | |
2862 (total rmail-total-messages) | |
2863 (new-message-number rmail-current-message) | |
2864 (new-summary nil) | |
17620
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
2865 (new-msgref (list (list 0))) |
9153
029821174e53
(rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents:
9083
diff
changeset
|
2866 (rmailbuf (current-buffer)) |
270 | 2867 (buffer-read-only nil) |
2868 (messages rmail-message-vector) | |
2869 (deleted rmail-deleted-vector) | |
2870 (summary rmail-summary-vector)) | |
2871 (setq rmail-total-messages nil | |
2872 rmail-current-message nil | |
2873 rmail-message-vector nil | |
2874 rmail-deleted-vector nil | |
2875 rmail-summary-vector nil) | |
9153
029821174e53
(rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents:
9083
diff
changeset
|
2876 |
270 | 2877 (while (<= number total) |
2878 (if (= (aref deleted number) ?D) | |
2879 (progn | |
2880 (delete-region | |
2881 (marker-position (aref messages number)) | |
2882 (marker-position (aref messages (1+ number)))) | |
2883 (move-marker (aref messages number) nil) | |
2884 (if (> new-message-number counter) | |
2885 (setq new-message-number (1- new-message-number)))) | |
2886 (setq counter (1+ counter)) | |
2887 (setq messages-tail | |
2888 (setcdr messages-tail | |
2889 (cons (aref messages number) nil))) | |
2890 (setq new-summary | |
2891 (cons (if (= counter number) (aref summary (1- number))) | |
17620
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
2892 new-summary)) |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
2893 (setq new-msgref |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
2894 (cons (aref rmail-msgref-vector number) |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
2895 new-msgref)) |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
2896 (setcar (car new-msgref) counter)) |
270 | 2897 (if (zerop (% (setq number (1+ number)) 20)) |
2898 (message "Expunging deleted messages...%d" number))) | |
2899 (setq messages-tail | |
2900 (setcdr messages-tail | |
2901 (cons (aref messages number) nil))) | |
2902 (setq rmail-current-message new-message-number | |
2903 rmail-total-messages counter | |
2904 rmail-message-vector (apply 'vector messages-head) | |
2905 rmail-deleted-vector (make-string (1+ counter) ?\ ) | |
2906 rmail-summary-vector (vconcat (nreverse new-summary)) | |
17620
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
2907 rmail-msgref-vector (apply 'vector (nreverse new-msgref)) |
270 | 2908 win t))) |
2909 (message "Expunging deleted messages...done") | |
2910 (if (not win) | |
2911 (narrow-to-region (- (buffer-size) omin) (- (buffer-size) omax))) | |
2912 (rmail-show-message | |
2913 (if (zerop rmail-current-message) 1 nil)) | |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2914 (if rmail-enable-mime |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2915 (goto-char (+ (point-min) opoint)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2916 (goto-char (+ (point) opoint)))))) |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2917 |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2918 (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
|
2919 "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
|
2920 (interactive) |
34185
f43d562a5b65
(rmail-expunge-confirmed): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34055
diff
changeset
|
2921 (when (rmail-expunge-confirmed) |
28290
4aafdd90bf08
(rmail-confirm-expunge): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
27944
diff
changeset
|
2922 (rmail-only-expunge) |
4aafdd90bf08
(rmail-confirm-expunge): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
27944
diff
changeset
|
2923 (if (rmail-summary-exists) |
34185
f43d562a5b65
(rmail-expunge-confirmed): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34055
diff
changeset
|
2924 (rmail-select-summary (rmail-update-summary))))) |
270 | 2925 |
2926 ;;;; *** Rmail Mailing Commands *** | |
2927 | |
16633
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
2928 (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
|
2929 replybuffer sendactions same-window others) |
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
2930 (let (yank-action) |
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
2931 (if replybuffer |
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
2932 (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
|
2933 (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
|
2934 (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
|
2935 (if same-window |
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
2936 (compose-mail to subject others |
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
2937 noerase nil |
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
2938 yank-action sendactions) |
30544
e9b3bce9cb4b
(rmail-start-mail): Use display-multi-frame-p
Eli Zaretskii <eliz@gnu.org>
parents:
30112
diff
changeset
|
2939 (if (and (display-multi-frame-p) rmail-mail-new-frame) |
16633
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
2940 (prog1 |
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
2941 (compose-mail to subject others |
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
2942 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
|
2943 yank-action sendactions) |
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
2944 ;; 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
|
2945 ;; 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
|
2946 (modify-frame-parameters (selected-frame) |
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
2947 '((mail-dedicated-frame . t)))) |
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
2948 (compose-mail to subject others |
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
2949 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
|
2950 yank-action sendactions))))) |
4108
e4fbcd480455
(rmail-mail-new-frame): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4071
diff
changeset
|
2951 |
270 | 2952 (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
|
2953 "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
|
2954 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
|
2955 original message into it." |
270 | 2956 (interactive) |
17093
f8584d52dd48
(rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents:
17065
diff
changeset
|
2957 (rmail-start-mail nil nil nil nil nil rmail-view-buffer)) |
270 | 2958 |
2959 (defun rmail-continue () | |
2960 "Continue composing outgoing message previously being composed." | |
2961 (interactive) | |
4108
e4fbcd480455
(rmail-mail-new-frame): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4071
diff
changeset
|
2962 (rmail-start-mail t)) |
270 | 2963 |
2964 (defun rmail-reply (just-sender) | |
2965 "Reply to the current message. | |
2966 Normally include CC: to all other recipients of original message; | |
2967 prefix argument means ignore them. While composing the reply, | |
2968 use \\[mail-yank-original] to yank the original message into it." | |
2969 (interactive "P") | |
16953
46b39d9f3ad0
(rmail-reply): Copy all the References: headers
Richard M. Stallman <rms@gnu.org>
parents:
16928
diff
changeset
|
2970 (let (from reply-to cc subject date to message-id references |
16467
446f51ea7cb8
(rmail-reply): Merge resent-to and resent-cc into to and cc.
Richard M. Stallman <rms@gnu.org>
parents:
16452
diff
changeset
|
2971 resent-to resent-cc resent-reply-to |
17093
f8584d52dd48
(rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents:
17065
diff
changeset
|
2972 (msgnum rmail-current-message)) |
270 | 2973 (save-excursion |
2974 (save-restriction | |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2975 ;; If rmail-enable-mime is non-nil, we are in a |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2976 ;; rmail-view-buffer which doesn't contain any lines specific |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2977 ;; to BABYL format (e.g. "*** EOOH ***"). Thus, there's no |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2978 ;; need of narrowing in such a case. |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2979 (unless rmail-enable-mime |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2980 (widen) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2981 (goto-char (rmail-msgbeg rmail-current-message)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2982 (forward-line 1) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2983 (if (= (following-char) ?0) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2984 (narrow-to-region |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2985 (progn (forward-line 2) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2986 (point)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2987 (progn (search-forward "\n\n" (rmail-msgend rmail-current-message) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2988 'move) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2989 (point))) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2990 (narrow-to-region (point) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2991 (progn (search-forward "\n*** EOOH ***\n") |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2992 (beginning-of-line) (point))))) |
16467
446f51ea7cb8
(rmail-reply): Merge resent-to and resent-cc into to and cc.
Richard M. Stallman <rms@gnu.org>
parents:
16452
diff
changeset
|
2993 (setq from (mail-fetch-field "from") |
446f51ea7cb8
(rmail-reply): Merge resent-to and resent-cc into to and cc.
Richard M. Stallman <rms@gnu.org>
parents:
16452
diff
changeset
|
2994 reply-to (or (mail-fetch-field "reply-to" nil t) |
270 | 2995 from) |
16467
446f51ea7cb8
(rmail-reply): Merge resent-to and resent-cc into to and cc.
Richard M. Stallman <rms@gnu.org>
parents:
16452
diff
changeset
|
2996 cc (and (not just-sender) |
446f51ea7cb8
(rmail-reply): Merge resent-to and resent-cc into to and cc.
Richard M. Stallman <rms@gnu.org>
parents:
16452
diff
changeset
|
2997 (mail-fetch-field "cc" nil t)) |
446f51ea7cb8
(rmail-reply): Merge resent-to and resent-cc into to and cc.
Richard M. Stallman <rms@gnu.org>
parents:
16452
diff
changeset
|
2998 subject (mail-fetch-field "subject") |
446f51ea7cb8
(rmail-reply): Merge resent-to and resent-cc into to and cc.
Richard M. Stallman <rms@gnu.org>
parents:
16452
diff
changeset
|
2999 date (mail-fetch-field "date") |
446f51ea7cb8
(rmail-reply): Merge resent-to and resent-cc into to and cc.
Richard M. Stallman <rms@gnu.org>
parents:
16452
diff
changeset
|
3000 to (or (mail-fetch-field "to" nil t) "") |
446f51ea7cb8
(rmail-reply): Merge resent-to and resent-cc into to and cc.
Richard M. Stallman <rms@gnu.org>
parents:
16452
diff
changeset
|
3001 message-id (mail-fetch-field "message-id") |
16953
46b39d9f3ad0
(rmail-reply): Copy all the References: headers
Richard M. Stallman <rms@gnu.org>
parents:
16928
diff
changeset
|
3002 references (mail-fetch-field "references" nil nil t) |
46b39d9f3ad0
(rmail-reply): Copy all the References: headers
Richard M. Stallman <rms@gnu.org>
parents:
16928
diff
changeset
|
3003 resent-reply-to (mail-fetch-field "resent-reply-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
|
3004 resent-cc (and (not just-sender) |
446f51ea7cb8
(rmail-reply): Merge resent-to and resent-cc into to and cc.
Richard M. Stallman <rms@gnu.org>
parents:
16452
diff
changeset
|
3005 (mail-fetch-field "resent-cc" nil t)) |
446f51ea7cb8
(rmail-reply): Merge resent-to and resent-cc into to and cc.
Richard M. Stallman <rms@gnu.org>
parents:
16452
diff
changeset
|
3006 resent-to (or (mail-fetch-field "resent-to" nil t) "") |
446f51ea7cb8
(rmail-reply): Merge resent-to and resent-cc into to and cc.
Richard M. Stallman <rms@gnu.org>
parents:
16452
diff
changeset
|
3007 ;;; 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
|
3008 ;;; 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
|
3009 ;;; resent-message-id (mail-fetch-field "resent-message-id") |
446f51ea7cb8
(rmail-reply): Merge resent-to and resent-cc into to and cc.
Richard M. Stallman <rms@gnu.org>
parents:
16452
diff
changeset
|
3010 ))) |
446f51ea7cb8
(rmail-reply): Merge resent-to and resent-cc into to and cc.
Richard M. Stallman <rms@gnu.org>
parents:
16452
diff
changeset
|
3011 ;; Merge the resent-to and resent-cc into the to and cc. |
446f51ea7cb8
(rmail-reply): Merge resent-to and resent-cc into to and cc.
Richard M. Stallman <rms@gnu.org>
parents:
16452
diff
changeset
|
3012 (if (and resent-to (not (equal resent-to ""))) |
446f51ea7cb8
(rmail-reply): Merge resent-to and resent-cc into to and cc.
Richard M. Stallman <rms@gnu.org>
parents:
16452
diff
changeset
|
3013 (if (not (equal to "")) |
446f51ea7cb8
(rmail-reply): Merge resent-to and resent-cc into to and cc.
Richard M. Stallman <rms@gnu.org>
parents:
16452
diff
changeset
|
3014 (setq to (concat to ", " resent-to)) |
446f51ea7cb8
(rmail-reply): Merge resent-to and resent-cc into to and cc.
Richard M. Stallman <rms@gnu.org>
parents:
16452
diff
changeset
|
3015 (setq to resent-to))) |
446f51ea7cb8
(rmail-reply): Merge resent-to and resent-cc into to and cc.
Richard M. Stallman <rms@gnu.org>
parents:
16452
diff
changeset
|
3016 (if (and resent-cc (not (equal resent-cc ""))) |
446f51ea7cb8
(rmail-reply): Merge resent-to and resent-cc into to and cc.
Richard M. Stallman <rms@gnu.org>
parents:
16452
diff
changeset
|
3017 (if (not (equal cc "")) |
446f51ea7cb8
(rmail-reply): Merge resent-to and resent-cc into to and cc.
Richard M. Stallman <rms@gnu.org>
parents:
16452
diff
changeset
|
3018 (setq cc (concat cc ", " resent-cc)) |
446f51ea7cb8
(rmail-reply): Merge resent-to and resent-cc into to and cc.
Richard M. Stallman <rms@gnu.org>
parents:
16452
diff
changeset
|
3019 (setq cc resent-cc))) |
446f51ea7cb8
(rmail-reply): Merge resent-to and resent-cc into to and cc.
Richard M. Stallman <rms@gnu.org>
parents:
16452
diff
changeset
|
3020 ;; Add `Re: ' to subject if not there already. |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
3021 (and (stringp subject) |
10640 | 3022 (setq subject |
3023 (concat rmail-reply-prefix | |
17065
01cba1834368
(rmail-next-same-subject, rmail-reply): Ignore case, to
Karl Heuer <kwzh@gnu.org>
parents:
17011
diff
changeset
|
3024 (if (let ((case-fold-search t)) |
01cba1834368
(rmail-next-same-subject, rmail-reply): Ignore case, to
Karl Heuer <kwzh@gnu.org>
parents:
17011
diff
changeset
|
3025 (string-match rmail-reply-regexp subject)) |
10640 | 3026 (substring subject (match-end 0)) |
3027 subject)))) | |
18091
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3028 (rmail-start-mail |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3029 nil |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3030 ;; Using mail-strip-quoted-names is undesirable with newer mailers |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3031 ;; since they can handle the names unstripped. |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3032 ;; I don't know whether there are other mailers that still |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3033 ;; need the names to be stripped. |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3034 (mail-strip-quoted-names reply-to) |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3035 subject |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3036 (rmail-make-in-reply-to-field from date message-id) |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3037 (if just-sender |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3038 nil |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3039 ;; mail-strip-quoted-names is NOT necessary for rmail-dont-reply-to |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3040 ;; to do its job. |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3041 (let* ((cc-list (rmail-dont-reply-to |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3042 (mail-strip-quoted-names |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3043 (if (null cc) to (concat to ", " cc)))))) |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3044 (if (string= cc-list "") nil cc-list))) |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3045 rmail-view-buffer |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3046 (list (list 'rmail-mark-message |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3047 rmail-buffer |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3048 (with-current-buffer rmail-buffer |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3049 (aref rmail-msgref-vector msgnum)) |
18091
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3050 "answered")) |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3051 nil |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3052 (list (cons "References" (concat (mapconcat 'identity references " ") |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3053 " " message-id)))))) |
17565
09d1f6578d7f
(rmail-reply): Pass Rmail buffer and msgnum
Richard M. Stallman <rms@gnu.org>
parents:
17306
diff
changeset
|
3054 |
17620
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
3055 (defun rmail-mark-message (buffer msgnum-list attribute) |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
3056 "Give BUFFER's message number in MSGNUM-LIST the attribute ATTRIBUTE. |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
3057 This is use in the send-actions for message buffers. |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
3058 MSGNUM-LIST is a list of the form (MSGNUM) |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
3059 which is an element of rmail-msgref-vector." |
17565
09d1f6578d7f
(rmail-reply): Pass Rmail buffer and msgnum
Richard M. Stallman <rms@gnu.org>
parents:
17306
diff
changeset
|
3060 (save-excursion |
09d1f6578d7f
(rmail-reply): Pass Rmail buffer and msgnum
Richard M. Stallman <rms@gnu.org>
parents:
17306
diff
changeset
|
3061 (set-buffer buffer) |
17620
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
3062 (if (car msgnum-list) |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
3063 (rmail-set-attribute attribute t (car msgnum-list))))) |
270 | 3064 |
3065 (defun rmail-make-in-reply-to-field (from date message-id) | |
3066 (cond ((not from) | |
3067 (if message-id | |
3068 message-id | |
3069 nil)) | |
3070 (mail-use-rfc822 | |
3071 (require 'rfc822) | |
3072 (let ((tem (car (rfc822-addresses from)))) | |
3073 (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
|
3074 (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
|
3075 (string-match |
f842aabf9735
(rmail-make-in-reply-to-field): Don't cause an
Richard M. Stallman <rms@gnu.org>
parents:
19031
diff
changeset
|
3076 (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
|
3077 (substring tem 0 |
f842aabf9735
(rmail-make-in-reply-to-field): Don't cause an
Richard M. Stallman <rms@gnu.org>
parents:
19031
diff
changeset
|
3078 (match-beginning 0)) |
f842aabf9735
(rmail-make-in-reply-to-field): Don't cause an
Richard M. Stallman <rms@gnu.org>
parents:
19031
diff
changeset
|
3079 tem)) |
f842aabf9735
(rmail-make-in-reply-to-field): Don't cause an
Richard M. Stallman <rms@gnu.org>
parents:
19031
diff
changeset
|
3080 message-id)) |
f842aabf9735
(rmail-make-in-reply-to-field): Don't cause an
Richard M. Stallman <rms@gnu.org>
parents:
19031
diff
changeset
|
3081 ;; missing From, or Message-ID is sufficiently informative |
270 | 3082 message-id |
3083 (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
|
3084 ;; 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
|
3085 (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
|
3086 (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
|
3087 (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
|
3088 ;; 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
|
3089 (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
|
3090 (if date |
bb9b20ea092d
(rmail-make-in-reply-to-field): Discard text properties from
Richard M. Stallman <rms@gnu.org>
parents:
5611
diff
changeset
|
3091 (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
|
3092 field))))) |
20681
4a46ac370fc8
(rmail): Don't bind enable-multibyte-characters;
Richard M. Stallman <rms@gnu.org>
parents:
20662
diff
changeset
|
3093 ((let* ((foo "[^][\000-\037()<>@,;:\\\" ]+") |
4a46ac370fc8
(rmail): Don't bind enable-multibyte-characters;
Richard M. Stallman <rms@gnu.org>
parents:
20662
diff
changeset
|
3094 (bar "[^][\000-\037()<>@,;:\\\"]+")) |
4a46ac370fc8
(rmail): Don't bind enable-multibyte-characters;
Richard M. Stallman <rms@gnu.org>
parents:
20662
diff
changeset
|
3095 ;; These strings both match all non-ASCII characters. |
270 | 3096 (or (string-match (concat "\\`[ \t]*\\(" bar |
3097 "\\)\\(<" foo "@" foo ">\\)?[ \t]*\\'") | |
3098 ;; "Unix Loser <Foo@bar.edu>" => "Unix Loser" | |
3099 from) | |
3100 (string-match (concat "\\`[ \t]*<" foo "@" foo ">[ \t]*(\\(" | |
3101 bar "\\))[ \t]*\\'") | |
3102 ;; "<Bugs@bar.edu>" (Losing Unix) => "Losing Unix" | |
3103 from))) | |
3104 (let ((start (match-beginning 1)) | |
3105 (end (match-end 1))) | |
3106 ;; Trim whitespace which above regexp match allows | |
3107 (while (and (< start end) | |
3108 (memq (aref from start) '(?\t ?\ ))) | |
3109 (setq start (1+ start))) | |
3110 (while (and (< start end) | |
3111 (memq (aref from (1- end)) '(?\t ?\ ))) | |
3112 (setq end (1- end))) | |
3113 (let ((field (substring from start end))) | |
3114 (if date (setq field (concat "message from " field " on " date))) | |
3115 (if message-id | |
3116 ;; "<AA259@bar.edu> (message from Unix Loser on 1-Apr-89)" | |
3117 (concat message-id " (" field ")") | |
3118 field)))) | |
3119 (t | |
3120 ;; If we can't kludge it simply, do it correctly | |
3121 (let ((mail-use-rfc822 t)) | |
3122 (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
|
3123 |
2687
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
3124 (defun rmail-forward (resend) |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
3125 "Forward the current message to another user. |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
3126 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
|
3127 see the documentation of `rmail-resend'." |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
3128 (interactive "P") |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
3129 (if resend |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
3130 (call-interactively 'rmail-resend) |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3131 (let ((forward-buffer rmail-buffer) |
9153
029821174e53
(rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents:
9083
diff
changeset
|
3132 (msgnum rmail-current-message) |
2687
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
3133 (subject (concat "[" |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
3134 (let ((from (or (mail-fetch-field "From") |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
3135 (mail-fetch-field ">From")))) |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
3136 (if from |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
3137 (concat (mail-strip-quoted-names from) ": ") |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
3138 "")) |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
3139 (or (mail-fetch-field "Subject") "") |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
3140 "]"))) |
16633
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
3141 (if (rmail-start-mail |
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
3142 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
|
3143 (list (list 'rmail-mark-message |
17620
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
3144 forward-buffer |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3145 (with-current-buffer rmail-buffer |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3146 (aref rmail-msgref-vector msgnum)) |
17565
09d1f6578d7f
(rmail-reply): Pass Rmail buffer and msgnum
Richard M. Stallman <rms@gnu.org>
parents:
17306
diff
changeset
|
3147 "forwarded")) |
16633
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
3148 ;; 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
|
3149 ;; 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
|
3150 ;; 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
|
3151 ;; 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
|
3152 (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
|
3153 ;; 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
|
3154 (save-excursion |
4724
04714985ce20
(rmail-forward): Insert the text right after the header separator.
Richard M. Stallman <rms@gnu.org>
parents:
4698
diff
changeset
|
3155 ;; 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
|
3156 (goto-char (mail-text-start)) |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3157 (if rmail-enable-mime |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3158 (funcall rmail-insert-mime-forwarded-message-function |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3159 forward-buffer) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3160 (insert "------- Start of forwarded message -------\n") |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3161 ;; Quote lines with `- ' if they start with `-'. |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3162 (let ((beg (point)) end) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3163 (setq end (point-marker)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3164 (set-marker-insertion-type end t) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3165 (insert-buffer-substring forward-buffer) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3166 (goto-char beg) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3167 (while (re-search-forward "^-" end t) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3168 (beginning-of-line) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3169 (insert "- ") |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3170 (forward-line 1)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3171 (goto-char end) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3172 (skip-chars-backward "\n") |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3173 (if (< (point) end) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3174 (forward-char 1)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3175 (delete-region (point) end) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3176 (set-marker end nil)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3177 (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
|
3178 (push-mark)))))) |
10970
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
3179 |
270 | 3180 (defun rmail-resend (address &optional from comment mail-alias-file) |
3181 "Resend current message to ADDRESSES. | |
5274
89b71a85be3e
(rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents:
5192
diff
changeset
|
3182 ADDRESSES should be a single address, a string consisting of several |
270 | 3183 addresses separated by commas, or a list of addresses. |
3184 | |
3185 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
|
3186 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
|
3187 Optional COMMENT is a string to insert as a comment in the resent message. |
270 | 3188 Optional ALIAS-FILE is alternate aliases file to be used by sendmail, |
3189 typically for purposes of moderating a list." | |
3190 (interactive "sResend to: ") | |
3484
bd26679f0db5
(rmail-resend): Require sendmail and mailalias.
Richard M. Stallman <rms@gnu.org>
parents:
3462
diff
changeset
|
3191 (require 'sendmail) |
bd26679f0db5
(rmail-resend): Require sendmail and mailalias.
Richard M. Stallman <rms@gnu.org>
parents:
3462
diff
changeset
|
3192 (require 'mailalias) |
27871
210900dff9a5
(rmail-resend): Verify buffer is really Rmail.
Gerd Moellmann <gerd@gnu.org>
parents:
27643
diff
changeset
|
3193 (unless (eq rmail-buffer (current-buffer)) |
210900dff9a5
(rmail-resend): Verify buffer is really Rmail.
Gerd Moellmann <gerd@gnu.org>
parents:
27643
diff
changeset
|
3194 (error "Not an Rmail buffer")) |
19031
369a8580b08e
(rmail-resend): Use user-mail-address.
Richard M. Stallman <rms@gnu.org>
parents:
18990
diff
changeset
|
3195 (if (not from) (setq from user-mail-address)) |
270 | 3196 (let ((tembuf (generate-new-buffer " sendmail temp")) |
3197 (case-fold-search nil) | |
23298
116f19dd86dc
(rmail-resend): Work properly if invoked from summary.
Karl Heuer <kwzh@gnu.org>
parents:
23293
diff
changeset
|
3198 (mailbuf rmail-buffer)) |
270 | 3199 (unwind-protect |
23298
116f19dd86dc
(rmail-resend): Work properly if invoked from summary.
Karl Heuer <kwzh@gnu.org>
parents:
23293
diff
changeset
|
3200 (with-current-buffer tembuf |
270 | 3201 ;;>> Copy message into temp buffer |
3202 (insert-buffer-substring mailbuf) | |
3203 (goto-char (point-min)) | |
14033
d146539da475
(rmail-retry-failure): Bind inhibit-read-only.
Richard M. Stallman <rms@gnu.org>
parents:
13834
diff
changeset
|
3204 ;; 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
|
3205 ; 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
|
3206 (re-search-forward "^$" nil 'move) |
89b71a85be3e
(rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents:
5192
diff
changeset
|
3207 ; 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
|
3208 ; software may have inserted multiple Sender fields. |
89b71a85be3e
(rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents:
5192
diff
changeset
|
3209 (while (re-search-backward "^Sender:" nil t) |
89b71a85be3e
(rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents:
5192
diff
changeset
|
3210 (let (beg) |
89b71a85be3e
(rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents:
5192
diff
changeset
|
3211 (setq beg (point)) |
89b71a85be3e
(rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents:
5192
diff
changeset
|
3212 (forward-line 1) |
89b71a85be3e
(rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents:
5192
diff
changeset
|
3213 (while (looking-at "[ \t]") |
89b71a85be3e
(rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents:
5192
diff
changeset
|
3214 (forward-line 1)) |
89b71a85be3e
(rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents:
5192
diff
changeset
|
3215 (delete-region beg (point)))) |
89b71a85be3e
(rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents:
5192
diff
changeset
|
3216 ; 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
|
3217 ; are inserted there. |
89b71a85be3e
(rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents:
5192
diff
changeset
|
3218 (goto-char (point-min)) |
270 | 3219 ;;>> Insert resent-from: |
3220 (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
|
3221 (insert "Resent-Date: " (mail-rfc822-date) "\n") |
270 | 3222 ;;>> Insert resent-to: and bcc if need be. |
3223 (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
|
3224 (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
|
3225 (insert "Resent-Bcc: " (user-login-name) "\n")) |
270 | 3226 (insert "Resent-To: " (if (stringp address) |
3227 address | |
3228 (mapconcat 'identity address ",\n\t")) | |
3229 "\n") | |
11452
a24224fc5a92
(rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents:
11049
diff
changeset
|
3230 ;; 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
|
3231 (save-excursion |
11452
a24224fc5a92
(rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents:
11049
diff
changeset
|
3232 (if (featurep 'mailabbrev) |
11533
2d1e996c4359
(rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents:
11497
diff
changeset
|
3233 (let ((end (point-marker)) |
2d1e996c4359
(rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents:
11497
diff
changeset
|
3234 (local-abbrev-table mail-abbrevs) |
2d1e996c4359
(rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents:
11497
diff
changeset
|
3235 (old-syntax-table (syntax-table))) |
2d1e996c4359
(rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents:
11497
diff
changeset
|
3236 (if (and (not (vectorp mail-abbrevs)) |
2d1e996c4359
(rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents:
11497
diff
changeset
|
3237 (file-exists-p mail-personal-alias-file)) |
2d1e996c4359
(rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents:
11497
diff
changeset
|
3238 (build-mail-abbrevs)) |
2d1e996c4359
(rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents:
11497
diff
changeset
|
3239 (set-syntax-table mail-abbrev-syntax-table) |
2d1e996c4359
(rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents:
11497
diff
changeset
|
3240 (goto-char before) |
2d1e996c4359
(rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents:
11497
diff
changeset
|
3241 (while (and (< (point) end) |
2d1e996c4359
(rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents:
11497
diff
changeset
|
3242 (progn (forward-word 1) |
2d1e996c4359
(rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents:
11497
diff
changeset
|
3243 (<= (point) end))) |
2d1e996c4359
(rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents:
11497
diff
changeset
|
3244 (expand-abbrev)) |
2d1e996c4359
(rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents:
11497
diff
changeset
|
3245 (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
|
3246 (expand-mail-aliases before (point))))) |
270 | 3247 ;;>> Set up comment, if any. |
3248 (if (and (sequencep comment) (not (zerop (length comment)))) | |
3249 (let ((before (point)) | |
3250 after) | |
3251 (insert comment) | |
3252 (or (eolp) (insert "\n")) | |
3253 (setq after (point)) | |
3254 (goto-char before) | |
3255 (while (< (point) after) | |
3256 (insert "Resent-Comment: ") | |
3257 (forward-line 1)))) | |
3258 ;; Don't expand aliases in the destination fields | |
3259 ;; of the original message. | |
3260 (let (mail-aliases) | |
5470
b8e8802d2216
(rmail-resend): Use send-mail-function.
Richard M. Stallman <rms@gnu.org>
parents:
5466
diff
changeset
|
3261 (funcall send-mail-function))) |
2687
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
3262 (kill-buffer tembuf)) |
23298
116f19dd86dc
(rmail-resend): Work properly if invoked from summary.
Karl Heuer <kwzh@gnu.org>
parents:
23293
diff
changeset
|
3263 (with-current-buffer rmail-buffer |
116f19dd86dc
(rmail-resend): Work properly if invoked from summary.
Karl Heuer <kwzh@gnu.org>
parents:
23293
diff
changeset
|
3264 (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
|
3265 |
1267
1e1a54ebb29b
(mail-unsent-separator): Add another alternative.
Richard M. Stallman <rms@gnu.org>
parents:
1165
diff
changeset
|
3266 (defvar mail-unsent-separator |
1370
c017b62c8073
(mail-unsent-separator): Allow "original message" as alternative.
Richard M. Stallman <rms@gnu.org>
parents:
1360
diff
changeset
|
3267 (concat "^ *---+ +Unsent message follows +---+ *$\\|" |
c017b62c8073
(mail-unsent-separator): Allow "original message" as alternative.
Richard M. Stallman <rms@gnu.org>
parents:
1360
diff
changeset
|
3268 "^ *---+ +Returned message +---+ *$\\|" |
22158
aca5c8cb2c04
(mail-unsent-separator): Handle "returned message follows".
Richard M. Stallman <rms@gnu.org>
parents:
22135
diff
changeset
|
3269 "^ *---+ *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
|
3270 "^Start of returned message$\\|" |
22610
f5539d91e129
(mail-unsent-separator): Add new alternative.
Richard M. Stallman <rms@gnu.org>
parents:
22591
diff
changeset
|
3271 "^---+ 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
|
3272 "^ *---+ +Original message +---+ *$\\|" |
1757
7e85913523ef
(mail-unsent-separator): Add `-- begin message --'.
Richard M. Stallman <rms@gnu.org>
parents:
1704
diff
changeset
|
3273 "^ *--+ +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
|
3274 "^ *---+ +Original message follows +---+ *$\\|" |
20984
f27355b19aba
(rmail-retry-failure): Don't insist on finding
Karl Heuer <kwzh@gnu.org>
parents:
20953
diff
changeset
|
3275 "^ *---+ +Your message follows +---+ *$\\|" |
24929
6ba667635e10
(mail-unsent-separator): Add a missing \\|.
Richard M. Stallman <rms@gnu.org>
parents:
24634
diff
changeset
|
3276 "^|? *---+ +Message text follows: +---+ *|?$\\|" |
30100
020fc2e83129
(mail-unsent-separator): Changed "the" to "\\w+", as
Gerd Moellmann <gerd@gnu.org>
parents:
29301
diff
changeset
|
3277 "^ *---+ +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
|
3278 "A regexp that matches the separator before the text of a failed message.") |
270 | 3279 |
17197
7689ab3937cc
(rmail-retry-failure): Special handling for mime.
Richard M. Stallman <rms@gnu.org>
parents:
17164
diff
changeset
|
3280 (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
|
3281 "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
|
3282 |
270 | 3283 (defun rmail-retry-failure () |
3284 "Edit a mail message which is based on the contents of the current message. | |
3285 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
|
3286 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
|
3287 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
|
3288 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
|
3289 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
|
3290 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
|
3291 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
|
3292 specifying headers which should not be copied into the new message." |
270 | 3293 (interactive) |
3294 (require 'mail-utils) | |
17821
c0422adc1b0e
(rmail-retry-failure): Rename local to rmail-this-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
17762
diff
changeset
|
3295 (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
|
3296 (msgnum rmail-current-message) |
23378
85656c9cca2a
(rmail-retry-failure): Allow blanks in boundary
Karl Heuer <kwzh@gnu.org>
parents:
23298
diff
changeset
|
3297 (pruned (rmail-msg-is-pruned)) |
13808
308a47d72b19
(rmail-ignored-headers): Add resent-date, nntp-posting-host.
Karl Heuer <kwzh@gnu.org>
parents:
13724
diff
changeset
|
3298 bounce-start bounce-end bounce-indent resending) |
36568
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3299 (unwind-protect |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3300 (progn |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3301 (save-excursion |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3302 ;; Un-prune the header; we need to search the whole thing. |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3303 (if pruned |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3304 (rmail-toggle-header 0)) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3305 (goto-char (rmail-msgbeg msgnum)) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3306 (let* ((case-fold-search t) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3307 (top (point)) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3308 (content-type |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3309 (save-restriction |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3310 ;; Fetch any content-type header in current message |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3311 (search-forward "\n\n") (narrow-to-region top (point)) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3312 (mail-fetch-field "Content-Type") )) ) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3313 ;; Handle MIME multipart bounce messages |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3314 (if (and content-type |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3315 (string-match |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3316 ";[\n\t ]*boundary=\"?\\([-0-9a-z'()+_,./:=? ]+\\)\"?" |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3317 content-type)) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3318 (let ((codestring |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3319 (concat "\n--" |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3320 (substring content-type (match-beginning 1) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3321 (match-end 1))))) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3322 (unless (re-search-forward mail-mime-unsent-header nil t) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3323 (error "Cannot find beginning of header in failed message")) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3324 (unless (search-forward "\n\n" nil t) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3325 (error "Cannot find start of Mime data in failed message")) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3326 (setq bounce-start (point)) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3327 (if (search-forward codestring nil t) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3328 (setq bounce-end (match-beginning 0)) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3329 (setq bounce-end (point-max))) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3330 ) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3331 ;; non-MIME bounce |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3332 (or (re-search-forward mail-unsent-separator nil t) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3333 (error "Cannot parse this as a failure message")) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3334 (skip-chars-forward "\n") |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3335 ;; Support a style of failure message in which the original |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3336 ;; message is indented, and included within lines saying |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3337 ;; `Start of returned message' and `End of returned message'. |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3338 (if (looking-at " +Received:") |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3339 (progn |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3340 (setq bounce-start (point)) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3341 (skip-chars-forward " ") |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3342 (setq bounce-indent (- (current-column))) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3343 (goto-char (point-max)) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3344 (re-search-backward "^End of returned message$" nil t) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3345 (setq bounce-end (point))) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3346 ;; One message contained a few random lines before |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3347 ;; the old message header. The first line of the |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3348 ;; message started with two hyphens. A blank line |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3349 ;; followed these random lines. The same line |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3350 ;; beginning with two hyphens was possibly marking |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3351 ;; the end of the message. |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3352 (if (looking-at "^--") |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3353 (let ((boundary (buffer-substring-no-properties |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3354 (point) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3355 (progn (end-of-line) (point))))) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3356 (search-forward "\n\n") |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3357 (skip-chars-forward "\n") |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3358 (setq bounce-start (point)) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3359 (goto-char (point-max)) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3360 (search-backward (concat "\n\n" boundary) bounce-start t) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3361 (setq bounce-end (point))) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3362 (setq bounce-start (point) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3363 bounce-end (point-max))) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3364 (unless (search-forward "\n\n" nil t) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3365 (error "Cannot find end of header in failed message")) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3366 )))) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3367 ;; Start sending new message; default header fields from original. |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3368 ;; Turn off the usual actions for initializing the message body |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3369 ;; because we want to get only the text from the failure message. |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3370 (let (mail-signature mail-setup-hook) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3371 (if (rmail-start-mail nil nil nil nil nil rmail-this-buffer |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3372 (list (list 'rmail-mark-message |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3373 rmail-this-buffer |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3374 (aref rmail-msgref-vector msgnum) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3375 "retried"))) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3376 ;; Insert original text as initial text of new draft message. |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3377 ;; Bind inhibit-read-only since the header delimiter |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3378 ;; of the previous message was probably read-only. |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3379 (let ((inhibit-read-only t) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3380 rmail-displayed-headers |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3381 rmail-ignored-headers) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3382 (erase-buffer) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3383 (insert-buffer-substring rmail-this-buffer |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3384 bounce-start bounce-end) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3385 (goto-char (point-min)) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3386 (if bounce-indent |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3387 (indent-rigidly (point-min) (point-max) bounce-indent)) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3388 (rmail-clear-headers rmail-retry-ignored-headers) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3389 (rmail-clear-headers "^sender:\\|^return-path:\\|^received:") |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3390 (mail-sendmail-delimit-header) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3391 (save-restriction |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3392 (narrow-to-region (point-min) (mail-header-end)) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3393 (setq resending (mail-fetch-field "resent-to")) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3394 (if mail-self-blind |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3395 (if resending |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3396 (insert "Resent-Bcc: " (user-login-name) "\n") |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3397 (insert "BCC: " (user-login-name) "\n")))) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3398 (goto-char (point-min)) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3399 (mail-position-on-field (if resending "Resent-To" "To") t))))) |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3400 (with-current-buffer rmail-this-buffer |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3401 (if pruned |
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
3402 (rmail-toggle-header 1)))))) |
10970
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
3403 |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
3404 (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
|
3405 "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
|
3406 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
|
3407 (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
|
3408 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
|
3409 |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
3410 (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
|
3411 "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
|
3412 (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
|
3413 |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
3414 (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
|
3415 "*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
|
3416 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
|
3417 :type 'boolean |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
3418 :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
|
3419 |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
3420 (defcustom rmail-summary-window-size nil |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
3421 "*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
|
3422 :type '(choice (const :tag "Disabled" nil) integer) |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
3423 :group 'rmail-summary) |
6408
185b1fd3a525
(rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6389
diff
changeset
|
3424 |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
3425 ;; 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
|
3426 (defun rmail-maybe-display-summary () |
6408
185b1fd3a525
(rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6389
diff
changeset
|
3427 (let ((selected (selected-window)) |
185b1fd3a525
(rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6389
diff
changeset
|
3428 window) |
185b1fd3a525
(rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6389
diff
changeset
|
3429 ;; 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
|
3430 (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
|
3431 rmail-redisplay-summary |
8533
a0af63b5bc45
(rmail-retry-failure): Narrow to just the old header
Richard M. Stallman <rms@gnu.org>
parents:
8506
diff
changeset
|
3432 (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
|
3433 ;; 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
|
3434 (let ((frame (window-frame |
a0af63b5bc45
(rmail-retry-failure): Narrow to just the old header
Richard M. Stallman <rms@gnu.org>
parents:
8506
diff
changeset
|
3435 (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
|
3436 (make-frame-visible frame) |
a0af63b5bc45
(rmail-retry-failure): Narrow to just the old header
Richard M. Stallman <rms@gnu.org>
parents:
8506
diff
changeset
|
3437 (raise-frame frame)) |
a0af63b5bc45
(rmail-retry-failure): Narrow to just the old header
Richard M. Stallman <rms@gnu.org>
parents:
8506
diff
changeset
|
3438 (display-buffer rmail-summary-buffer))) |
6408
185b1fd3a525
(rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6389
diff
changeset
|
3439 ;; 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
|
3440 (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
|
3441 rmail-summary-window-size |
185b1fd3a525
(rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6389
diff
changeset
|
3442 (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
|
3443 ;; 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
|
3444 (not (eq window (frame-root-window (window-frame window)))) |
6408
185b1fd3a525
(rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6389
diff
changeset
|
3445 (unwind-protect |
185b1fd3a525
(rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6389
diff
changeset
|
3446 (progn |
185b1fd3a525
(rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6389
diff
changeset
|
3447 (select-window window) |
14779
afbd0214f6ec
Must fontify only if we're actually showing a message.
Simon Marshall <simon@gnu.org>
parents:
14749
diff
changeset
|
3448 (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
|
3449 (select-window selected))))) |
270 | 3450 |
14374
e2423983be05
Support for local fontification.
Simon Marshall <simon@gnu.org>
parents:
14370
diff
changeset
|
3451 ;;;; *** Rmail Local Fontification *** |
e2423983be05
Support for local fontification.
Simon Marshall <simon@gnu.org>
parents:
14370
diff
changeset
|
3452 |
e2423983be05
Support for local fontification.
Simon Marshall <simon@gnu.org>
parents:
14370
diff
changeset
|
3453 (defun rmail-fontify-buffer-function () |
e2423983be05
Support for local fontification.
Simon Marshall <simon@gnu.org>
parents:
14370
diff
changeset
|
3454 ;; 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
|
3455 (make-local-hook 'rmail-show-message-hook) |
f95ca90841d7
Fix up specialised fontification stuff.
Simon Marshall <simon@gnu.org>
parents:
14374
diff
changeset
|
3456 (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
|
3457 ;; 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
|
3458 (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
|
3459 ;; Prevent Font Lock mode from kicking in. |
14467
f95ca90841d7
Fix up specialised fontification stuff.
Simon Marshall <simon@gnu.org>
parents:
14374
diff
changeset
|
3460 (setq font-lock-fontified t)) |
14374
e2423983be05
Support for local fontification.
Simon Marshall <simon@gnu.org>
parents:
14370
diff
changeset
|
3461 |
e2423983be05
Support for local fontification.
Simon Marshall <simon@gnu.org>
parents:
14370
diff
changeset
|
3462 (defun rmail-unfontify-buffer-function () |
e2423983be05
Support for local fontification.
Simon Marshall <simon@gnu.org>
parents:
14370
diff
changeset
|
3463 ;; 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
|
3464 (let ((modified (buffer-modified-p)) |
f95ca90841d7
Fix up specialised fontification stuff.
Simon Marshall <simon@gnu.org>
parents:
14374
diff
changeset
|
3465 (buffer-undo-list t) (inhibit-read-only t) |
f95ca90841d7
Fix up specialised fontification stuff.
Simon Marshall <simon@gnu.org>
parents:
14374
diff
changeset
|
3466 before-change-functions after-change-functions |
f95ca90841d7
Fix up specialised fontification stuff.
Simon Marshall <simon@gnu.org>
parents:
14374
diff
changeset
|
3467 buffer-file-name buffer-file-truename) |
f95ca90841d7
Fix up specialised fontification stuff.
Simon Marshall <simon@gnu.org>
parents:
14374
diff
changeset
|
3468 (save-restriction |
f95ca90841d7
Fix up specialised fontification stuff.
Simon Marshall <simon@gnu.org>
parents:
14374
diff
changeset
|
3469 (widen) |
f95ca90841d7
Fix up specialised fontification stuff.
Simon Marshall <simon@gnu.org>
parents:
14374
diff
changeset
|
3470 (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
|
3471 (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
|
3472 (font-lock-default-unfontify-buffer) |
467e9d219590
(rmail-fontify-message, rmail-unfontify-buffer-function):
Richard M. Stallman <rms@gnu.org>
parents:
14779
diff
changeset
|
3473 (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
|
3474 |
e2423983be05
Support for local fontification.
Simon Marshall <simon@gnu.org>
parents:
14370
diff
changeset
|
3475 (defun rmail-fontify-message () |
e2423983be05
Support for local fontification.
Simon Marshall <simon@gnu.org>
parents:
14370
diff
changeset
|
3476 ;; Fontify the current message if it is not already fontified. |
e2423983be05
Support for local fontification.
Simon Marshall <simon@gnu.org>
parents:
14370
diff
changeset
|
3477 (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
|
3478 (let ((modified (buffer-modified-p)) |
e2423983be05
Support for local fontification.
Simon Marshall <simon@gnu.org>
parents:
14370
diff
changeset
|
3479 (buffer-undo-list t) (inhibit-read-only t) |
e2423983be05
Support for local fontification.
Simon Marshall <simon@gnu.org>
parents:
14370
diff
changeset
|
3480 before-change-functions after-change-functions |
e2423983be05
Support for local fontification.
Simon Marshall <simon@gnu.org>
parents:
14370
diff
changeset
|
3481 buffer-file-name buffer-file-truename) |
e2423983be05
Support for local fontification.
Simon Marshall <simon@gnu.org>
parents:
14370
diff
changeset
|
3482 (save-excursion |
e2423983be05
Support for local fontification.
Simon Marshall <simon@gnu.org>
parents:
14370
diff
changeset
|
3483 (save-match-data |
e2423983be05
Support for local fontification.
Simon Marshall <simon@gnu.org>
parents:
14370
diff
changeset
|
3484 (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
|
3485 (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
|
3486 (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
|
3487 |
20757
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3488 ;;; Speedbar support for RMAIL files. |
22732
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3489 (eval-when-compile (require 'speedbar)) |
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3490 |
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3491 (defvar rmail-speedbar-match-folder-regexp "^[A-Z0-9]+\\(\\.[A-Z0-9]+\\)?$" |
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3492 "*This regex us used to match folder names to be displayed in speedbar. |
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3493 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
|
3494 browsing, and moving of messages.") |
20757
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3495 |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3496 (defvar rmail-speedbar-last-user nil |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3497 "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
|
3498 |
22732
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3499 (defvar rmail-speedbar-key-map nil |
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3500 "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
|
3501 |
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3502 (defun rmail-install-speedbar-variables () |
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3503 "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
|
3504 (if rmail-speedbar-key-map |
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3505 nil |
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3506 (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
|
3507 |
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3508 (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
|
3509 (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
|
3510 (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
|
3511 (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
|
3512 '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
|
3513 |
20757
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3514 (defvar rmail-speedbar-menu-items |
22732
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3515 '(["Read Folder" speedbar-edit-line t] |
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3516 ["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
|
3517 (save-excursion (beginning-of-line) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3518 (looking-at "<M> "))]) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3519 "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
|
3520 |
22732
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3521 ;; 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
|
3522 (if (featurep 'speedbar) |
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3523 (rmail-install-speedbar-variables) |
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3524 (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
|
3525 |
20757
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3526 (defun rmail-speedbar-buttons (buffer) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3527 "Create buttons for BUFFER containing rmail messages. |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3528 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
|
3529 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
|
3530 current message into that RMAIL folder." |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3531 (let ((from nil)) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3532 (save-excursion |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3533 (set-buffer buffer) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3534 (goto-char (point-min)) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3535 (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
|
3536 (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
|
3537 (setq from t))) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3538 (if from |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3539 nil |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3540 (setq from (buffer-substring (point) (save-excursion |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3541 (end-of-line) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3542 (point)))))) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3543 (goto-char (point-min)) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3544 (if (and (looking-at "Reply to:") |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3545 (equal from rmail-speedbar-last-user)) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3546 nil |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3547 (setq rmail-speedbar-last-user from) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3548 (erase-buffer) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3549 (insert "Reply To:\n") |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3550 (if (stringp from) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3551 (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
|
3552 'rmail-speedbar-button 'rmail-reply)) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3553 (insert "Folders:\n") |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3554 (let* ((case-fold-search nil) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3555 (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
|
3556 default-directory) |
22732
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3557 nil rmail-speedbar-match-folder-regexp))) |
20757
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3558 (while df |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3559 (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
|
3560 'rmail-speedbar-move-message (car df)) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3561 (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
|
3562 'rmail-speedbar-find-file nil t) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3563 (setq df (cdr df))))))) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3564 |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3565 (defun rmail-speedbar-button (text token indent) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3566 "Execute an rmail command specified by TEXT. |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3567 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
|
3568 (speedbar-with-attached-buffer |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3569 (funcall token t))) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3570 |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3571 (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
|
3572 "Load in the rmail file TEXT. |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3573 TOKEN and INDENT are not used." |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3574 (speedbar-with-attached-buffer |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3575 (message "Loading in RMAIL file %s..." text) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3576 (find-file text))) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3577 |
22732
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3578 (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
|
3579 "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
|
3580 (interactive) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3581 (save-excursion |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3582 (beginning-of-line) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3583 (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
|
3584 (progn |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3585 (forward-char -2) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3586 (speedbar-do-function-pointer))))) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3587 |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3588 (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
|
3589 "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
|
3590 TEXT and INDENT are not used." |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3591 (speedbar-with-attached-buffer |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3592 (message "Moving message to %s" token) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3593 (rmail-output-to-rmail-file token))) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3594 |
22838
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
3595 ; 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
|
3596 ; 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
|
3597 ; 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
|
3598 ; 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
|
3599 |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
3600 ;;;###autoload |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
3601 (defun rmail-set-pop-password (password) |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
3602 "Set PASSWORD to be used for retrieving mail from a POP server." |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
3603 (interactive "sPassword: ") |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
3604 (if password |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
3605 (setq rmail-encoded-pop-password |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
3606 (rmail-encode-string password (emacs-pid))) |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
3607 (setq rmail-pop-password nil) |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
3608 (setq rmail-encoded-pop-password nil))) |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
3609 |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
3610 (defun rmail-get-pop-password () |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
3611 "Get the password for retrieving mail from a POP server. If none |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
3612 has been set, then prompt the user for one." |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
3613 (if (not rmail-encoded-pop-password) |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
3614 (progn (if (not rmail-pop-password) |
25571 | 3615 (setq rmail-pop-password (read-passwd "POP password: "))) |
22838
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
3616 (rmail-set-pop-password rmail-pop-password) |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
3617 (setq rmail-pop-password nil))) |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
3618 (rmail-encode-string rmail-encoded-pop-password (emacs-pid))) |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
3619 |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
3620 (defun rmail-have-password () |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
3621 (or rmail-pop-password rmail-encoded-pop-password)) |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
3622 |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
3623 (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
|
3624 "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
|
3625 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
|
3626 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
|
3627 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
|
3628 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
|
3629 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
|
3630 (setq mask (abs mask)) ; doesn't work if negative |
22838
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
3631 (let* ((string-vector (string-to-vector string)) (i 0) |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
3632 (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
|
3633 (while (< i len) |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
3634 (if (= curmask 0) |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
3635 (setq curmask mask)) |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
3636 (setq charmask (% curmask 256)) |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
3637 (setq curmask (lsh curmask -8)) |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
3638 (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
|
3639 (setq i (1+ i))) |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
3640 (concat string-vector))) |
20757
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3641 |
584 | 3642 (provide 'rmail) |
3643 | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
621
diff
changeset
|
3644 ;;; rmail.el ends here |