Mercurial > emacs
annotate lisp/mail/rmail.el @ 63066:bf364cb1c987
(ido-first-match, ido-only-match, ido-subdir)
(ido-indicator): Remove -face suffix from face names.
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Mon, 06 Jun 2005 12:48:02 +0000 |
parents | e73a53eb777e |
children | 18a818a2ee7c 01137c1fdbe9 |
rev | line source |
---|---|
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
38352
diff
changeset
|
1 ;;; rmail.el --- main code of "RMAIL" mail reader for Emacs |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
621
diff
changeset
|
2 |
59561
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
3 ;; Copyright (C) 1985,86,87,88,93,94,95,96,97,98,2000,01,2004,2005 |
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 |
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
38352
diff
changeset
|
26 ;;; Commentary: |
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
38352
diff
changeset
|
27 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
28 ;;; Code: |
270 | 29 |
30 ;; Souped up by shane@mit-ajax based on ideas of rlk@athena.mit.edu | |
31 ;; New features include attribute and keyword support, message | |
32 ;; selection by dispatch table, summary by attributes and keywords, | |
33 ;; expunging by dispatch table, sticky options for file commands. | |
34 | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
35 ;; Extended by Bob Weiner of Motorola |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
36 ;; New features include: rmail and rmail-summary buffers remain |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
37 ;; synchronized and key bindings basically operate the same way in both |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
38 ;; buffers, summary by topic or by regular expression, rmail-reply-prefix |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
39 ;; variable, and a bury rmail buffer (wipe) command. |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
40 ;; |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
41 |
270 | 42 (require 'mail-utils) |
39298
2b67bb3275f8
(top-level): Require mule-utils when compiling.
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
43 (eval-when-compile (require 'mule-util)) ; for detect-coding-with-priority |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
44 |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
45 ; These variables now declared in paths.el. |
270 | 46 ;(defvar rmail-spool-directory "/usr/spool/mail/" |
47 ; "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
|
48 ;delivering new mail. Its name should end with a slash.") |
270 | 49 ;(defvar rmail-file-name |
50 ; (expand-file-name "~/RMAIL") | |
51 ; "") | |
52 | |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
53 (defgroup rmail nil |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
54 "Mail reader for Emacs." |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
55 :group 'mail) |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
56 |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
57 (defgroup rmail-retrieve nil |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
58 "Rmail retrieval options." |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
59 :prefix "rmail-" |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
60 :group 'rmail) |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
61 |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
62 (defgroup rmail-files nil |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
63 "Rmail files." |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
64 :prefix "rmail-" |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
65 :group 'rmail) |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
66 |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
67 (defgroup rmail-headers nil |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
68 "Rmail header options." |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
69 :prefix "rmail-" |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
70 :group 'rmail) |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
71 |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
72 (defgroup rmail-reply nil |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
73 "Rmail reply options." |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
74 :prefix "rmail-" |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
75 :group 'rmail) |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
76 |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
77 (defgroup rmail-summary nil |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
78 "Rmail summary options." |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
79 :prefix "rmail-" |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
80 :prefix "rmail-summary-" |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
81 :group 'rmail) |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
82 |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
83 (defgroup rmail-output nil |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
84 "Output message to a file." |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
85 :prefix "rmail-output-" |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
86 :prefix "rmail-" |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
87 :group 'rmail) |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
88 |
37587
d9239fc54bce
(rmail-edit): New Custom group.
Gerd Moellmann <gerd@gnu.org>
parents:
37517
diff
changeset
|
89 (defgroup rmail-edit nil |
d9239fc54bce
(rmail-edit): New Custom group.
Gerd Moellmann <gerd@gnu.org>
parents:
37517
diff
changeset
|
90 "Rmail editing." |
d9239fc54bce
(rmail-edit): New Custom group.
Gerd Moellmann <gerd@gnu.org>
parents:
37517
diff
changeset
|
91 :prefix "rmail-edit-" |
d9239fc54bce
(rmail-edit): New Custom group.
Gerd Moellmann <gerd@gnu.org>
parents:
37517
diff
changeset
|
92 :group 'rmail) |
d9239fc54bce
(rmail-edit): New Custom group.
Gerd Moellmann <gerd@gnu.org>
parents:
37517
diff
changeset
|
93 |
59561
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
94 (defgroup rmail-obsolete nil |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
95 "Rmail obsolete customization variables." |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
96 :group 'rmail) |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
97 |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
98 (defcustom rmail-movemail-program nil |
60692
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
99 "If non-nil, the file name of the `movemail' program." |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
100 :group 'rmail-retrieve |
23266
ccedad9251db
(rmail-movemail-program): Fix customize type.
Andreas Schwab <schwab@suse.de>
parents:
23185
diff
changeset
|
101 :type '(choice (const nil) string)) |
8234
8eea81545089
(rmail-movemail-program): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8230
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 nil |
60692
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
104 "*Password to use when reading mail from POP server. |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
105 Please use `rmail-remote-password' instead." |
59561
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
106 :type '(choice (string :tag "Password") |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
107 (const :tag "Not Required" nil)) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
108 :group 'rmail-obsolete) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
109 |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
110 (defcustom rmail-pop-password-required nil |
60692
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
111 "*Non-nil if a password is required when reading mail from a POP server. |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
112 Please use rmail-remote-password-required instead." |
59561
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
113 :type 'boolean |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
114 :group 'rmail-obsolete) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
115 |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
116 (defcustom rmail-remote-password nil |
60692
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
117 "*Password to use when reading mail from a remote server. |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
118 This setting is ignored for mailboxes whose URL already contains a password." |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
119 :type '(choice (string :tag "Password") |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
120 (const :tag "Not Required" nil)) |
59561
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
121 :set-after '(rmail-pop-password) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
122 :set #'(lambda (symbol value) |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59561
diff
changeset
|
123 (set-default symbol |
59561
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
124 (if (and (not value) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
125 (boundp 'rmail-pop-password) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
126 rmail-pop-password) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
127 rmail-pop-password |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
128 value)) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
129 (setq rmail-pop-password nil)) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
130 :group 'rmail-retrieve |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59561
diff
changeset
|
131 :version "22.1") |
59561
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
132 |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
133 (defcustom rmail-remote-password-required nil |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
134 "*Non-nil if a password is required when reading mail from a remote server." |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
135 :type 'boolean |
59561
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
136 :set-after '(rmail-pop-password-required) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
137 :set #'(lambda (symbol value) |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59561
diff
changeset
|
138 (set-default symbol |
59561
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
139 (if (and (not value) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
140 (boundp 'rmail-pop-password-required) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
141 rmail-pop-password-required) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
142 rmail-pop-password-required |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
143 value)) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
144 (setq rmail-pop-password-required nil)) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
145 :group 'rmail-retrieve |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59561
diff
changeset
|
146 :version "22.1") |
15085
7048437bc690
(rmail-insert-inbox-text): When required, prompt for
Richard M. Stallman <rms@gnu.org>
parents:
14916
diff
changeset
|
147 |
21395
57c8bfa789b6
(rmail-movemail-flags): New customizable variable
Karl Heuer <kwzh@gnu.org>
parents:
21347
diff
changeset
|
148 (defcustom rmail-movemail-flags nil |
21398 | 149 "*List of flags to pass to movemail. |
150 Most commonly used to specify `-g' to enable GSS-API authentication | |
151 or `-k' to enable Kerberos authentication." | |
21512
cd1971673dfd
(rmail-movemail-flags): Fix customize type.
Andreas Schwab <schwab@suse.de>
parents:
21435
diff
changeset
|
152 :type '(repeat string) |
21669
9861518505cb
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21640
diff
changeset
|
153 :group 'rmail-retrieve |
9861518505cb
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21640
diff
changeset
|
154 :version "20.3") |
21395
57c8bfa789b6
(rmail-movemail-flags): New customizable variable
Karl Heuer <kwzh@gnu.org>
parents:
21347
diff
changeset
|
155 |
59561
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
156 (defvar rmail-remote-password-error "invalid usercode or password\\| |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
157 unknown user name or bad password\\|Authentication failed\\|MU_ERR_AUTH_FAILURE" |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
158 "Regular expression matching incorrect-password POP or IMAP server error |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
159 messages. |
18989
6253a99afd95
(rmail-pop-password-error): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
18957
diff
changeset
|
160 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
|
161 please report it with \\[report-emacs-bug].") |
6253a99afd95
(rmail-pop-password-error): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
18957
diff
changeset
|
162 |
59561
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
163 (defvar rmail-encoded-remote-password nil) |
22912
0f372fdeee3d
(rmail-encoded-pop-password): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22840
diff
changeset
|
164 |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
165 (defcustom rmail-preserve-inbox nil |
60692
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
166 "*Non-nil means leave incoming mail in the user's inbox--don't delete it." |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
167 :type 'boolean |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
168 :group 'rmail-retrieve) |
16908
fd99785417a5
(rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16772
diff
changeset
|
169 |
59561
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
170 (defcustom rmail-movemail-search-path nil |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
171 "*List of directories to search for movemail (in addition to `exec-path')." |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
172 :group 'rmail-retrieve |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
173 :type '(repeat (directory))) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
174 |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
175 (defun rmail-probe (prog) |
60692
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
176 "Determine what flavor of movemail PROG is. |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
177 We do this by executing it with `--version' and analyzing its output." |
59561
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
178 (with-temp-buffer |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
179 (let ((tbuf (current-buffer))) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
180 (buffer-disable-undo tbuf) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
181 (call-process prog nil tbuf nil "--version") |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
182 (if (not (buffer-modified-p tbuf)) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
183 ;; Should not happen... |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
184 nil |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
185 (goto-char (point-min)) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
186 (cond |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
187 ((looking-at ".*movemail: invalid option") |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
188 'emacs) ;; Possibly... |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
189 ((looking-at "movemail (GNU Mailutils .*)") |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
190 'mailutils) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
191 (t |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
192 ;; FIXME: |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
193 'emacs)))))) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
194 |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
195 (defun rmail-autodetect () |
60692
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
196 "Determine and return the file name of the `movemail' program. |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
197 If `rmail-movemail-program' is non-nil, use it. |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
198 Otherwise, look for `movemail' in the directories in |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
199 `rmail-movemail-search-path', those in `exec-path', and `exec-directory'." |
59561
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
200 (if rmail-movemail-program |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
201 (rmail-probe rmail-movemail-program) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
202 (catch 'scan |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
203 (dolist (dir (append rmail-movemail-search-path exec-path |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
204 (list exec-directory))) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
205 (when (and dir (file-accessible-directory-p dir)) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
206 (let ((progname (expand-file-name "movemail" dir))) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
207 (when (and (not (file-directory-p progname)) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
208 (file-executable-p progname)) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
209 (let ((x (rmail-probe progname))) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
210 (when x |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
211 (setq rmail-movemail-program progname) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
212 (throw 'scan x)))))))))) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
213 |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
214 (defvar rmail-movemail-variant-in-use nil |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
215 "The movemail variant currently in use. Known variants are: |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
216 |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
217 `emacs' Means any implementation, compatible with the native Emacs one. |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
218 This is the default; |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
219 `mailutils' Means GNU mailutils implementation, capable of handling full |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
220 mail URLs as the source mailbox;") |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
221 |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
222 ;;;###autoload |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
223 (defun rmail-movemail-variant-p (&rest variants) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
224 "Return t if the current movemail variant is any of VARIANTS. |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
225 Currently known variants are 'emacs and 'mailutils." |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
226 (when (not rmail-movemail-variant-in-use) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
227 ;; Autodetect |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
228 (setq rmail-movemail-variant-in-use (rmail-autodetect))) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
229 (not (null (member rmail-movemail-variant-in-use variants)))) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
230 |
270 | 231 ;;;###autoload |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
232 (defcustom rmail-dont-reply-to-names nil "\ |
44025
5766d225ccf3
(rmail-dont-reply-to-names): Modify the documentation to make it email
Paul Reilly <pmr@pajato.com>
parents:
43124
diff
changeset
|
233 *A regexp specifying addresses to prune from a reply message. |
5766d225ccf3
(rmail-dont-reply-to-names): Modify the documentation to make it email
Paul Reilly <pmr@pajato.com>
parents:
43124
diff
changeset
|
234 A value of nil means exclude your own email address as an address |
22840
be572a467b59
(rmail-dont-reply-to-names): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
22838
diff
changeset
|
235 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
|
236 :type '(choice regexp (const :tag "Your Name" nil)) |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
237 :group 'rmail-reply) |
270 | 238 |
239 ;;;###autoload | |
53967
c0b52e41d35d
(rmail-default-dont-reply-to-names): Make "info-"
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53860
diff
changeset
|
240 (defvar rmail-default-dont-reply-to-names "\\`info-" "\ |
c0b52e41d35d
(rmail-default-dont-reply-to-names): Make "info-"
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53860
diff
changeset
|
241 A regular expression specifying part of the default value of the |
c0b52e41d35d
(rmail-default-dont-reply-to-names): Make "info-"
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53860
diff
changeset
|
242 variable `rmail-dont-reply-to-names', for when the user does not set |
270 | 243 `rmail-dont-reply-to-names' explicitly. (The other part of the default |
44025
5766d225ccf3
(rmail-dont-reply-to-names): Modify the documentation to make it email
Paul Reilly <pmr@pajato.com>
parents:
43124
diff
changeset
|
244 value is the user's email address and name.) |
3931 | 245 It is useful to set this variable in the site customization file.") |
270 | 246 |
247 ;;;###autoload | |
35675
45df875afd43
(rmail-ignored-headers): Add X-Sign, X-BeenThere,
Gerd Moellmann <gerd@gnu.org>
parents:
35548
diff
changeset
|
248 (defcustom rmail-ignored-headers |
61598
b543e1be9df2
(rmail-ignored-headers): Ignore more headers
Richard M. Stallman <rms@gnu.org>
parents:
61223
diff
changeset
|
249 (concat "^via:\\|^mail-from:\\|^origin:\\|^references:\\|^sender:" |
35675
45df875afd43
(rmail-ignored-headers): Add X-Sign, X-BeenThere,
Gerd Moellmann <gerd@gnu.org>
parents:
35548
diff
changeset
|
250 "\\|^status:\\|^received:\\|^x400-originator:\\|^x400-recipients:" |
45df875afd43
(rmail-ignored-headers): Add X-Sign, X-BeenThere,
Gerd Moellmann <gerd@gnu.org>
parents:
35548
diff
changeset
|
251 "\\|^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
|
252 "\\|^\\(resent-\\|\\)message-id:\\|^summary-line:\\|^resent-date:" |
51003
0eff53d54ca1
(rmail-ignored-headers): Ignore Face: header.
John Paul Wallington <jpw@pobox.com>
parents:
50864
diff
changeset
|
253 "\\|^nntp-posting-host:\\|^path:\\|^x-char.*:\\|^x-face:\\|^face:" |
35675
45df875afd43
(rmail-ignored-headers): Add X-Sign, X-BeenThere,
Gerd Moellmann <gerd@gnu.org>
parents:
35548
diff
changeset
|
254 "\\|^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
|
255 "\\|^content-transfer-encoding:\\|^x-coding-system:" |
45df875afd43
(rmail-ignored-headers): Add X-Sign, X-BeenThere,
Gerd Moellmann <gerd@gnu.org>
parents:
35548
diff
changeset
|
256 "\\|^return-path:\\|^errors-to:\\|^return-receipt-to:" |
61598
b543e1be9df2
(rmail-ignored-headers): Ignore more headers
Richard M. Stallman <rms@gnu.org>
parents:
61223
diff
changeset
|
257 "\\|^x-sign:\\|^x-beenthere:\\|^x-mailman-version:\\|^x-mailman-copy:" |
35675
45df875afd43
(rmail-ignored-headers): Add X-Sign, X-BeenThere,
Gerd Moellmann <gerd@gnu.org>
parents:
35548
diff
changeset
|
258 "\\|^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
|
259 "\\|^list-id:\\|^list-unsubscribe:\\|^list-archive:" |
45df875afd43
(rmail-ignored-headers): Add X-Sign, X-BeenThere,
Gerd Moellmann <gerd@gnu.org>
parents:
35548
diff
changeset
|
260 "\\|^content-type:\\|^content-length:" |
35890
e468a6f4f414
(rmail-ignored-headers): Add X-Trace,
Gerd Moellmann <gerd@gnu.org>
parents:
35675
diff
changeset
|
261 "\\|^x-attribution:\\|^x-disclaimer:\\|^x-trace:" |
48412
7fe609827b4c
(rmail-ignored-headers): Add more headers.
Richard M. Stallman <rms@gnu.org>
parents:
47024
diff
changeset
|
262 "\\|^x-complaints-to:\\|^nntp-posting-date:\\|^user-agent" |
7fe609827b4c
(rmail-ignored-headers): Add more headers.
Richard M. Stallman <rms@gnu.org>
parents:
47024
diff
changeset
|
263 "\\|^importance:\\|^envelope-to:\\|^delivery-date" |
61598
b543e1be9df2
(rmail-ignored-headers): Ignore more headers
Richard M. Stallman <rms@gnu.org>
parents:
61223
diff
changeset
|
264 "\\|^x.*-priority:\\|^x-mimeole:\\|^x-archive:" |
b543e1be9df2
(rmail-ignored-headers): Ignore more headers
Richard M. Stallman <rms@gnu.org>
parents:
61223
diff
changeset
|
265 "\\|^resent-face:\\|^resent-x.*:\\|^resent-organization\\|^resent-openpgp" |
b543e1be9df2
(rmail-ignored-headers): Ignore more headers
Richard M. Stallman <rms@gnu.org>
parents:
61223
diff
changeset
|
266 "\\|^openpgp:\\|^x-request-pgp:\\|^x-original.*:" |
b543e1be9df2
(rmail-ignored-headers): Ignore more headers
Richard M. Stallman <rms@gnu.org>
parents:
61223
diff
changeset
|
267 "\\|^x-virus-scanned:\\|^x-spam-[^s].*:") |
24562
9bd33c9d9a4e
(rmail-ignored-headers): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
24521
diff
changeset
|
268 "*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
|
269 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
|
270 which normally happens once for each message, |
9bd33c9d9a4e
(rmail-ignored-headers): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
24521
diff
changeset
|
271 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
|
272 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
|
273 for a message that you have already viewed, |
9bd33c9d9a4e
(rmail-ignored-headers): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
24521
diff
changeset
|
274 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
|
275 :type 'regexp |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
276 :group 'rmail-headers) |
270 | 277 |
278 ;;;###autoload | |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
279 (defcustom rmail-displayed-headers nil |
11452
a24224fc5a92
(rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents:
11049
diff
changeset
|
280 "*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
|
281 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
|
282 `rmail-ignored-headers'." |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
283 :type '(choice regexp (const :tag "All")) |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
284 :group 'rmail-headers) |
11452
a24224fc5a92
(rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents:
11049
diff
changeset
|
285 |
a24224fc5a92
(rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents:
11049
diff
changeset
|
286 ;;;###autoload |
36568
c96255f28875
(rmail-retry-failure): Don't call rmail-beginning-of-message.
Richard M. Stallman <rms@gnu.org>
parents:
35890
diff
changeset
|
287 (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
|
288 *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
|
289 :type '(choice regexp (const nil :tag "None")) |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
290 :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
|
291 |
9d48b6752dbf
(rmail-retry-failure): Copy the whole block of headers from the message
Richard M. Stallman <rms@gnu.org>
parents:
8963
diff
changeset
|
292 ;;;###autoload |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
293 (defcustom rmail-highlighted-headers "^From:\\|^Subject:" "\ |
8383
d2b1b642f4e6
(rmail-highlighted-face): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8378
diff
changeset
|
294 *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
|
295 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
|
296 See also `rmail-highlight-face'." |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
297 :type 'regexp |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
298 :group 'rmail-headers) |
7051
1733b6c1e30b
(rmail-show-message): Highlight the specified fields.
Richard M. Stallman <rms@gnu.org>
parents:
7037
diff
changeset
|
299 |
1733b6c1e30b
(rmail-show-message): Highlight the specified fields.
Richard M. Stallman <rms@gnu.org>
parents:
7037
diff
changeset
|
300 ;;;###autoload |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
301 (defcustom rmail-highlight-face nil "\ |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
302 *Face used by Rmail for highlighting headers." |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
303 :type '(choice (const :tag "Default" nil) |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
304 face) |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
305 :group 'rmail-headers) |
8383
d2b1b642f4e6
(rmail-highlighted-face): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8378
diff
changeset
|
306 |
d2b1b642f4e6
(rmail-highlighted-face): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8378
diff
changeset
|
307 ;;;###autoload |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
308 (defcustom rmail-delete-after-output nil "\ |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
309 *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
|
310 :type 'boolean |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
311 :group 'rmail-files) |
270 | 312 |
313 ;;;###autoload | |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
314 (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
|
315 *List of files which are inboxes for user's primary mail file `~/RMAIL'. |
50864
5f3b64308e0c
(rmail-primary-inbox-list): Don't quote nil and t in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
49889
diff
changeset
|
316 nil means the default, which is (\"/usr/spool/mail/$USER\") |
2423
5dd3b7338f71
(rmail): Don't use mbox as inbox by default.
Richard M. Stallman <rms@gnu.org>
parents:
2076
diff
changeset
|
317 \(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
|
318 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
|
319 ;; 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
|
320 ;; at load time. |
c0422adc1b0e
(rmail-retry-failure): Rename local to rmail-this-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
17762
diff
changeset
|
321 :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
|
322 (list 'repeat ':value (list (or (getenv "MAIL") |
945fed18ddb8
(rmail-primary-inbox-list): Make the initial
Karl Heuer <kwzh@gnu.org>
parents:
22912
diff
changeset
|
323 (concat "/var/spool/mail/" |
945fed18ddb8
(rmail-primary-inbox-list): Make the initial
Karl Heuer <kwzh@gnu.org>
parents:
22912
diff
changeset
|
324 (getenv "USER")))) |
17821
c0422adc1b0e
(rmail-retry-failure): Rename local to rmail-this-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
17762
diff
changeset
|
325 'file)) |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
326 :group 'rmail-retrieve |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
327 :group 'rmail-files) |
270 | 328 |
4108
e4fbcd480455
(rmail-mail-new-frame): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4071
diff
changeset
|
329 ;;;###autoload |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
330 (defcustom rmail-mail-new-frame nil |
55114
c58efa90d5a6
(rmail-mail-new-frame): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents:
55056
diff
changeset
|
331 "*Non-nil means Rmail makes a new frame for composing outgoing mail. |
c58efa90d5a6
(rmail-mail-new-frame): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents:
55056
diff
changeset
|
332 This is handy if you want to preserve the window configuration of |
c58efa90d5a6
(rmail-mail-new-frame): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents:
55056
diff
changeset
|
333 the frame where you have the RMAIL buffer displayed." |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
334 :type 'boolean |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
335 :group 'rmail-reply) |
4108
e4fbcd480455
(rmail-mail-new-frame): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4071
diff
changeset
|
336 |
4844
25d94807689e
(rmail-retry-setup-hook): New hook variable.
Richard M. Stallman <rms@gnu.org>
parents:
4838
diff
changeset
|
337 ;;;###autoload |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
338 (defcustom rmail-secondary-file-directory "~/" |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
339 "*Directory for additional secondary Rmail files." |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
340 :type 'directory |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
341 :group 'rmail-files) |
6408
185b1fd3a525
(rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6389
diff
changeset
|
342 ;;;###autoload |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
343 (defcustom rmail-secondary-file-regexp "\\.xmail$" |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
344 "*Regexp for which files are secondary Rmail files." |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
345 :type 'regexp |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
346 :group 'rmail-files) |
6408
185b1fd3a525
(rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6389
diff
changeset
|
347 |
13477
5c500f39271c
(rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
13302
diff
changeset
|
348 ;;;###autoload |
33792
3349ff34a331
(rmail-confirm-expunge): Default to
Gerd Moellmann <gerd@gnu.org>
parents:
30544
diff
changeset
|
349 (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
|
350 "*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
|
351 :type '(choice (const :tag "No confirmation" nil) |
4aafdd90bf08
(rmail-confirm-expunge): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
27944
diff
changeset
|
352 (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
|
353 (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
|
354 :version "21.1" |
4aafdd90bf08
(rmail-confirm-expunge): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
27944
diff
changeset
|
355 :group 'rmail-files) |
4aafdd90bf08
(rmail-confirm-expunge): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
27944
diff
changeset
|
356 |
4aafdd90bf08
(rmail-confirm-expunge): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
27944
diff
changeset
|
357 ;;;###autoload |
13477
5c500f39271c
(rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
13302
diff
changeset
|
358 (defvar rmail-mode-hook nil |
5c500f39271c
(rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
13302
diff
changeset
|
359 "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
|
360 |
5c500f39271c
(rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
13302
diff
changeset
|
361 ;;;###autoload |
5c500f39271c
(rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
13302
diff
changeset
|
362 (defvar rmail-get-new-mail-hook nil |
5c500f39271c
(rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
13302
diff
changeset
|
363 "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
|
364 |
5c500f39271c
(rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
13302
diff
changeset
|
365 ;;;###autoload |
28910
65b986dbb7ba
rmail-show-message-hook): Customize and offer
Dave Love <fx@gnu.org>
parents:
28714
diff
changeset
|
366 (defcustom rmail-show-message-hook nil |
65b986dbb7ba
rmail-show-message-hook): Customize and offer
Dave Love <fx@gnu.org>
parents:
28714
diff
changeset
|
367 "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
|
368 :type 'hook |
45360
68f66e6dd200
(rmail-show-message-hook): Offer `goto-address' as an option.
Richard M. Stallman <rms@gnu.org>
parents:
45218
diff
changeset
|
369 :options '(goto-address) |
28910
65b986dbb7ba
rmail-show-message-hook): Customize and offer
Dave Love <fx@gnu.org>
parents:
28714
diff
changeset
|
370 :group 'rmail) |
13477
5c500f39271c
(rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
13302
diff
changeset
|
371 |
5c500f39271c
(rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
13302
diff
changeset
|
372 ;;;###autoload |
27944
b75299f3bc4c
(rmail-quit-hook): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
27871
diff
changeset
|
373 (defvar rmail-quit-hook nil |
b75299f3bc4c
(rmail-quit-hook): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
27871
diff
changeset
|
374 "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
|
375 |
b75299f3bc4c
(rmail-quit-hook): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
27871
diff
changeset
|
376 ;;;###autoload |
13477
5c500f39271c
(rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
13302
diff
changeset
|
377 (defvar rmail-delete-message-hook nil |
5c500f39271c
(rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
13302
diff
changeset
|
378 "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
|
379 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
|
380 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
|
381 |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
382 ;; 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
|
383 ;; 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
|
384 ;; files). |
270 | 385 |
18091
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
386 (defvar rmail-mmdf-delim1 "^\001\001\001\001\n" |
49082
336bfea9bad4
(rmail-mmdf-delim1, rmail-mmdf-delim2): Doc fixes.
John Paul Wallington <jpw@pobox.com>
parents:
49064
diff
changeset
|
387 "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
|
388 (defvar rmail-mmdf-delim2 "^\001\001\001\001\n" |
49082
336bfea9bad4
(rmail-mmdf-delim1, rmail-mmdf-delim2): Doc fixes.
John Paul Wallington <jpw@pobox.com>
parents:
49064
diff
changeset
|
389 "Regexp marking the end of an mmdf message.") |
270 | 390 |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
391 (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
|
392 "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
|
393 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
|
394 before obeying `rmail-ignored-headers'." |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
395 :group 'rmail-headers |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
396 :type 'function) |
270 | 397 |
29160
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
398 (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
|
399 "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
|
400 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
|
401 |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
402 (FOLDERNAME FIELD REGEXP [ FIELD REGEXP ] ... ) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
403 |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
404 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
|
405 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
|
406 |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
407 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
|
408 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
|
409 |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
410 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
|
411 \"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
|
412 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
|
413 |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
414 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
|
415 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
|
416 |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
417 examples: |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
418 (\"/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
|
419 (\"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
|
420 :group 'rmail |
5ddbb3756471
(rmail-automatic-folder-directives): Add a custom
Gerd Moellmann <gerd@gnu.org>
parents:
33792
diff
changeset
|
421 :version "21.1" |
5ddbb3756471
(rmail-automatic-folder-directives): Add a custom
Gerd Moellmann <gerd@gnu.org>
parents:
33792
diff
changeset
|
422 :type '(repeat (sexp :tag "Directive"))) |
45144
30db00c75dbf
(rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents:
44141
diff
changeset
|
423 |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
424 (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
|
425 "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
|
426 |
17065
01cba1834368
(rmail-next-same-subject, rmail-reply): Ignore case, to
Karl Heuer <kwzh@gnu.org>
parents:
17011
diff
changeset
|
427 ;; Some mailers use "Re(2):" or "Re^2:" or "Re: Re:" or "Re[2]:". |
10640 | 428 ;; 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
|
429 (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
|
430 "Regexp to delete from Subject line before inserting `rmail-reply-prefix'.") |
10640 | 431 |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
432 (defcustom rmail-display-summary nil |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
433 "*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
|
434 :group 'rmail-summary |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
435 :type 'boolean) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
436 |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
437 (defvar rmail-inbox-list nil) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
438 (put 'rmail-inbox-list 'permanent-local t) |
8384
4c88569aaa73
(rmail-display-summary): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8383
diff
changeset
|
439 |
270 | 440 (defvar rmail-keywords nil) |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
441 (put 'rmail-keywords 'permanent-local t) |
270 | 442 |
19509
ea4261efd9f9
(rmail-view-buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
19315
diff
changeset
|
443 (defvar rmail-buffer nil |
ea4261efd9f9
(rmail-view-buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
19315
diff
changeset
|
444 "The RMAIL buffer related to the current buffer. |
ea4261efd9f9
(rmail-view-buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
19315
diff
changeset
|
445 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
|
446 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
|
447 (put 'rmail-buffer 'permanent-local t) |
ea4261efd9f9
(rmail-view-buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
19315
diff
changeset
|
448 |
270 | 449 ;; Message counters and markers. Deleted flags. |
450 | |
451 (defvar rmail-current-message nil) | |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
452 (put 'rmail-current-message 'permanent-local t) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
453 |
270 | 454 (defvar rmail-total-messages nil) |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
455 (put 'rmail-total-messages 'permanent-local t) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
456 |
270 | 457 (defvar rmail-message-vector nil) |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
458 (put 'rmail-message-vector 'permanent-local t) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
459 |
270 | 460 (defvar rmail-deleted-vector nil) |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
461 (put 'rmail-deleted-vector 'permanent-local t) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
462 |
17620
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
463 (defvar rmail-msgref-vector nil |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
464 "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
|
465 When expunging renumbers messages, these lists are modified |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
466 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
|
467 (put 'rmail-msgref-vector 'permanent-local t) |
270 | 468 |
7061
9f27a57b7662
(rmail-show-message): Use overlays, not text properties.
Richard M. Stallman <rms@gnu.org>
parents:
7051
diff
changeset
|
469 (defvar rmail-overlay-list nil) |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
470 (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
|
471 |
270 | 472 ;; These are used by autoloaded rmail-summary. |
473 | |
474 (defvar rmail-summary-buffer nil) | |
19509
ea4261efd9f9
(rmail-view-buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
19315
diff
changeset
|
475 (put 'rmail-summary-buffer 'permanent-local t) |
270 | 476 (defvar rmail-summary-vector nil) |
19509
ea4261efd9f9
(rmail-view-buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
19315
diff
changeset
|
477 (put 'rmail-summary-vector 'permanent-local t) |
270 | 478 |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
479 (defvar rmail-view-buffer nil |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
480 "Buffer which holds RMAIL message for MIME displaying.") |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
481 (put 'rmail-view-buffer 'permanent-local t) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
482 |
270 | 483 ;; `Sticky' default variables. |
484 | |
485 ;; Last individual label specified to a or k. | |
486 (defvar rmail-last-label nil) | |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
487 (put 'rmail-last-label 'permanent-local t) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
488 |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
489 ;; Last set of values specified to C-M-n, C-M-p, C-M-s or C-M-l. |
270 | 490 (defvar rmail-last-multi-labels nil) |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
491 |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
492 (defvar rmail-last-regexp nil) |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
493 (put 'rmail-last-regexp 'permanent-local t) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
494 |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
495 (defcustom rmail-default-file "~/xmail" |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
496 "*Default file name for \\[rmail-output]." |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
497 :type 'file |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
498 :group 'rmail-files) |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
499 (defcustom rmail-default-rmail-file "~/XMAIL" |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
500 "*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
|
501 :type 'file |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
502 :group 'rmail-files) |
22201
40b715281ea5
(rmail-default-body-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22158
diff
changeset
|
503 (defcustom rmail-default-body-file "~/mailout" |
40b715281ea5
(rmail-default-body-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22158
diff
changeset
|
504 "*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
|
505 :type 'file |
40b715281ea5
(rmail-default-body-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22158
diff
changeset
|
506 :group 'rmail-files |
40b715281ea5
(rmail-default-body-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22158
diff
changeset
|
507 :version "20.3") |
617 | 508 |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
509 ;; Mule and MIME related variables. |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
510 |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
511 ;;;###autoload |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
512 (defvar rmail-file-coding-system nil |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
513 "Coding system used in RMAIL file. |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
514 |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
515 This is set to nil by default.") |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
516 |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
517 ;;;###autoload |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
518 (defcustom rmail-enable-mime nil |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
519 "*If non-nil, RMAIL uses MIME feature. |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
520 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
|
521 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
|
522 until a user explicitly requires it." |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
523 :type '(choice (const :tag "on" t) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
524 (const :tag "off" nil) |
22591
ab11b5ffa8de
(rmail-enable-mime): Use `other' widget type.
Andreas Schwab <schwab@suse.de>
parents:
22498
diff
changeset
|
525 (other :tag "when asked" ask)) |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
526 :group 'rmail) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
527 |
41511
19496cafe865
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39298
diff
changeset
|
528 (defvar rmail-enable-mime-composing nil |
19496cafe865
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39298
diff
changeset
|
529 "*If non-nil, RMAIL uses `rmail-insert-mime-forwarded-message-function' to forward.") |
19496cafe865
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39298
diff
changeset
|
530 |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
531 ;;;###autoload |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
532 (defvar rmail-show-mime-function nil |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
533 "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
|
534 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
|
535 It is called with no argument.") |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
536 |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
537 ;;;###autoload |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
538 (defvar rmail-insert-mime-forwarded-message-function nil |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
539 "Function to insert a message in MIME format so it can be forwarded. |
45144
30db00c75dbf
(rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents:
44141
diff
changeset
|
540 This function is called if `rmail-enable-mime' or |
41511
19496cafe865
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39298
diff
changeset
|
541 `rmail-enable-mime-composing' is non-nil. |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
542 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
|
543 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
|
544 is the outgoing mail buffer.") |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
545 |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
546 ;;;###autoload |
37956
b59847354241
(rmail-revert): Modify to work in
Gerd Moellmann <gerd@gnu.org>
parents:
37839
diff
changeset
|
547 (defvar rmail-insert-mime-resent-message-function nil |
b59847354241
(rmail-revert): Modify to work in
Gerd Moellmann <gerd@gnu.org>
parents:
37839
diff
changeset
|
548 "Function to insert a message in MIME format so it can be resent. |
b59847354241
(rmail-revert): Modify to work in
Gerd Moellmann <gerd@gnu.org>
parents:
37839
diff
changeset
|
549 This function is called if `rmail-enable-mime' is non-nil. |
b59847354241
(rmail-revert): Modify to work in
Gerd Moellmann <gerd@gnu.org>
parents:
37839
diff
changeset
|
550 It is called with one argument FORWARD-BUFFER, which is a |
b59847354241
(rmail-revert): Modify to work in
Gerd Moellmann <gerd@gnu.org>
parents:
37839
diff
changeset
|
551 buffer containing the message to forward. The current buffer |
b59847354241
(rmail-revert): Modify to work in
Gerd Moellmann <gerd@gnu.org>
parents:
37839
diff
changeset
|
552 is the outgoing mail buffer.") |
b59847354241
(rmail-revert): Modify to work in
Gerd Moellmann <gerd@gnu.org>
parents:
37839
diff
changeset
|
553 |
b59847354241
(rmail-revert): Modify to work in
Gerd Moellmann <gerd@gnu.org>
parents:
37839
diff
changeset
|
554 ;;;###autoload |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
555 (defvar rmail-search-mime-message-function nil |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
556 "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
|
557 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
|
558 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
|
559 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
|
560 |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
561 ;;;###autoload |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
562 (defvar rmail-search-mime-header-function nil |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
563 "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
|
564 This function is called if `rmail-enable-mime' is non-nil. |
46924
2d6894cca50a
(rmail-search-mime-header-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
46129
diff
changeset
|
565 It is called with three arguments MSG, REGEXP, and LIMIT, where |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
566 MSG is the message number, |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
567 REGEXP is the regular expression, |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
568 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
|
569 |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
570 ;;;###autoload |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
571 (defvar rmail-mime-feature 'rmail-mime |
22133
543e41494c45
(rmail-mime-feature): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
22108
diff
changeset
|
572 "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
|
573 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
|
574 this feature is required with `require'.") |
24209
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
575 |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
576 ;;;###autoload |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
577 (defvar rmail-decode-mime-charset t |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
578 "*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
|
579 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
|
580 the message is decoded as normal way. |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
581 |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
582 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
|
583 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
|
584 the variable `rmail-mime-feature'.") |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
585 |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
586 ;;;###autoload |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
587 (defvar rmail-mime-charset-pattern |
56521
3dcebd60c9bd
(rmail-mime-charset-pattern): Don't include semicolon in the charset value.
Richard M. Stallman <rms@gnu.org>
parents:
55152
diff
changeset
|
588 "^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
|
589 "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
|
590 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
|
591 |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
592 |
621 | 593 ;;; Regexp matching the delimiter of messages in UNIX mail format |
594 ;;; (UNIX From lines), minus the initial ^. Note that if you change | |
595 ;;; this expression, you must change the code in rmail-nuke-pinhead-header | |
596 ;;; that knows the exact ordering of the \\( \\) subexpressions. | |
617 | 597 (defvar rmail-unix-mail-delimiter |
1112 | 598 (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
|
599 (concat "\\([A-Z]?[A-Z]?[A-Z][A-Z]\\( DST\\)?" |
1112 | 600 "\\|[-+]?[0-9][0-9][0-9][0-9]" |
601 "\\|" | |
602 "\\) *"))) | |
603 (concat | |
604 "From " | |
605 | |
15534
7f169dd814ce
(rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents:
15503
diff
changeset
|
606 ;; 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
|
607 ;; 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
|
608 ;; `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
|
609 ;; `<@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
|
610 ;; can be removed, e.g. |
7f169dd814ce
(rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents:
15503
diff
changeset
|
611 ;; From: joe@y.z (Joe K |
7f169dd814ce
(rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents:
15503
diff
changeset
|
612 ;; User) |
7f169dd814ce
(rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents:
15503
diff
changeset
|
613 ;; 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
|
614 ;; From: Joe User |
7f169dd814ce
(rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents:
15503
diff
changeset
|
615 ;; <joe@y.z> |
7f169dd814ce
(rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents:
15503
diff
changeset
|
616 ;; 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
|
617 ;; 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
|
618 ;; From: "Joe User"{space}{tab} |
12c537361366
(rmail-unix-mail-delimiter): Allow space or tab as
Paul Eggert <eggert@twinsun.com>
parents:
15746
diff
changeset
|
619 ;; <joe@y.z> |
12c537361366
(rmail-unix-mail-delimiter): Allow space or tab as
Paul Eggert <eggert@twinsun.com>
parents:
15746
diff
changeset
|
620 ;; 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
|
621 ;; 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
|
622 ;; 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
|
623 ;; The following regexp rejects names whose first characters are |
7f169dd814ce
(rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents:
15503
diff
changeset
|
624 ;; 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
|
625 "\\([^\0-\b\n-\r\^?].*\\)? " |
1112 | 626 |
627 ;; The time the message was sent. | |
15534
7f169dd814ce
(rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents:
15503
diff
changeset
|
628 "\\([^\0-\r \^?]+\\) +" ; day of the week |
7f169dd814ce
(rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents:
15503
diff
changeset
|
629 "\\([^\0-\r \^?]+\\) +" ; month |
7f169dd814ce
(rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents:
15503
diff
changeset
|
630 "\\([0-3]?[0-9]\\) +" ; day of month |
7f169dd814ce
(rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents:
15503
diff
changeset
|
631 "\\([0-2][0-9]:[0-5][0-9]\\(:[0-6][0-9]\\)?\\) *" ; time of day |
1112 | 632 |
633 ;; Perhaps a time zone, specified by an abbreviation, or by a | |
634 ;; numeric offset. | |
635 time-zone-regexp | |
636 | |
637 ;; The year. | |
15534
7f169dd814ce
(rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents:
15503
diff
changeset
|
638 " \\([0-9][0-9]+\\) *" |
1112 | 639 |
640 ;; On some systems the time zone can appear after the year, too. | |
641 time-zone-regexp | |
642 | |
7037 | 643 ;; Old uucp cruft. |
644 "\\(remote from .*\\)?" | |
1112 | 645 |
646 "\n")) | |
647 nil) | |
648 | |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
649 (defvar rmail-font-lock-keywords |
49064
d9fb715ab692
(rmail-font-lock-keywords): Discard code to match both cases.
Richard M. Stallman <rms@gnu.org>
parents:
49008
diff
changeset
|
650 ;; These are all matched case-insensitively. |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
651 (eval-when-compile |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
652 (let* ((cite-chars "[>|}]") |
49064
d9fb715ab692
(rmail-font-lock-keywords): Discard code to match both cases.
Richard M. Stallman <rms@gnu.org>
parents:
49008
diff
changeset
|
653 (cite-prefix "a-z") |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
654 (cite-suffix (concat cite-prefix "0-9_.@-`'\""))) |
49064
d9fb715ab692
(rmail-font-lock-keywords): Discard code to match both cases.
Richard M. Stallman <rms@gnu.org>
parents:
49008
diff
changeset
|
655 (list '("^\\(From\\|Sender\\|Resent-From\\):" |
d9fb715ab692
(rmail-font-lock-keywords): Discard code to match both cases.
Richard M. Stallman <rms@gnu.org>
parents:
49008
diff
changeset
|
656 . font-lock-function-name-face) |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
657 '("^Reply-To:.*$" . font-lock-function-name-face) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
658 '("^Subject:" . font-lock-comment-face) |
61598
b543e1be9df2
(rmail-ignored-headers): Ignore more headers
Richard M. Stallman <rms@gnu.org>
parents:
61223
diff
changeset
|
659 '("^X-Spam-Status:" . font-lock-keyword-face) |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
660 '("^\\(To\\|Apparently-To\\|Cc\\|Newsgroups\\):" |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
661 . font-lock-keyword-face) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
662 ;; 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
|
663 `(,cite-chars |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
664 (,(concat "\\=[ \t]*" |
61814
edcdb077c4c1
(rmail-font-lock-keywords): Match any number of
Richard M. Stallman <rms@gnu.org>
parents:
61762
diff
changeset
|
665 "\\(\\(\\([" cite-prefix "]+[" cite-suffix "]*\\)?" |
edcdb077c4c1
(rmail-font-lock-keywords): Match any number of
Richard M. Stallman <rms@gnu.org>
parents:
61762
diff
changeset
|
666 "\\(" cite-chars "[ \t]*\\)\\)+\\)" |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
667 "\\(.*\\)") |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
668 (beginning-of-line) (end-of-line) |
61814
edcdb077c4c1
(rmail-font-lock-keywords): Match any number of
Richard M. Stallman <rms@gnu.org>
parents:
61762
diff
changeset
|
669 (1 font-lock-comment-delimiter-face nil t) |
edcdb077c4c1
(rmail-font-lock-keywords): Match any number of
Richard M. Stallman <rms@gnu.org>
parents:
61762
diff
changeset
|
670 (5 font-lock-comment-face nil t))) |
49064
d9fb715ab692
(rmail-font-lock-keywords): Discard code to match both cases.
Richard M. Stallman <rms@gnu.org>
parents:
49008
diff
changeset
|
671 '("^\\(X-[a-z0-9-]+\\|In-reply-to\\|Date\\):.*\\(\n[ \t]+.*\\)*$" |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
672 . font-lock-string-face)))) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
673 "Additional expressions to highlight in Rmail mode.") |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
674 |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
675 ;; 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
|
676 ;; 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
|
677 (defmacro rmail-select-summary (&rest body) |
26455 | 678 `(let ((total rmail-total-messages)) |
679 (if (rmail-summary-displayed) | |
680 (let ((window (selected-window))) | |
681 (save-excursion | |
682 (unwind-protect | |
683 (progn | |
684 (pop-to-buffer rmail-summary-buffer) | |
685 ;; rmail-total-messages is a buffer-local var | |
686 ;; in the rmail buffer. | |
687 ;; This way we make it available for the body | |
688 ;; even tho the rmail buffer is not current. | |
689 (let ((rmail-total-messages total)) | |
690 ,@body)) | |
691 (select-window window)))) | |
692 (save-excursion | |
693 (set-buffer rmail-summary-buffer) | |
694 (let ((rmail-total-messages total)) | |
695 ,@body))) | |
696 (rmail-maybe-display-summary))) | |
270 | 697 |
698 ;;;; *** Rmail Mode *** | |
699 | |
37787
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
700 ;; This variable is dynamically bound. The defvar is here to placate |
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
701 ;; the byte compiler. |
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
702 |
20943
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
703 (defvar rmail-enable-multibyte nil) |
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
704 |
37787
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
705 |
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
706 (defun rmail-require-mime-maybe () |
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
707 "Require `rmail-mime-feature' if that is non-nil. |
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
708 Signal an error and set `rmail-mime-feature' to nil if the feature |
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
709 isn't provided." |
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
710 (when rmail-enable-mime |
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
711 (condition-case err |
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
712 (require rmail-mime-feature) |
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
713 (error |
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
714 (message "Feature `%s' not provided" rmail-mime-feature) |
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
715 (sit-for 1) |
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
716 (setq rmail-enable-mime nil))))) |
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
717 |
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
718 |
270 | 719 ;;;###autoload |
720 (defun rmail (&optional file-name-arg) | |
721 "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
|
722 Moves messages into file named by `rmail-file-name' (a babyl format file) |
270 | 723 and edits that file in RMAIL Mode. |
724 Type \\[describe-mode] once editing that file, for a list of RMAIL commands. | |
725 | |
5274
89b71a85be3e
(rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents:
5192
diff
changeset
|
726 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
|
727 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
|
728 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
|
729 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
|
730 |
4c88569aaa73
(rmail-display-summary): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8383
diff
changeset
|
731 If `rmail-display-summary' is non-nil, make a summary for this RMAIL file." |
270 | 732 (interactive (if current-prefix-arg |
13818
0d1de22afac0
(rmail): Allow nonexistent file as arg.
Richard M. Stallman <rms@gnu.org>
parents:
13808
diff
changeset
|
733 (list (read-file-name "Run rmail on RMAIL file: ")))) |
37787
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
734 (rmail-require-mime-maybe) |
270 | 735 (let* ((file-name (expand-file-name (or file-name-arg rmail-file-name))) |
43087
0a5935fb4e9e
(rmail): Use find-buffer-visiting instead of
Eli Zaretskii <eliz@gnu.org>
parents:
43066
diff
changeset
|
736 ;; Use find-buffer-visiting, not get-file-buffer, for those users |
0a5935fb4e9e
(rmail): Use find-buffer-visiting instead of
Eli Zaretskii <eliz@gnu.org>
parents:
43066
diff
changeset
|
737 ;; who have find-file-visit-truename set to t. |
0a5935fb4e9e
(rmail): Use find-buffer-visiting instead of
Eli Zaretskii <eliz@gnu.org>
parents:
43066
diff
changeset
|
738 (existed (find-buffer-visiting file-name)) |
39298
2b67bb3275f8
(top-level): Require mule-utils when compiling.
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
739 ;; This binding is necessary because we must decide if we |
20947
a66eb4a41765
(rmail-decode-babyl-format): Message modified.
Kenichi Handa <handa@m17n.org>
parents:
20943
diff
changeset
|
740 ;; need code conversion while the buffer is unibyte |
a66eb4a41765
(rmail-decode-babyl-format): Message modified.
Kenichi Handa <handa@m17n.org>
parents:
20943
diff
changeset
|
741 ;; (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
|
742 (rmail-enable-multibyte |
45144
30db00c75dbf
(rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents:
44141
diff
changeset
|
743 (if existed |
22724
6a6568360d51
(rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents:
22610
diff
changeset
|
744 (with-current-buffer existed enable-multibyte-characters) |
6a6568360d51
(rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents:
22610
diff
changeset
|
745 (default-value 'enable-multibyte-characters))) |
20943
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
746 ;; Since the file may contain messages of different encodings |
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
747 ;; 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
|
748 ;; 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
|
749 ;; 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
|
750 ;; rmail-decode-babyl-format or |
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
751 ;; rmail-convert-to-babyl-format. |
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
752 (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
|
753 run-mail-hook msg-shown) |
270 | 754 ;; Like find-file, but in the case where a buffer existed |
755 ;; 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
|
756 ;; 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
|
757 ;; 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
|
758 ;; sets it locally to nil. |
71eacf46567c
(rmail): Don't bind enable-local-variables.
Richard M. Stallman <rms@gnu.org>
parents:
21669
diff
changeset
|
759 ;; (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
|
760 ;; buffer-local bindings.) |
270 | 761 (if (and existed (not (verify-visited-file-modtime existed))) |
762 (progn | |
21705
71eacf46567c
(rmail): Don't bind enable-local-variables.
Richard M. Stallman <rms@gnu.org>
parents:
21669
diff
changeset
|
763 (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
|
764 (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
|
765 (eq major-mode 'rmail-mode)) |
270 | 766 (progn (rmail-forget-messages) |
767 (rmail-set-message-counters)))) | |
45144
30db00c75dbf
(rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents:
44141
diff
changeset
|
768 (switch-to-buffer |
22474
927f6e2f680b
(rmail-variables): Locally bind
Richard M. Stallman <rms@gnu.org>
parents:
22435
diff
changeset
|
769 (let ((enable-local-variables nil)) |
927f6e2f680b
(rmail-variables): Locally bind
Richard M. Stallman <rms@gnu.org>
parents:
22435
diff
changeset
|
770 (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
|
771 (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
|
772 (error "Exit Rmail Edit mode before getting new mail")) |
270 | 773 (if (and existed (> (buffer-size) 0)) |
774 ;; Buffer not new and not empty; ensure in proper mode, but that's all. | |
775 (or (eq major-mode 'rmail-mode) | |
16431
65d3768ccb05
(rmail): Run rmail-mail-hook last.
Richard M. Stallman <rms@gnu.org>
parents:
16349
diff
changeset
|
776 (progn (rmail-mode-2) |
65d3768ccb05
(rmail): Run rmail-mail-hook last.
Richard M. Stallman <rms@gnu.org>
parents:
16349
diff
changeset
|
777 (setq run-mail-hook t))) |
65d3768ccb05
(rmail): Run rmail-mail-hook last.
Richard M. Stallman <rms@gnu.org>
parents:
16349
diff
changeset
|
778 (setq run-mail-hook t) |
270 | 779 (rmail-mode-2) |
780 ;; Convert all or part to Babyl file if possible. | |
781 (rmail-convert-file) | |
22374
aaa851980d1e
(rmail): Prevent find-file from calling
Richard M. Stallman <rms@gnu.org>
parents:
22351
diff
changeset
|
782 (goto-char (point-max))) |
22498
b7643337d0c3
(rmail): Make the buffer multibyte
Richard M. Stallman <rms@gnu.org>
parents:
22474
diff
changeset
|
783 ;; 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
|
784 ;; unibyte. We must make it multibyte if necessary. |
b7643337d0c3
(rmail): Make the buffer multibyte
Richard M. Stallman <rms@gnu.org>
parents:
22474
diff
changeset
|
785 (if (and rmail-enable-multibyte |
b7643337d0c3
(rmail): Make the buffer multibyte
Richard M. Stallman <rms@gnu.org>
parents:
22474
diff
changeset
|
786 (not enable-multibyte-characters)) |
b7643337d0c3
(rmail): Make the buffer multibyte
Richard M. Stallman <rms@gnu.org>
parents:
22474
diff
changeset
|
787 (set-buffer-multibyte t)) |
22435
98b909125b87
(rmail-toggle-header): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
22374
diff
changeset
|
788 ;; 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
|
789 (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
|
790 (unwind-protect |
22374
aaa851980d1e
(rmail): Prevent find-file from calling
Richard M. Stallman <rms@gnu.org>
parents:
22351
diff
changeset
|
791 (unless (and (not file-name-arg) |
aaa851980d1e
(rmail): Prevent find-file from calling
Richard M. Stallman <rms@gnu.org>
parents:
22351
diff
changeset
|
792 (rmail-get-new-mail)) |
aaa851980d1e
(rmail): Prevent find-file from calling
Richard M. Stallman <rms@gnu.org>
parents:
22351
diff
changeset
|
793 (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
|
794 (progn |
910d4cdbf81f
(rmail): Unwind-protect call to rmail-get-new-mail.
Karl Heuer <kwzh@gnu.org>
parents:
20399
diff
changeset
|
795 (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
|
796 (rmail-construct-io-menu) |
910d4cdbf81f
(rmail): Unwind-protect call to rmail-get-new-mail.
Karl Heuer <kwzh@gnu.org>
parents:
20399
diff
changeset
|
797 (if run-mail-hook |
910d4cdbf81f
(rmail): Unwind-protect call to rmail-get-new-mail.
Karl Heuer <kwzh@gnu.org>
parents:
20399
diff
changeset
|
798 (run-hooks 'rmail-mode-hook)))))) |
270 | 799 |
800 ;; Given the value of MAILPATH, return a list of inbox file names. | |
801 ;; This is turned off because it is not clear that the user wants | |
802 ;; all these inboxes to feed into the primary rmail file. | |
803 ; (defun rmail-convert-mailpath (string) | |
804 ; (let (idx list) | |
805 ; (while (setq idx (string-match "[%:]" string)) | |
806 ; (let ((this (substring string 0 idx))) | |
807 ; (setq string (substring string (1+ idx))) | |
808 ; (setq list (cons (if (string-match "%" this) | |
809 ; (substring this 0 (string-match "%" this)) | |
810 ; this) | |
811 ; list)))) | |
812 ; list)) | |
813 | |
814 ; I have checked that adding "-*- rmail -*-" to the BABYL OPTIONS line | |
815 ; will not cause emacs 18.55 problems. | |
816 | |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
817 ;; 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
|
818 |
270 | 819 (defun rmail-convert-file () |
820 (let (convert) | |
821 (widen) | |
822 (goto-char (point-min)) | |
823 ;; If file doesn't start like a Babyl file, | |
824 ;; convert it to one, by adding a header and converting each message. | |
825 (cond ((looking-at "BABYL OPTIONS:")) | |
826 ((looking-at "Version: 5\n") | |
827 ;; Losing babyl file made by old version of Rmail. | |
828 ;; Just fix the babyl file header; don't make a new one, | |
829 ;; so we don't lose the Labels: file attribute, etc. | |
830 (let ((buffer-read-only nil)) | |
831 (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
|
832 ((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
|
833 ;; 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
|
834 (rmail-insert-rmail-file-header)) |
270 | 835 (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
|
836 ;; Non-empty file in non-RMAIL format. Add header and convert. |
270 | 837 (setq convert t) |
838 (rmail-insert-rmail-file-header))) | |
839 ;; If file was not a Babyl file or if there are | |
840 ;; Unix format messages added at the end, | |
841 ;; convert file as necessary. | |
842 (if (or convert | |
4673
047e8f8469d9
(rmail-convert-file): Exclude the Babyl header
Richard M. Stallman <rms@gnu.org>
parents:
4579
diff
changeset
|
843 (save-excursion |
047e8f8469d9
(rmail-convert-file): Exclude the Babyl header
Richard M. Stallman <rms@gnu.org>
parents:
4579
diff
changeset
|
844 (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
|
845 (search-backward "\n\^_") |
40a12a81cc06
(rmail-convert-file): Look back for ^_ only at bol.
Richard M. Stallman <rms@gnu.org>
parents:
12727
diff
changeset
|
846 (forward-char 2) |
4673
047e8f8469d9
(rmail-convert-file): Exclude the Babyl header
Richard M. Stallman <rms@gnu.org>
parents:
4579
diff
changeset
|
847 (looking-at "\n*From "))) |
270 | 848 (let ((buffer-read-only nil)) |
849 (message "Converting to Babyl format...") | |
4673
047e8f8469d9
(rmail-convert-file): Exclude the Babyl header
Richard M. Stallman <rms@gnu.org>
parents:
4579
diff
changeset
|
850 ;; 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
|
851 ;; except for the BABYL header. |
047e8f8469d9
(rmail-convert-file): Exclude the Babyl header
Richard M. Stallman <rms@gnu.org>
parents:
4579
diff
changeset
|
852 ;; (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
|
853 (goto-char (point-min)) |
047e8f8469d9
(rmail-convert-file): Exclude the Babyl header
Richard M. Stallman <rms@gnu.org>
parents:
4579
diff
changeset
|
854 (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
|
855 (narrow-to-region (point) (point-max)) |
270 | 856 (rmail-convert-to-babyl-format) |
20943
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
857 (message "Converting to Babyl format...done")) |
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
858 (if (and (not rmail-enable-mime) |
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
859 rmail-enable-multibyte) |
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
860 ;; We still have to decode BABYL part. |
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
861 (rmail-decode-babyl-format))))) |
270 | 862 |
863 (defun rmail-insert-rmail-file-header () | |
864 (let ((buffer-read-only nil)) | |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
865 ;; -*-rmail-*- is here so that visiting the file normally |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
866 ;; recognizes it as an Rmail file. |
270 | 867 (insert "BABYL OPTIONS: -*- rmail -*- |
868 Version: 5 | |
869 Labels: | |
870 Note: This is the header of an rmail file. | |
871 Note: If you are seeing it in rmail, | |
872 Note: it means the file has no messages in it.\n\^_"))) | |
873 | |
46129 | 874 ;; Decode Babyl formatted part at the head of current buffer by |
20943
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
875 ;; 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
|
876 |
f8584d52dd48
(rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents:
17065
diff
changeset
|
877 (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
|
878 (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
|
879 (buffer-read-only nil) |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
880 (coding-system rmail-file-coding-system) |
20943
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
881 from to) |
17093
f8584d52dd48
(rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents:
17065
diff
changeset
|
882 (goto-char (point-min)) |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
883 (search-forward "\n\^_" nil t) ; Skip BABYL header. |
20943
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
884 (setq from (point)) |
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
885 (goto-char (point-max)) |
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
886 (search-backward "\n\^_" from 'mv) |
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
887 (setq to (point)) |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
888 (unless (and coding-system |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
889 (coding-system-p coding-system)) |
39298
2b67bb3275f8
(top-level): Require mule-utils when compiling.
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
890 (setq coding-system |
2b67bb3275f8
(top-level): Require mule-utils when compiling.
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
891 ;; Emacs 21.1 and later writes RMAIL files in emacs-mule, but |
2b67bb3275f8
(top-level): Require mule-utils when compiling.
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
892 ;; earlier versions did that with the current buffer's encoding. |
2b67bb3275f8
(top-level): Require mule-utils when compiling.
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
893 ;; So we want to favor detection of emacs-mule (whose normal |
2b67bb3275f8
(top-level): Require mule-utils when compiling.
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
894 ;; priority is quite low), but still allow detection of other |
2b67bb3275f8
(top-level): Require mule-utils when compiling.
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
895 ;; encodings if emacs-mule won't fit. The call to |
2b67bb3275f8
(top-level): Require mule-utils when compiling.
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
896 ;; detect-coding-with-priority below achieves that. |
2b67bb3275f8
(top-level): Require mule-utils when compiling.
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
897 (car (detect-coding-with-priority |
2b67bb3275f8
(top-level): Require mule-utils when compiling.
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
898 from to |
2b67bb3275f8
(top-level): Require mule-utils when compiling.
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
899 '((coding-category-emacs-mule . emacs-mule)))))) |
23293
34dc05f50ea3
(rmail-decode-babyl-format): Recognize both
Karl Heuer <kwzh@gnu.org>
parents:
23266
diff
changeset
|
900 (unless (memq coding-system |
34dc05f50ea3
(rmail-decode-babyl-format): Recognize both
Karl Heuer <kwzh@gnu.org>
parents:
23266
diff
changeset
|
901 '(undecided undecided-unix)) |
24584
244e710f3134
(rmail-decode-babyl-format): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
24562
diff
changeset
|
902 (set-buffer-modified-p t) ; avoid locking when decoding |
42659
9522b2780ef1
(rmail-decode-babyl-format): Disable undo around the decode-coding-region call.
Richard M. Stallman <rms@gnu.org>
parents:
41999
diff
changeset
|
903 (let ((buffer-undo-list t)) |
9522b2780ef1
(rmail-decode-babyl-format): Disable undo around the decode-coding-region call.
Richard M. Stallman <rms@gnu.org>
parents:
41999
diff
changeset
|
904 (decode-coding-region from to coding-system)) |
24584
244e710f3134
(rmail-decode-babyl-format): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
24562
diff
changeset
|
905 (setq coding-system last-coding-system-used)) |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
906 (set-buffer-modified-p modifiedp) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
907 (setq buffer-file-coding-system nil) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
908 (setq save-buffer-coding-system |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
909 (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
|
910 |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
911 (defvar rmail-mode-map nil) |
270 | 912 (if rmail-mode-map |
913 nil | |
914 (setq rmail-mode-map (make-keymap)) | |
915 (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
|
916 (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
|
917 (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
|
918 (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
|
919 (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
|
920 (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
|
921 (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
|
922 (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
|
923 (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
|
924 (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
|
925 (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
|
926 (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
|
927 (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
|
928 (define-key rmail-mode-map "l" 'rmail-summary-by-labels) |
270 | 929 (define-key rmail-mode-map "\e\C-h" 'rmail-summary) |
930 (define-key rmail-mode-map "\e\C-l" 'rmail-summary-by-labels) | |
931 (define-key rmail-mode-map "\e\C-r" 'rmail-summary-by-recipients) | |
932 (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
|
933 (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
|
934 (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
|
935 (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
|
936 (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
|
937 (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
|
938 (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
|
939 (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
|
940 (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
|
941 (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
|
942 (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
|
943 (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
|
944 (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
|
945 (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
|
946 ;; 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
|
947 ;; (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
|
948 (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
|
949 (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
|
950 (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
|
951 (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
|
952 (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
|
953 (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
|
954 (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
|
955 (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
|
956 (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
|
957 (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
|
958 (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
|
959 (define-key rmail-mode-map "?" 'describe-mode) |
3877
da9b565f9878
Add autoloads for rmailsort commands.
Richard M. Stallman <rms@gnu.org>
parents:
3864
diff
changeset
|
960 (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
|
961 (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
|
962 (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
|
963 (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
|
964 (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
|
965 (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
|
966 (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
|
967 (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
|
968 (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
|
969 ) |
3863
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
970 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
971 (define-key rmail-mode-map [menu-bar] (make-sparse-keymap)) |
270 | 972 |
3863
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
973 (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
|
974 (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
|
975 |
6483
373e377d79f7
(rmail-secondary-file-menu): Display relative file names.
Richard M. Stallman <rms@gnu.org>
parents:
6408
diff
changeset
|
976 (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
|
977 nil) |
6483
373e377d79f7
(rmail-secondary-file-menu): Display relative file names.
Richard M. Stallman <rms@gnu.org>
parents:
6408
diff
changeset
|
978 |
373e377d79f7
(rmail-secondary-file-menu): Display relative file names.
Richard M. Stallman <rms@gnu.org>
parents:
6408
diff
changeset
|
979 (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
|
980 nil) |
6483
373e377d79f7
(rmail-secondary-file-menu): Display relative file names.
Richard M. Stallman <rms@gnu.org>
parents:
6408
diff
changeset
|
981 |
17306
09aeacdc6fc2
(rmail-mode-map): Add menu item for
Richard M. Stallman <rms@gnu.org>
parents:
17237
diff
changeset
|
982 (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
|
983 '("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
|
984 |
3863
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
985 (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
|
986 '("Output (inbox)..." . rmail-output)) |
3863
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
987 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
988 (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
|
989 '("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
|
990 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
991 (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
|
992 '("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
|
993 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
994 (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
|
995 '("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
|
996 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
997 (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
|
998 (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
|
999 |
12447
240de864f06c
(rmail-find-all-files): Bind case-fold-search.
Richard M. Stallman <rms@gnu.org>
parents:
12377
diff
changeset
|
1000 (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
|
1001 '("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
|
1002 |
3863
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1003 (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
|
1004 '("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
|
1005 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1006 (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
|
1007 '("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
|
1008 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1009 (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
|
1010 '("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
|
1011 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1012 (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
|
1013 '("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
|
1014 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1015 (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
|
1016 '("All" . rmail-summary)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1017 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1018 (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
|
1019 (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
|
1020 |
8420
988800dcb009
(rmail-mode-map): Fix the Get New Mail entry.
Richard M. Stallman <rms@gnu.org>
parents:
8399
diff
changeset
|
1021 (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
|
1022 '("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
|
1023 |
5d9da948dc9f
(rmail-mode-map): Add "Get New Mail" menu item under Mail.
Richard M. Stallman <rms@gnu.org>
parents:
8094
diff
changeset
|
1024 (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
|
1025 '("----")) |
8219
5d9da948dc9f
(rmail-mode-map): Add "Get New Mail" menu item under Mail.
Richard M. Stallman <rms@gnu.org>
parents:
8094
diff
changeset
|
1026 |
5d9da948dc9f
(rmail-mode-map): Add "Get New Mail" menu item under Mail.
Richard M. Stallman <rms@gnu.org>
parents:
8094
diff
changeset
|
1027 (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
|
1028 '("Continue" . rmail-continue)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1029 |
8393
4d3ae3aff631
(rmail-mode-map): Move new Re-send menu item to right place.
Richard M. Stallman <rms@gnu.org>
parents:
8384
diff
changeset
|
1030 (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
|
1031 '("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
|
1032 |
3863
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1033 (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
|
1034 '("Forward" . rmail-forward)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1035 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1036 (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
|
1037 '("Retry" . rmail-retry-failure)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1038 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1039 (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
|
1040 '("Reply" . rmail-reply)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1041 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1042 (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
|
1043 '("Mail" . rmail-mail)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1044 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1045 (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
|
1046 (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
|
1047 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1048 (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
|
1049 '("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
|
1050 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1051 (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
|
1052 '("Expunge" . rmail-expunge)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1053 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1054 (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
|
1055 '("Undelete" . rmail-undelete-previous-message)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1056 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1057 (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
|
1058 '("Delete" . rmail-delete-forward)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1059 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1060 (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
|
1061 (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
|
1062 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1063 (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
|
1064 '("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
|
1065 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1066 (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
|
1067 '("Search..." . rmail-search)) |
3863
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1068 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1069 (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
|
1070 '("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
|
1071 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1072 (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
|
1073 '("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
|
1074 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1075 (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
|
1076 '("Last" . rmail-last-message)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1077 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1078 (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
|
1079 '("First" . rmail-first-message)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1080 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1081 (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
|
1082 '("Previous" . rmail-previous-message)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1083 |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1084 (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
|
1085 '("Next" . rmail-next-message)) |
049283382a10
(rmail-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents:
3631
diff
changeset
|
1086 |
270 | 1087 ;; Rmail mode is suitable only for specially formatted data. |
1088 (put 'rmail-mode 'mode-class 'special) | |
1089 | |
8963
286aacffb920
(rmail-mode-kill-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8909
diff
changeset
|
1090 (defun rmail-mode-kill-summary () |
286aacffb920
(rmail-mode-kill-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8909
diff
changeset
|
1091 (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
|
1092 |
1382
9b210c7d6c23
* rmail.el (rmail-mode): Make this autoload; we might find a file
Jim Blandy <jimb@redhat.com>
parents:
1372
diff
changeset
|
1093 ;;;###autoload |
270 | 1094 (defun rmail-mode () |
1095 "Rmail Mode is used by \\<rmail-mode-map>\\[rmail] for editing Rmail files. | |
1096 All normal editing commands are turned off. | |
1097 Instead, these commands are available: | |
1098 | |
1099 \\[rmail-beginning-of-message] Move point to front of this message (same as \\[beginning-of-buffer]). | |
1100 \\[scroll-up] Scroll to next screen of this message. | |
1101 \\[scroll-down] Scroll to previous screen of this message. | |
1102 \\[rmail-next-undeleted-message] Move to Next non-deleted message. | |
1103 \\[rmail-previous-undeleted-message] Move to Previous non-deleted message. | |
1104 \\[rmail-next-message] Move to Next message whether deleted or not. | |
1105 \\[rmail-previous-message] Move to Previous message whether deleted or not. | |
1106 \\[rmail-first-message] Move to the first message in Rmail file. | |
1107 \\[rmail-last-message] Move to the last message in Rmail file. | |
1108 \\[rmail-show-message] Jump to message specified by numeric position in file. | |
1109 \\[rmail-search] Search for string and show message it is found in. | |
1110 \\[rmail-delete-forward] Delete this message, move to next nondeleted. | |
1111 \\[rmail-delete-backward] Delete this message, move to previous nondeleted. | |
1112 \\[rmail-undelete-previous-message] Undelete message. Tries current message, then earlier messages | |
1113 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
|
1114 \\[rmail-edit-current-message] Edit the current message. \\[rmail-cease-edit] to return to Rmail. |
270 | 1115 \\[rmail-expunge] Expunge deleted messages. |
1116 \\[rmail-expunge-and-save] Expunge and save the file. | |
1117 \\[rmail-quit] Quit Rmail: expunge, save, then switch to another buffer. | |
1118 \\[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
|
1119 \\[rmail-get-new-mail] Move new mail from system spool directory into this file. |
270 | 1120 \\[rmail-mail] Mail a message (same as \\[mail-other-window]). |
1121 \\[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
|
1122 \\[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
|
1123 \\[rmail-retry-failure] Send this message again. Used on a mailer failure message. |
270 | 1124 \\[rmail-forward] Forward this message to another user. |
1125 \\[rmail-output-to-rmail-file] Output this message to an Rmail file (append it). | |
1126 \\[rmail-output] Output this message to a Unix-format mail file (append it). | |
21405 | 1127 \\[rmail-output-body-to-file] Save message body to a file. Default filename comes from Subject line. |
270 | 1128 \\[rmail-input] Input Rmail file. Run Rmail on that file. |
1129 \\[rmail-add-label] Add label to message. It will be displayed in the mode line. | |
1130 \\[rmail-kill-label] Kill label. Remove a label from current message. | |
1131 \\[rmail-next-labeled-message] Move to Next message with specified label | |
1132 (label defaults to last one specified). | |
1133 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
|
1134 Any other label is present only if you add it with \\[rmail-add-label]. |
270 | 1135 \\[rmail-previous-labeled-message] Move to Previous message with specified label |
1136 \\[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
|
1137 \\[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
|
1138 \\[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
|
1139 \\[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
|
1140 \\[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
|
1141 \\[rmail-toggle-header] Toggle display of complete header." |
270 | 1142 (interactive) |
37787
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
1143 (let ((finding-rmail-file (not (eq major-mode 'rmail-mode)))) |
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
1144 (rmail-mode-2) |
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
1145 (when (and finding-rmail-file |
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
1146 (null coding-system-for-read) |
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
1147 default-enable-multibyte-characters) |
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
1148 (let ((rmail-enable-multibyte t)) |
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
1149 (rmail-require-mime-maybe) |
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
1150 (rmail-convert-file) |
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
1151 (goto-char (point-max)) |
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
1152 (set-buffer-multibyte t))) |
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
1153 (rmail-set-message-counters) |
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
1154 (rmail-show-message rmail-total-messages) |
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
1155 (when finding-rmail-file |
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
1156 (when rmail-display-summary |
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
1157 (rmail-summary)) |
2022cee16ea5
(rmail-require-mime-maybe): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37611
diff
changeset
|
1158 (rmail-construct-io-menu)) |
62762
e73a53eb777e
(rmail-mode): Use run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
62587
diff
changeset
|
1159 (run-mode-hooks 'rmail-mode-hook))) |
270 | 1160 |
1161 (defun rmail-mode-2 () | |
1162 (kill-all-local-variables) | |
1163 (rmail-mode-1) | |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
1164 (rmail-perm-variables) |
16431
65d3768ccb05
(rmail): Run rmail-mail-hook last.
Richard M. Stallman <rms@gnu.org>
parents:
16349
diff
changeset
|
1165 (rmail-variables)) |
270 | 1166 |
1167 (defun rmail-mode-1 () | |
1168 (setq major-mode 'rmail-mode) | |
1169 (setq mode-name "RMAIL") | |
1170 (setq buffer-read-only t) | |
5330 | 1171 ;; No need to auto save RMAIL files in normal circumstances |
1172 ;; because they contain no info except attribute changes | |
1173 ;; and deletion of messages. | |
1174 ;; The one exception is when messages are copied into an Rmail mode buffer. | |
1175 ;; rmail-output-to-rmail-file enables auto save when you do that. | |
270 | 1176 (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
|
1177 (setq mode-line-modified "--") |
270 | 1178 (use-local-map rmail-mode-map) |
1179 (set-syntax-table text-mode-syntax-table) | |
1180 (setq local-abbrev-table text-mode-abbrev-table)) | |
1181 | |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
1182 ;; 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
|
1183 (defun rmail-perm-variables () |
270 | 1184 (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
|
1185 (make-local-variable 'rmail-last-regexp) |
270 | 1186 (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
|
1187 (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
|
1188 (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
|
1189 (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
|
1190 (setq rmail-view-buffer rmail-buffer) |
270 | 1191 (make-local-variable 'rmail-summary-buffer) |
1192 (make-local-variable 'rmail-summary-vector) | |
1193 (make-local-variable 'rmail-current-message) | |
1194 (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
|
1195 (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
|
1196 (setq rmail-overlay-list nil) |
270 | 1197 (make-local-variable 'rmail-message-vector) |
17620
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
1198 (make-local-variable 'rmail-msgref-vector) |
270 | 1199 (make-local-variable 'rmail-inbox-list) |
1200 (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
|
1201 ;; 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
|
1202 (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
|
1203 (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
|
1204 (equal buffer-file-truename |
3fb665ab94c1
(rmail-variables): Abbreviate truename for comparison.
Richard M. Stallman <rms@gnu.org>
parents:
5047
diff
changeset
|
1205 (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
|
1206 (setq rmail-inbox-list |
c14c0f2954fd
(rmail-variables): Default rmail-inbox-list here.
Richard M. Stallman <rms@gnu.org>
parents:
3484
diff
changeset
|
1207 (or rmail-primary-inbox-list |
c14c0f2954fd
(rmail-variables): Default rmail-inbox-list here.
Richard M. Stallman <rms@gnu.org>
parents:
3484
diff
changeset
|
1208 (list (or (getenv "MAIL") |
c14c0f2954fd
(rmail-variables): Default rmail-inbox-list here.
Richard M. Stallman <rms@gnu.org>
parents:
3484
diff
changeset
|
1209 (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
|
1210 (user-login-name))))))) |
270 | 1211 (make-local-variable 'rmail-keywords) |
1212 ;; 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
|
1213 (setq rmail-keywords nil)) |
270 | 1214 |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
1215 ;; 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
|
1216 (defun rmail-variables () |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1217 (make-local-variable 'save-buffer-coding-system) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1218 ;; 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
|
1219 ;; 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
|
1220 ;; because it should be determined in rmail-show-message. |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1221 (unless save-buffer-coding-system |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1222 (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
|
1223 (setq buffer-file-coding-system nil)) |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
1224 ;; 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
|
1225 (make-local-variable 'local-enable-local-variables) |
927f6e2f680b
(rmail-variables): Locally bind
Richard M. Stallman <rms@gnu.org>
parents:
22435
diff
changeset
|
1226 (setq local-enable-local-variables nil) |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
1227 (make-local-variable 'revert-buffer-function) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
1228 (setq revert-buffer-function 'rmail-revert) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
1229 (make-local-variable 'font-lock-defaults) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
1230 (setq font-lock-defaults |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1231 '(rmail-font-lock-keywords |
49064
d9fb715ab692
(rmail-font-lock-keywords): Discard code to match both cases.
Richard M. Stallman <rms@gnu.org>
parents:
49008
diff
changeset
|
1232 t t nil nil |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1233 (font-lock-maximum-size . nil) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1234 (font-lock-fontify-buffer-function . rmail-fontify-buffer-function) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1235 (font-lock-unfontify-buffer-function . rmail-unfontify-buffer-function) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1236 (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
|
1237 (make-local-variable 'require-final-newline) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
1238 (setq require-final-newline nil) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
1239 (make-local-variable 'version-control) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
1240 (setq version-control 'never) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
1241 (make-local-variable 'kill-buffer-hook) |
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
1242 (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
|
1243 (make-local-variable 'file-precious-flag) |
55152
734ea91cb677
(rmail-variables): Bind desktop-save-buffer to t.
Lars Hansen <larsh@soem.dk>
parents:
55114
diff
changeset
|
1244 (setq file-precious-flag t) |
734ea91cb677
(rmail-variables): Bind desktop-save-buffer to t.
Lars Hansen <larsh@soem.dk>
parents:
55114
diff
changeset
|
1245 (make-local-variable 'desktop-save-buffer) |
734ea91cb677
(rmail-variables): Bind desktop-save-buffer to t.
Lars Hansen <larsh@soem.dk>
parents:
55114
diff
changeset
|
1246 (setq desktop-save-buffer t)) |
21435
41fa600fadc4
(rmail-message-regexp-p): Handle messages
Karl Heuer <kwzh@gnu.org>
parents:
21405
diff
changeset
|
1247 |
270 | 1248 ;; Handle M-x revert-buffer done in an rmail-mode buffer. |
1249 (defun rmail-revert (arg noconfirm) | |
37956
b59847354241
(rmail-revert): Modify to work in
Gerd Moellmann <gerd@gnu.org>
parents:
37839
diff
changeset
|
1250 (set-buffer rmail-buffer) |
22724
6a6568360d51
(rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents:
22610
diff
changeset
|
1251 (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
|
1252 (rmail-enable-multibyte enable-multibyte-characters) |
6a6568360d51
(rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents:
22610
diff
changeset
|
1253 ;; See similar code in `rmail'. |
6a6568360d51
(rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents:
22610
diff
changeset
|
1254 (coding-system-for-read (and rmail-enable-multibyte 'raw-text))) |
270 | 1255 ;; Call our caller again, but this time it does the default thing. |
1256 (if (revert-buffer arg noconfirm) | |
1257 ;; If the user said "yes", and we changed something, | |
1258 ;; reparse the messages. | |
20681
4a46ac370fc8
(rmail): Don't bind enable-multibyte-characters;
Richard M. Stallman <rms@gnu.org>
parents:
20662
diff
changeset
|
1259 (progn |
37956
b59847354241
(rmail-revert): Modify to work in
Gerd Moellmann <gerd@gnu.org>
parents:
37839
diff
changeset
|
1260 (set-buffer rmail-buffer) |
b59847354241
(rmail-revert): Modify to work in
Gerd Moellmann <gerd@gnu.org>
parents:
37839
diff
changeset
|
1261 (rmail-mode-2) |
22724
6a6568360d51
(rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents:
22610
diff
changeset
|
1262 ;; Convert all or part to Babyl file if possible. |
270 | 1263 (rmail-convert-file) |
22724
6a6568360d51
(rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents:
22610
diff
changeset
|
1264 ;; 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
|
1265 ;; unibyte. Make it multibyte if necessary. |
6a6568360d51
(rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents:
22610
diff
changeset
|
1266 (if (and rmail-enable-multibyte |
6a6568360d51
(rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents:
22610
diff
changeset
|
1267 (not enable-multibyte-characters)) |
6a6568360d51
(rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents:
22610
diff
changeset
|
1268 (set-buffer-multibyte t)) |
270 | 1269 (goto-char (point-max)) |
22724
6a6568360d51
(rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents:
22610
diff
changeset
|
1270 (rmail-set-message-counters) |
6a6568360d51
(rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents:
22610
diff
changeset
|
1271 (rmail-show-message rmail-total-messages) |
6a6568360d51
(rmail): If existing buffer, use local
Richard M. Stallman <rms@gnu.org>
parents:
22610
diff
changeset
|
1272 (run-hooks 'rmail-mode-hook))))) |
270 | 1273 |
1274 ;; Return a list of files from this buffer's Mail: option. | |
1275 ;; Does not assume that messages have been parsed. | |
1276 ;; Just returns nil if buffer does not look like Babyl format. | |
1277 (defun rmail-parse-file-inboxes () | |
1278 (save-excursion | |
1279 (save-restriction | |
1280 (widen) | |
1281 (goto-char 1) | |
1282 (cond ((looking-at "BABYL OPTIONS:") | |
1283 (search-forward "\n\^_" nil 'move) | |
1284 (narrow-to-region 1 (point)) | |
1285 (goto-char 1) | |
1286 (if (search-forward "\nMail:" nil t) | |
1287 (progn | |
1288 (narrow-to-region (point) (progn (end-of-line) (point))) | |
1289 (goto-char (point-min)) | |
1290 (mail-parse-comma-list)))))))) | |
1291 | |
1292 (defun rmail-expunge-and-save () | |
1293 "Expunge and save RMAIL file." | |
1294 (interactive) | |
1295 (rmail-expunge) | |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
1296 (set-buffer rmail-buffer) |
5860
ba1ff614b8f2
(rmail-expunge-and-save): Mark summary buffer as unmodified.
Karl Heuer <kwzh@gnu.org>
parents:
5850
diff
changeset
|
1297 (save-buffer) |
ba1ff614b8f2
(rmail-expunge-and-save): Mark summary buffer as unmodified.
Karl Heuer <kwzh@gnu.org>
parents:
5850
diff
changeset
|
1298 (if (rmail-summary-exists) |
ba1ff614b8f2
(rmail-expunge-and-save): Mark summary buffer as unmodified.
Karl Heuer <kwzh@gnu.org>
parents:
5850
diff
changeset
|
1299 (rmail-select-summary (set-buffer-modified-p nil)))) |
270 | 1300 |
1301 (defun rmail-quit () | |
24110
ec89235ef2a6
(rmail-quit): run `rmail-quit-hook'.
Richard M. Stallman <rms@gnu.org>
parents:
23969
diff
changeset
|
1302 "Quit out of RMAIL. |
ec89235ef2a6
(rmail-quit): run `rmail-quit-hook'.
Richard M. Stallman <rms@gnu.org>
parents:
23969
diff
changeset
|
1303 Hook `rmail-quit-hook' is run after expunging." |
270 | 1304 (interactive) |
1305 (rmail-expunge-and-save) | |
24110
ec89235ef2a6
(rmail-quit): run `rmail-quit-hook'.
Richard M. Stallman <rms@gnu.org>
parents:
23969
diff
changeset
|
1306 (when (boundp 'rmail-quit-hook) |
ec89235ef2a6
(rmail-quit): run `rmail-quit-hook'.
Richard M. Stallman <rms@gnu.org>
parents:
23969
diff
changeset
|
1307 (run-hooks 'rmail-quit-hook)) |
270 | 1308 ;; 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
|
1309 (when rmail-summary-buffer |
79e564f91938
(rmail-next-same-subject): Ignore leading and
Richard M. Stallman <rms@gnu.org>
parents:
20984
diff
changeset
|
1310 (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
|
1311 (bury-buffer rmail-summary-buffer)) |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
1312 (if rmail-enable-mime |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
1313 (let ((obuf rmail-buffer) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
1314 (ovbuf rmail-view-buffer)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
1315 (set-buffer rmail-view-buffer) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
1316 (quit-window) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
1317 (replace-buffer-in-windows ovbuf) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
1318 (replace-buffer-in-windows obuf) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
1319 (bury-buffer obuf)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
1320 (let ((obuf (current-buffer))) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
1321 (quit-window) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
1322 (replace-buffer-in-windows obuf)))) |
270 | 1323 |
10970
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1324 (defun rmail-bury () |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1325 "Bury current Rmail buffer and its summary buffer." |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1326 (interactive) |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1327 ;; 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
|
1328 ;; 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
|
1329 (let ((buffer-to-bury (current-buffer))) |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1330 (if (rmail-summary-exists) |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1331 (let (window) |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1332 (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
|
1333 (quit-window nil window)) |
10970
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1334 (bury-buffer rmail-summary-buffer))) |
21100
79e564f91938
(rmail-next-same-subject): Ignore leading and
Richard M. Stallman <rms@gnu.org>
parents:
20984
diff
changeset
|
1335 (quit-window))) |
10970
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1336 |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1337 (defun rmail-duplicate-message () |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1338 "Create a duplicated copy of the current message. |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1339 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
|
1340 original copy." |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1341 (interactive) |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1342 (widen) |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1343 (let ((buffer-read-only nil) |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1344 (number rmail-current-message) |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1345 (string (buffer-substring (rmail-msgbeg rmail-current-message) |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1346 (rmail-msgend rmail-current-message)))) |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1347 (goto-char (rmail-msgend rmail-current-message)) |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1348 (insert string) |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1349 (rmail-forget-messages) |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1350 (rmail-show-message number) |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1351 (message "Message duplicated"))) |
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
1352 |
270 | 1353 ;;;###autoload |
1354 (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
|
1355 "Run Rmail on file FILENAME." |
270 | 1356 (interactive "FRun rmail on RMAIL file: ") |
1357 (rmail filename)) | |
1358 | |
16241
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
1359 |
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
1360 ;; 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
|
1361 ;; 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
|
1362 ;; 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
|
1363 ;; 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
|
1364 (defun rmail-find-all-files (start) |
16241
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
1365 "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
|
1366 (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
|
1367 ;; Don't sort here. |
16241
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
1368 (let* ((case-fold-search t) |
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
1369 (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
|
1370 ;; 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
|
1371 ;; 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
|
1372 (sort files 'string<)))) |
7321
f8ee542dbe80
(rmail-input-menu): Don't call expand-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1373 |
8909
d9c10eb46ce9
Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
parents:
8875
diff
changeset
|
1374 (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
|
1375 (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
|
1376 (mapcar |
d9c10eb46ce9
Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
parents:
8875
diff
changeset
|
1377 (function (lambda (item) |
10971
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1378 (let (command) |
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1379 (if (consp item) |
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1380 (progn |
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1381 (setq command |
45144
30db00c75dbf
(rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents:
44141
diff
changeset
|
1382 (rmail-list-to-menu (car item) (cdr item) |
30db00c75dbf
(rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents:
44141
diff
changeset
|
1383 action |
10971
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1384 (if full-name |
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1385 (concat full-name "/" |
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1386 (car item)) |
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1387 (car item)))) |
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1388 (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
|
1389 (progn |
10971
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1390 (setq name item) |
45144
30db00c75dbf
(rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents:
44141
diff
changeset
|
1391 (setq command |
10971
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1392 (list 'lambda () '(interactive) |
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1393 (list action |
45144
30db00c75dbf
(rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents:
44141
diff
changeset
|
1394 (expand-file-name |
10971
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1395 (if full-name |
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1396 (concat full-name "/" item) |
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1397 item) |
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1398 rmail-secondary-file-directory)))))) |
d7f0852f800f
(rmail-list-to-menu): Bind `command' with let.
Richard M. Stallman <rms@gnu.org>
parents:
10970
diff
changeset
|
1399 (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
|
1400 (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
|
1401 (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
|
1402 menu)) |
45144
30db00c75dbf
(rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents:
44141
diff
changeset
|
1403 |
9449
d11a719d7bde
(rmail-find-all-files): Fix several errors and make faster.
Richard M. Stallman <rms@gnu.org>
parents:
9431
diff
changeset
|
1404 ;; 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
|
1405 (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
|
1406 |
8909
d9c10eb46ce9
Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
parents:
8875
diff
changeset
|
1407 (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
|
1408 (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
|
1409 (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
|
1410 (progn |
d9c10eb46ce9
Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
parents:
8875
diff
changeset
|
1411 (define-key rmail-mode-map [menu-bar classify input-menu] |
45144
30db00c75dbf
(rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents:
44141
diff
changeset
|
1412 (cons "Input Rmail File" |
30db00c75dbf
(rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents:
44141
diff
changeset
|
1413 (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
|
1414 files |
8909
d9c10eb46ce9
Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
parents:
8875
diff
changeset
|
1415 'rmail-input))) |
d9c10eb46ce9
Build proper keymap for the "Input (menu)" and "Output (menu)" submenus:
Richard M. Stallman <rms@gnu.org>
parents:
8875
diff
changeset
|
1416 (define-key rmail-mode-map [menu-bar classify output-menu] |
45144
30db00c75dbf
(rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents:
44141
diff
changeset
|
1417 (cons "Output Rmail File" |
30db00c75dbf
(rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents:
44141
diff
changeset
|
1418 (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
|
1419 files |
d11a719d7bde
(rmail-find-all-files): Fix several errors and make faster.
Richard M. Stallman <rms@gnu.org>
parents:
9431
diff
changeset
|
1420 '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
|
1421 |
d11a719d7bde
(rmail-find-all-files): Fix several errors and make faster.
Richard M. Stallman <rms@gnu.org>
parents:
9431
diff
changeset
|
1422 (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
|
1423 '("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
|
1424 (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
|
1425 '("Output Rmail File" . rmail-disable-menu))))) |
6408
185b1fd3a525
(rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6389
diff
changeset
|
1426 |
270 | 1427 |
1428 ;;;; *** Rmail input *** | |
1429 | |
1430 ;; RLK feature not added in this version: | |
1431 ;; argument specifies inbox file or files in various ways. | |
1432 | |
1433 (defun rmail-get-new-mail (&optional file-name) | |
1434 "Move any new mail from this RMAIL file's inbox files. | |
1435 The inbox files can be specified with the file's Mail: option. The | |
1436 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
|
1437 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
|
1438 your /usr/spool/mail/$USER. |
270 | 1439 |
1440 You can also specify the file to get new mail from. In this case, the | |
1441 file of new mail is not changed or deleted. Noninteractively, you can | |
1442 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
|
1443 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
|
1444 |
16908
fd99785417a5
(rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16772
diff
changeset
|
1445 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
|
1446 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
|
1447 |
10103
efb97e6ec979
(rmail-get-new-mail): Position on first unseen message.
Richard M. Stallman <rms@gnu.org>
parents:
9633
diff
changeset
|
1448 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
|
1449 It returns t if it got any new messages." |
270 | 1450 (interactive |
1451 (list (if current-prefix-arg | |
1452 (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
|
1453 (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
|
1454 ;; 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
|
1455 ;; revert to it before we get new mail. |
270 | 1456 (or (verify-visited-file-modtime (current-buffer)) |
11533
2d1e996c4359
(rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents:
11497
diff
changeset
|
1457 (find-file (buffer-file-name))) |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
1458 (set-buffer rmail-buffer) |
270 | 1459 (rmail-maybe-set-message-counters) |
1460 (widen) | |
1461 ;; Get rid of all undo records for this buffer. | |
1462 (or (eq buffer-undo-list t) | |
1463 (setq buffer-undo-list nil)) | |
16241
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
1464 (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
|
1465 rmail-inbox-list)) |
20943
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
1466 (rmail-enable-multibyte (default-value 'enable-multibyte-characters)) |
20053
c315820510ba
(rmail): Avoid showing message twice.
Karl Heuer <kwzh@gnu.org>
parents:
19674
diff
changeset
|
1467 found) |
16241
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
1468 (unwind-protect |
20053
c315820510ba
(rmail): Avoid showing message twice.
Karl Heuer <kwzh@gnu.org>
parents:
19674
diff
changeset
|
1469 (progn |
16928
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1470 (while all-files |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1471 (let ((opoint (point)) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1472 (new-messages 0) |
53598
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1473 (rsf-number-of-spam 0) |
16928
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1474 (delete-files ()) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1475 ;; 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
|
1476 ;; 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
|
1477 (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
|
1478 (buffer-read-only nil) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1479 ;; 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
|
1480 (buffer-undo-list t) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1481 success |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1482 ;; 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
|
1483 files |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1484 ;; 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
|
1485 file-last-names) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1486 ;; 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
|
1487 ;; 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
|
1488 ;; 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
|
1489 ;; 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
|
1490 (while (and all-files |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1491 (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
|
1492 file-last-names))) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1493 (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
|
1494 file-last-names |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1495 (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
|
1496 (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
|
1497 ;; 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
|
1498 (setq files (nreverse files)) |
16241
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
1499 |
16928
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1500 (goto-char (point-max)) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1501 (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
|
1502 (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
|
1503 (save-excursion |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1504 (save-restriction |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1505 (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
|
1506 ;; 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
|
1507 ;; renaming them as necessary, |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1508 ;; 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
|
1509 (if file-name |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1510 (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
|
1511 (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
|
1512 ;; 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
|
1513 (goto-char (point-min)) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1514 (unwind-protect |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1515 (save-excursion |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1516 (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
|
1517 success t)) |
23530
8fd3e2d95a51
(rmail-get-new-mail): Delete garbage in any case.
Richard M. Stallman <rms@gnu.org>
parents:
23378
diff
changeset
|
1518 ;; 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
|
1519 (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
|
1520 ;; 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
|
1521 ;; 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
|
1522 ;; 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
|
1523 (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
|
1524 (let ((delfiles delete-files) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1525 (count 0)) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1526 (while delfiles |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1527 (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
|
1528 (setq count (1+ count))) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1529 (rename-file (car delfiles) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1530 (format "RMAILOSE.%d" count)) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1531 (setq delfiles (cdr delfiles)))))) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1532 (or (zerop new-messages) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1533 (let (success) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1534 (widen) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1535 (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
|
1536 (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
|
1537 (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
|
1538 (rmail-count-new-messages) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1539 (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
|
1540 (save-buffer))) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1541 ;; 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
|
1542 (while delete-files |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1543 (condition-case () |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1544 ;; First, try deleting. |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1545 (condition-case () |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1546 (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
|
1547 (file-error |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1548 ;; 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
|
1549 (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
|
1550 (file-error nil)) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1551 (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
|
1552 (if (= new-messages 0) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1553 (progn (goto-char opoint) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1554 (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
|
1555 (message "(No new mail has arrived)"))) |
53598
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1556 ;; check new messages to see if any of them is spam: |
54049
d47fd638cd35
(rmail-get-new-mail): Don't reference
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53967
diff
changeset
|
1557 (if (and (featurep 'rmail-spam-filter) |
d47fd638cd35
(rmail-get-new-mail): Don't reference
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53967
diff
changeset
|
1558 rmail-use-spam-filter) |
53598
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1559 (let* |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1560 ((old-messages (- rmail-total-messages new-messages)) |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1561 (rsf-scanned-message-number (1+ old-messages)) |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1562 ;; save deletion flags of old messages: vector starts |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1563 ;; at zero (is one longer that no of messages), |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1564 ;; therefore take 1+ old-messages |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1565 (save-deleted |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1566 (substring rmail-deleted-vector 0 (1+ |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1567 old-messages)))) |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1568 ;; set all messages to undeleted |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1569 (setq rmail-deleted-vector |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1570 (make-string (1+ rmail-total-messages) ?\ )) |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1571 (while (<= rsf-scanned-message-number |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1572 rmail-total-messages) |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1573 (progn |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1574 (if (not (rmail-spam-filter rsf-scanned-message-number)) |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1575 (progn (setq rsf-number-of-spam (1+ rsf-number-of-spam))) |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1576 ) |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1577 (setq rsf-scanned-message-number (1+ rsf-scanned-message-number)) |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1578 )) |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1579 (if (> rsf-number-of-spam 0) |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1580 (progn |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1581 (when (rmail-expunge-confirmed) |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1582 (rmail-only-expunge t)) |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1583 )) |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1584 (setq rmail-deleted-vector |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1585 (concat |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1586 save-deleted |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1587 (make-string (- rmail-total-messages old-messages) |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1588 ?\ ))) |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1589 )) |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1590 (if (rmail-summary-exists) |
16928
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1591 (rmail-select-summary |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1592 (rmail-update-summary))) |
53598
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1593 (message "%d new message%s read%s" |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1594 new-messages (if (= 1 new-messages) "" "s") |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1595 ;; print out a message on number of spam messages found: |
54049
d47fd638cd35
(rmail-get-new-mail): Don't reference
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53967
diff
changeset
|
1596 (if (and (featurep 'rmail-spam-filter) |
d47fd638cd35
(rmail-get-new-mail): Don't reference
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53967
diff
changeset
|
1597 rmail-use-spam-filter |
d47fd638cd35
(rmail-get-new-mail): Don't reference
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53967
diff
changeset
|
1598 (> rsf-number-of-spam 0)) |
53598
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1599 (if (= 1 new-messages) |
53860
a119a19bb7b3
(rmail-get-new-mail): Remove useless use of
Andreas Schwab <schwab@suse.de>
parents:
53859
diff
changeset
|
1600 ", and found to be a spam message" |
53598
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1601 (if (> rsf-number-of-spam 1) |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1602 (format ", %d of which found to be spam messages" |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1603 rsf-number-of-spam) |
53860
a119a19bb7b3
(rmail-get-new-mail): Remove useless use of
Andreas Schwab <schwab@suse.de>
parents:
53859
diff
changeset
|
1604 ", one of which found to be a spam message")) |
53598
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1605 "")) |
54049
d47fd638cd35
(rmail-get-new-mail): Don't reference
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53967
diff
changeset
|
1606 (if (and (featurep 'rmail-spam-filter) |
d47fd638cd35
(rmail-get-new-mail): Don't reference
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53967
diff
changeset
|
1607 rmail-use-spam-filter |
d47fd638cd35
(rmail-get-new-mail): Don't reference
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53967
diff
changeset
|
1608 (> rsf-number-of-spam 0)) |
58184
022dc2ba2c77
(rmail-get-new-mail): Use the renamed variables `rsf-beep' and
Eli Zaretskii <eliz@gnu.org>
parents:
56521
diff
changeset
|
1609 (progn (if rsf-beep (beep t)) |
022dc2ba2c77
(rmail-get-new-mail): Use the renamed variables `rsf-beep' and
Eli Zaretskii <eliz@gnu.org>
parents:
56521
diff
changeset
|
1610 (sleep-for rsf-sleep-after-message))) |
53598
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
1611 |
16928
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1612 ;; 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
|
1613 ;; 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
|
1614 (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
|
1615 (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
|
1616 (setq found t)))) |
28186ed53849
(rmail-get-new-mail): Fix return value to match doc.
Karl Heuer <kwzh@gnu.org>
parents:
16908
diff
changeset
|
1617 found) |
16241
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
1618 ;; 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
|
1619 (or found (rmail-show-message))))) |
270 | 1620 |
59561
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1621 (defun rmail-parse-url (file) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1622 "Parse the supplied URL. Return (list MAILBOX-NAME REMOTE PASSWORD GOT-PASSWORD) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1623 WHERE MAILBOX-NAME is the name of the mailbox suitable as argument to the |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1624 actual version of `movemail', REMOTE is non-nil if MAILBOX-NAME refers to |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1625 a remote mailbox, PASSWORD is the password if it should be |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1626 supplied as a separate argument to `movemail' or nil otherwise, GOT-PASSWORD |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1627 is non-nil if the user has supplied the password interactively. |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1628 " |
61223
cf375e6ff77b
(rmail-parse-url): Bugfix. Parse traditional mailbox specifications
Eli Zaretskii <eliz@gnu.org>
parents:
60692
diff
changeset
|
1629 (cond |
cf375e6ff77b
(rmail-parse-url): Bugfix. Parse traditional mailbox specifications
Eli Zaretskii <eliz@gnu.org>
parents:
60692
diff
changeset
|
1630 ((string-match "^\\([^:]+\\)://\\(\\([^:@]+\\)\\(:\\([^@]+\\)\\)?@\\)?.*" file) |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59561
diff
changeset
|
1631 (let (got-password supplied-password |
59561
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1632 (proto (match-string 1 file)) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1633 (user (match-string 3 file)) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1634 (pass (match-string 5 file)) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1635 (host (substring file (or (match-end 2) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1636 (+ 3 (match-end 1)))))) |
61223
cf375e6ff77b
(rmail-parse-url): Bugfix. Parse traditional mailbox specifications
Eli Zaretskii <eliz@gnu.org>
parents:
60692
diff
changeset
|
1637 |
59561
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1638 (if (not pass) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1639 (when rmail-remote-password-required |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1640 (setq got-password (not (rmail-have-password))) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1641 (setq supplied-password (rmail-get-remote-password |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1642 (string-equal proto "imap"))))) |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59561
diff
changeset
|
1643 |
59561
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1644 (if (rmail-movemail-variant-p 'emacs) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1645 (if (string-equal proto "pop") |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1646 (list (concat "po:" user ":" host) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1647 t |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1648 (or pass supplied-password) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1649 got-password) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1650 (error "Emacs movemail does not support %s protocol" proto)) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1651 (list file |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1652 (or (string-equal proto "pop") (string-equal proto "imap")) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1653 supplied-password |
61223
cf375e6ff77b
(rmail-parse-url): Bugfix. Parse traditional mailbox specifications
Eli Zaretskii <eliz@gnu.org>
parents:
60692
diff
changeset
|
1654 got-password)))) |
cf375e6ff77b
(rmail-parse-url): Bugfix. Parse traditional mailbox specifications
Eli Zaretskii <eliz@gnu.org>
parents:
60692
diff
changeset
|
1655 |
cf375e6ff77b
(rmail-parse-url): Bugfix. Parse traditional mailbox specifications
Eli Zaretskii <eliz@gnu.org>
parents:
60692
diff
changeset
|
1656 ((string-match "^po:\\([^:]+\\)\\(:\\(.*\\)\\)?" file) |
cf375e6ff77b
(rmail-parse-url): Bugfix. Parse traditional mailbox specifications
Eli Zaretskii <eliz@gnu.org>
parents:
60692
diff
changeset
|
1657 (let (got-password supplied-password |
cf375e6ff77b
(rmail-parse-url): Bugfix. Parse traditional mailbox specifications
Eli Zaretskii <eliz@gnu.org>
parents:
60692
diff
changeset
|
1658 (proto "pop") |
cf375e6ff77b
(rmail-parse-url): Bugfix. Parse traditional mailbox specifications
Eli Zaretskii <eliz@gnu.org>
parents:
60692
diff
changeset
|
1659 (user (match-string 1 file)) |
cf375e6ff77b
(rmail-parse-url): Bugfix. Parse traditional mailbox specifications
Eli Zaretskii <eliz@gnu.org>
parents:
60692
diff
changeset
|
1660 (host (match-string 3 file))) |
cf375e6ff77b
(rmail-parse-url): Bugfix. Parse traditional mailbox specifications
Eli Zaretskii <eliz@gnu.org>
parents:
60692
diff
changeset
|
1661 |
cf375e6ff77b
(rmail-parse-url): Bugfix. Parse traditional mailbox specifications
Eli Zaretskii <eliz@gnu.org>
parents:
60692
diff
changeset
|
1662 (when rmail-remote-password-required |
cf375e6ff77b
(rmail-parse-url): Bugfix. Parse traditional mailbox specifications
Eli Zaretskii <eliz@gnu.org>
parents:
60692
diff
changeset
|
1663 (setq got-password (not (rmail-have-password))) |
cf375e6ff77b
(rmail-parse-url): Bugfix. Parse traditional mailbox specifications
Eli Zaretskii <eliz@gnu.org>
parents:
60692
diff
changeset
|
1664 (setq supplied-password (rmail-get-remote-password nil))) |
cf375e6ff77b
(rmail-parse-url): Bugfix. Parse traditional mailbox specifications
Eli Zaretskii <eliz@gnu.org>
parents:
60692
diff
changeset
|
1665 |
cf375e6ff77b
(rmail-parse-url): Bugfix. Parse traditional mailbox specifications
Eli Zaretskii <eliz@gnu.org>
parents:
60692
diff
changeset
|
1666 (list file "pop" supplied-password got-password))) |
cf375e6ff77b
(rmail-parse-url): Bugfix. Parse traditional mailbox specifications
Eli Zaretskii <eliz@gnu.org>
parents:
60692
diff
changeset
|
1667 |
cf375e6ff77b
(rmail-parse-url): Bugfix. Parse traditional mailbox specifications
Eli Zaretskii <eliz@gnu.org>
parents:
60692
diff
changeset
|
1668 (t |
cf375e6ff77b
(rmail-parse-url): Bugfix. Parse traditional mailbox specifications
Eli Zaretskii <eliz@gnu.org>
parents:
60692
diff
changeset
|
1669 (list file nil nil nil)))) |
59561
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1670 |
270 | 1671 (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
|
1672 ;; 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
|
1673 ;; 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
|
1674 (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
|
1675 (error "RMAIL file %s is locked" |
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
1676 (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
|
1677 (let (file tofile delete-files movemail popmail got-password password) |
270 | 1678 (while files |
59561
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1679 ;; Handle remote mailbox names specially; don't expand as filenames |
24220
33f8216be2f1
(rmail-insert-inbox-text): Handle POP mailboxes
Andrew Innes <andrewi@gnu.org>
parents:
24209
diff
changeset
|
1680 ;; 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
|
1681 (setq file (car files)) |
59561
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1682 (let ((url-data (rmail-parse-url file))) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1683 (setq file (nth 0 url-data)) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1684 (setq popmail (nth 1 url-data)) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1685 (setq password (nth 2 url-data)) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1686 (setq got-password (nth 3 url-data))) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1687 |
24220
33f8216be2f1
(rmail-insert-inbox-text): Handle POP mailboxes
Andrew Innes <andrewi@gnu.org>
parents:
24209
diff
changeset
|
1688 (if popmail |
33f8216be2f1
(rmail-insert-inbox-text): Handle POP mailboxes
Andrew Innes <andrewi@gnu.org>
parents:
24209
diff
changeset
|
1689 (setq renamep t) |
33f8216be2f1
(rmail-insert-inbox-text): Handle POP mailboxes
Andrew Innes <andrewi@gnu.org>
parents:
24209
diff
changeset
|
1690 (setq file (file-truename |
36830
7c77da3d3841
(rmail-insert-inbox-text): Call expand-file-name before
Kenichi Handa <handa@m17n.org>
parents:
36645
diff
changeset
|
1691 (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
|
1692 (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
|
1693 ;; 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
|
1694 ;; in case of multiple inboxes that need moving. |
59561
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1695 (concat ".newmail-" |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59561
diff
changeset
|
1696 (file-name-nondirectory |
59561
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1697 (if (memq system-type '(windows-nt cygwin)) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1698 ;; cannot have "po:" in file name |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1699 (substring file 3) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1700 file))) |
12650
6f4785fee5cc
(rmail-insert-inbox-text): Always use movemail when renaming a file.
Richard M. Stallman <rms@gnu.org>
parents:
12447
diff
changeset
|
1701 ;; 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
|
1702 ;; 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
|
1703 ;; 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
|
1704 ;; 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
|
1705 (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
|
1706 (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
|
1707 ;; 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
|
1708 ;; since there can be mailboxes in various directories. |
61223
cf375e6ff77b
(rmail-parse-url): Bugfix. Parse traditional mailbox specifications
Eli Zaretskii <eliz@gnu.org>
parents:
60692
diff
changeset
|
1709 (if (not popmail) |
270 | 1710 (progn |
1711 ;; On some systems, /usr/spool/mail/foo is a directory | |
1712 ;; and the actual inbox is /usr/spool/mail/foo/foo. | |
1713 (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
|
1714 (setq file (expand-file-name (user-login-name) |
270 | 1715 file))))) |
11452
a24224fc5a92
(rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents:
11049
diff
changeset
|
1716 (cond (popmail |
59561
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1717 (message "Getting mail from the remote server ...")) |
11452
a24224fc5a92
(rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents:
11049
diff
changeset
|
1718 ((and (file-exists-p tofile) |
a24224fc5a92
(rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents:
11049
diff
changeset
|
1719 (/= 0 (nth 7 (file-attributes tofile)))) |
a24224fc5a92
(rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents:
11049
diff
changeset
|
1720 (message "Getting mail from %s..." tofile)) |
a24224fc5a92
(rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents:
11049
diff
changeset
|
1721 ((and (file-exists-p file) |
a24224fc5a92
(rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents:
11049
diff
changeset
|
1722 (/= 0 (nth 7 (file-attributes file)))) |
a24224fc5a92
(rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents:
11049
diff
changeset
|
1723 (message "Getting mail from %s..." file))) |
270 | 1724 ;; Set TOFILE if have not already done so, and |
1725 ;; rename or copy the file FILE to TOFILE if and as appropriate. | |
1726 (cond ((not renamep) | |
1727 (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
|
1728 ((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
|
1729 (not (file-exists-p file)))) |
270 | 1730 nil) |
1731 (t | |
59561
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1732 (with-temp-buffer |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1733 (let ((errors (current-buffer))) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1734 (buffer-disable-undo errors) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1735 (let ((args |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1736 (append |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1737 (list (or rmail-movemail-program |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1738 (expand-file-name "movemail" |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1739 exec-directory)) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1740 nil errors nil) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1741 (if rmail-preserve-inbox |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1742 (list "-p") |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1743 nil) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1744 (if (rmail-movemail-variant-p 'mailutils) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1745 (append (list "--emacs") rmail-movemail-flags) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1746 rmail-movemail-flags) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1747 (list file tofile) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1748 (if password (list password) nil)))) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1749 (apply 'call-process args)) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1750 (if (not (buffer-modified-p errors)) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1751 ;; No output => movemail won |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1752 nil |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1753 (set-buffer errors) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1754 (subst-char-in-region (point-min) (point-max) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1755 ?\n ?\ ) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1756 (goto-char (point-max)) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1757 (skip-chars-backward " \t") |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1758 (delete-region (point) (point-max)) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1759 (goto-char (point-min)) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1760 (if (looking-at "movemail: ") |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1761 (delete-region (point-min) (match-end 0))) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1762 (beep t) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1763 ;; If we just read the password, most likely it is |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1764 ;; wrong. Otherwise, see if there is a specific |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1765 ;; reason to think that the problem is a wrong passwd. |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1766 (if (or got-password |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1767 (re-search-forward rmail-remote-password-error |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1768 nil t)) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1769 (rmail-set-remote-password nil)) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1770 |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1771 ;; If using Mailutils, remove initial error code |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1772 ;; abbreviation |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1773 (when (rmail-movemail-variant-p 'mailutils) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1774 (goto-char (point-min)) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1775 (when (looking-at "[A-Z][A-Z0-9_]*:") |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1776 (delete-region (point-min) (match-end 0)))) |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59561
diff
changeset
|
1777 |
59561
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1778 (message "movemail: %s" |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1779 (buffer-substring (point-min) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1780 (point-max))) |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59561
diff
changeset
|
1781 |
59561
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1782 (sit-for 3) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
1783 nil))))) |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59561
diff
changeset
|
1784 |
270 | 1785 ;; At this point, TOFILE contains the name to read: |
1786 ;; Either the alternate name (if we renamed) | |
1787 ;; or the actual inbox (if not renaming). | |
1788 (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
|
1789 (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
|
1790 size) |
270 | 1791 (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
|
1792 (setq size (nth 1 (insert-file-contents tofile))) |
270 | 1793 (goto-char (point-max)) |
1794 (or (= (preceding-char) ?\n) | |
1795 (zerop size) | |
1796 (insert ?\n)) | |
16908
fd99785417a5
(rmail-preserve-inbox): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16772
diff
changeset
|
1797 (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
|
1798 (setq delete-files (cons tofile delete-files))))) |
270 | 1799 (message "") |
1800 (setq files (cdr files))) | |
1801 delete-files)) | |
1802 | |
24209
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
1803 ;; 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
|
1804 ;; 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
|
1805 (defun rmail-decode-region (from to coding) |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
1806 (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
|
1807 (setq coding 'undecided)) |
55114
c58efa90d5a6
(rmail-mail-new-frame): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents:
55056
diff
changeset
|
1808 ;; Use -dos decoding, to remove ^M characters left from base64 or |
c58efa90d5a6
(rmail-mail-new-frame): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents:
55056
diff
changeset
|
1809 ;; rogue qp-encoded text. |
c58efa90d5a6
(rmail-mail-new-frame): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents:
55056
diff
changeset
|
1810 (decode-coding-region from to |
c58efa90d5a6
(rmail-mail-new-frame): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents:
55056
diff
changeset
|
1811 (coding-system-change-eol-conversion coding 1)) |
c58efa90d5a6
(rmail-mail-new-frame): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents:
55056
diff
changeset
|
1812 ;; Don't reveal the fact we used -dos decoding, as users generally |
c58efa90d5a6
(rmail-mail-new-frame): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents:
55056
diff
changeset
|
1813 ;; will not expect the RMAIL buffer to use DOS EOL format. |
c58efa90d5a6
(rmail-mail-new-frame): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents:
55056
diff
changeset
|
1814 (setq buffer-file-coding-system |
c58efa90d5a6
(rmail-mail-new-frame): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents:
55056
diff
changeset
|
1815 (setq last-coding-system-used |
c58efa90d5a6
(rmail-mail-new-frame): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents:
55056
diff
changeset
|
1816 (coding-system-change-eol-conversion coding 0)))) |
24209
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
1817 |
270 | 1818 ;; the rmail-break-forwarded-messages feature is not implemented |
1819 (defun rmail-convert-to-babyl-format () | |
1820 (let ((count 0) start | |
402
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
1821 (case-fold-search nil) |
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
1822 (invalid-input-resync |
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
1823 (function (lambda () |
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
1824 (message "Invalid Babyl format in inbox!") |
16241
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
1825 (sit-for 3) |
402
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
1826 ;; Try to get back in sync with a real message. |
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
1827 (if (re-search-forward |
18091
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
1828 (concat rmail-mmdf-delim1 "\\|^From") nil t) |
402
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
1829 (beginning-of-line) |
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
1830 (goto-char (point-max))))))) |
270 | 1831 (goto-char (point-min)) |
1832 (save-restriction | |
1833 (while (not (eobp)) | |
17093
f8584d52dd48
(rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents:
17065
diff
changeset
|
1834 (setq start (point)) |
270 | 1835 (cond ((looking-at "BABYL OPTIONS:");Babyl header |
402
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
1836 (if (search-forward "\n\^_" nil t) |
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
1837 ;; If we find the proper terminator, delete through there. |
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
1838 (delete-region (point-min) (point)) |
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
1839 (funcall invalid-input-resync) |
405
698d5d6e8f8b
*** empty log message ***
Michael I. Bushnell <mib@gnu.org>
parents:
403
diff
changeset
|
1840 (delete-region (point-min) (point)))) |
270 | 1841 ;; Babyl format message |
1842 ((looking-at "\^L") | |
1843 (or (search-forward "\n\^_" nil t) | |
402
14485c6a56aa
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
346
diff
changeset
|
1844 (funcall invalid-input-resync)) |
270 | 1845 (setq count (1+ count)) |
1846 ;; Make sure there is no extra white space after the ^_ | |
1847 ;; at the end of the message. | |
1848 ;; Narrowing will make sure that whatever follows the junk | |
1849 ;; will be treated properly. | |
1850 (delete-region (point) | |
1851 (save-excursion | |
1852 (skip-chars-forward " \t\n") | |
1853 (point))) | |
52358
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1854 (save-excursion |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1855 (let* ((header-end |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1856 (progn |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1857 (save-excursion |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1858 (goto-char start) |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1859 (forward-line 1) |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1860 (if (looking-at "0") |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1861 (forward-line 1) |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1862 (forward-line 2)) |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1863 (save-restriction |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1864 (narrow-to-region (point) (point-max)) |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1865 (rfc822-goto-eoh) |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1866 (point))))) |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1867 (case-fold-search t) |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1868 (quoted-printable-header-field-end |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1869 (save-excursion |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1870 (goto-char start) |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1871 (re-search-forward |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1872 "^content-transfer-encoding:\\(\n?[\t ]\\)*quoted-printable\\(\n?[\t ]\\)*" |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1873 header-end t))) |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1874 (base64-header-field-end |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1875 (save-excursion |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1876 (goto-char start) |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1877 (re-search-forward |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1878 "^content-transfer-encoding:\\(\n?[\t ]\\)*base64\\(\n?[\t ]\\)*" |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1879 header-end t)))) |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1880 (if quoted-printable-header-field-end |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1881 (save-excursion |
53570
8e83b9e560f0
(rmail-convert-to-babyl-format): Use mail-unquote-printable-region.
Richard M. Stallman <rms@gnu.org>
parents:
53449
diff
changeset
|
1882 (unless |
54262
3d87267bf32d
(rmail-convert-to-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
54049
diff
changeset
|
1883 (mail-unquote-printable-region header-end (point) nil t t) |
53570
8e83b9e560f0
(rmail-convert-to-babyl-format): Use mail-unquote-printable-region.
Richard M. Stallman <rms@gnu.org>
parents:
53449
diff
changeset
|
1884 (message "Malformed MIME quoted-printable message")) |
52358
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1885 ;; Change "quoted-printable" to "8bit", |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1886 ;; to reflect the decoding we just did. |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1887 (goto-char quoted-printable-header-field-end) |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1888 (delete-region (point) (search-backward ":")) |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1889 (insert ": 8bit"))) |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1890 (if base64-header-field-end |
53445
c6a08cba798f
(rmail-convert-to-babyl-format): Make the code
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52988
diff
changeset
|
1891 (save-excursion |
c6a08cba798f
(rmail-convert-to-babyl-format): Make the code
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52988
diff
changeset
|
1892 (when |
c6a08cba798f
(rmail-convert-to-babyl-format): Make the code
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52988
diff
changeset
|
1893 (condition-case nil |
c6a08cba798f
(rmail-convert-to-babyl-format): Make the code
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52988
diff
changeset
|
1894 (progn |
c6a08cba798f
(rmail-convert-to-babyl-format): Make the code
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52988
diff
changeset
|
1895 (base64-decode-region (1+ header-end) |
c6a08cba798f
(rmail-convert-to-babyl-format): Make the code
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52988
diff
changeset
|
1896 (- (point) 2)) |
c6a08cba798f
(rmail-convert-to-babyl-format): Make the code
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52988
diff
changeset
|
1897 t) |
c6a08cba798f
(rmail-convert-to-babyl-format): Make the code
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52988
diff
changeset
|
1898 (error nil)) |
c6a08cba798f
(rmail-convert-to-babyl-format): Make the code
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52988
diff
changeset
|
1899 ;; Change "base64" to "8bit", to reflect the |
c6a08cba798f
(rmail-convert-to-babyl-format): Make the code
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52988
diff
changeset
|
1900 ;; decoding we just did. |
c6a08cba798f
(rmail-convert-to-babyl-format): Make the code
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52988
diff
changeset
|
1901 (goto-char base64-header-field-end) |
c6a08cba798f
(rmail-convert-to-babyl-format): Make the code
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52988
diff
changeset
|
1902 (delete-region (point) (search-backward ":")) |
c6a08cba798f
(rmail-convert-to-babyl-format): Make the code
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52988
diff
changeset
|
1903 (insert ": 8bit")))) |
52358
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1904 (setq last-coding-system-used nil) |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1905 (or rmail-enable-mime |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1906 (not rmail-enable-multibyte) |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1907 (let ((mime-charset |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1908 (if (and rmail-decode-mime-charset |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1909 (save-excursion |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1910 (goto-char start) |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1911 (search-forward "\n\n" nil t) |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1912 (let ((case-fold-search t)) |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1913 (re-search-backward |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1914 rmail-mime-charset-pattern |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1915 start t)))) |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1916 (intern (downcase (match-string 1)))))) |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1917 (rmail-decode-region start (point) mime-charset))))) |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1918 ;; 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
|
1919 (save-excursion |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1920 (goto-char start) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1921 (forward-line 1) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1922 (if (looking-at "0") |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1923 (forward-line 1) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1924 (forward-line 2)) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1925 (or (save-restriction |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1926 (narrow-to-region (point) (point-max)) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1927 (rfc822-goto-eoh) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1928 (goto-char (point-min)) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1929 (re-search-forward "^X-Coding-System:" nil t)) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1930 (insert "X-Coding-System: " |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1931 (symbol-name last-coding-system-used) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1932 "\n"))) |
52864
6cb616f8963b
(rmail-convert-to-babyl-format): Display a message while converting to Babyl.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
1933 (narrow-to-region (point) (point-max)) |
6cb616f8963b
(rmail-convert-to-babyl-format): Display a message while converting to Babyl.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
1934 (and (= 0 (% count 10)) |
52866
36bc6bf83146
(rmail-convert-to-babyl-format): Fix the last change.
Eli Zaretskii <eliz@gnu.org>
parents:
52864
diff
changeset
|
1935 (message "Converting to Babyl format...%d" count))) |
270 | 1936 ;;*** MMDF format |
1937 ((let ((case-fold-search t)) | |
18091
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
1938 (looking-at rmail-mmdf-delim1)) |
270 | 1939 (let ((case-fold-search t)) |
1940 (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
|
1941 (re-search-forward rmail-mmdf-delim2 nil t) |
270 | 1942 (replace-match "\^_")) |
1943 (save-excursion | |
1944 (save-restriction | |
1945 (narrow-to-region start (1- (point))) | |
1946 (goto-char (point-min)) | |
1947 (while (search-forward "\n\^_" nil t); single char "\^_" | |
1948 (replace-match "\n^_")))); 2 chars: "^" and "_" | |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1949 (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
|
1950 (or rmail-enable-mime |
20943
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
1951 (not rmail-enable-multibyte) |
17839
b4a81f70d905
Coding system names changed as follows:
Kenichi Handa <handa@m17n.org>
parents:
17822
diff
changeset
|
1952 (decode-coding-region start (point) 'undecided)) |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1953 (save-excursion |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1954 (goto-char start) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1955 (forward-line 3) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1956 (insert "X-Coding-System: " |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1957 (symbol-name last-coding-system-used) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
1958 "\n")) |
270 | 1959 (narrow-to-region (point) (point-max)) |
52864
6cb616f8963b
(rmail-convert-to-babyl-format): Display a message while converting to Babyl.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
1960 (setq count (1+ count)) |
6cb616f8963b
(rmail-convert-to-babyl-format): Display a message while converting to Babyl.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
1961 (and (= 0 (% count 10)) |
52866
36bc6bf83146
(rmail-convert-to-babyl-format): Fix the last change.
Eli Zaretskii <eliz@gnu.org>
parents:
52864
diff
changeset
|
1962 (message "Converting to Babyl format...%d" count))) |
270 | 1963 ;;*** Mail format |
1964 ((looking-at "^From ") | |
1965 (insert "\^L\n0, unseen,,\n*** EOOH ***\n") | |
1966 (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
|
1967 ;; 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
|
1968 ;; 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
|
1969 (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
|
1970 (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
|
1971 (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
|
1972 (case-fold-search t) |
20273
f451d46a8c68
(rmail-convert-to-babyl-format): If the
Karl Heuer <kwzh@gnu.org>
parents:
20261
diff
changeset
|
1973 (quoted-printable-header-field-end |
f451d46a8c68
(rmail-convert-to-babyl-format): If the
Karl Heuer <kwzh@gnu.org>
parents:
20261
diff
changeset
|
1974 (save-excursion |
f451d46a8c68
(rmail-convert-to-babyl-format): If the
Karl Heuer <kwzh@gnu.org>
parents:
20261
diff
changeset
|
1975 (re-search-forward |
20274 | 1976 "^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
|
1977 header-end t))) |
52358
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1978 (base64-header-field-end |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1979 (save-excursion |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1980 (re-search-forward |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1981 "^content-transfer-encoding:\\(\n?[\t ]\\)*base64\\(\n?[\t ]\\)*" |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
1982 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
|
1983 (size |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1984 ;; 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
|
1985 (save-excursion |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
1986 ;; 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
|
1987 ;; 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
|
1988 (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
|
1989 (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
|
1990 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
|
1991 (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
|
1992 (eol (progn (end-of-line) (point)))) |
62402
a7e02ef1e3d6
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
61814
diff
changeset
|
1993 (string-to-number (buffer-substring beg eol))))))) |
6389
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
parents:
6289
diff
changeset
|
1994 (and size |
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
parents:
6289
diff
changeset
|
1995 (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
|
1996 (<= (+ 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
|
1997 ;; 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
|
1998 ;; 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
|
1999 (save-excursion |
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
parents:
6289
diff
changeset
|
2000 (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
|
2001 (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
|
2002 (or (eobp) |
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
parents:
6289
diff
changeset
|
2003 (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
|
2004 (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
|
2005 (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
|
2006 (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
|
2007 (let ((case-fold-search t)) |
18091
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
2008 (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
|
2009 (looking-at "From ")))) |
9b45e828c2a7
(rmail-convert-to-babyl-format): Check Content-Length field for consistency.
Karl Heuer <kwzh@gnu.org>
parents:
6289
diff
changeset
|
2010 (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
|
2011 (message "Ignoring invalid Content-Length field") |
20273
f451d46a8c68
(rmail-convert-to-babyl-format): If the
Karl Heuer <kwzh@gnu.org>
parents:
20261
diff
changeset
|
2012 (sit-for 1 0 t))) |
48584
033e93594b23
(rmail-convert-to-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
48412
diff
changeset
|
2013 (if (let ((case-fold-search nil)) |
033e93594b23
(rmail-convert-to-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
48412
diff
changeset
|
2014 (re-search-forward |
033e93594b23
(rmail-convert-to-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
48412
diff
changeset
|
2015 (concat "^[\^_]?\\(" |
033e93594b23
(rmail-convert-to-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
48412
diff
changeset
|
2016 rmail-unix-mail-delimiter |
033e93594b23
(rmail-convert-to-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
48412
diff
changeset
|
2017 "\\|" |
033e93594b23
(rmail-convert-to-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
48412
diff
changeset
|
2018 rmail-mmdf-delim1 "\\|" |
033e93594b23
(rmail-convert-to-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
48412
diff
changeset
|
2019 "^BABYL OPTIONS:\\|" |
033e93594b23
(rmail-convert-to-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
48412
diff
changeset
|
2020 "\^L\n[01],\\)") nil t)) |
20273
f451d46a8c68
(rmail-convert-to-babyl-format): If the
Karl Heuer <kwzh@gnu.org>
parents:
20261
diff
changeset
|
2021 (goto-char (match-beginning 1)) |
f451d46a8c68
(rmail-convert-to-babyl-format): If the
Karl Heuer <kwzh@gnu.org>
parents:
20261
diff
changeset
|
2022 (goto-char (point-max))) |
f451d46a8c68
(rmail-convert-to-babyl-format): If the
Karl Heuer <kwzh@gnu.org>
parents:
20261
diff
changeset
|
2023 (setq count (1+ count)) |
f451d46a8c68
(rmail-convert-to-babyl-format): If the
Karl Heuer <kwzh@gnu.org>
parents:
20261
diff
changeset
|
2024 (if quoted-printable-header-field-end |
f451d46a8c68
(rmail-convert-to-babyl-format): If the
Karl Heuer <kwzh@gnu.org>
parents:
20261
diff
changeset
|
2025 (save-excursion |
53570
8e83b9e560f0
(rmail-convert-to-babyl-format): Use mail-unquote-printable-region.
Richard M. Stallman <rms@gnu.org>
parents:
53449
diff
changeset
|
2026 (unless |
54262
3d87267bf32d
(rmail-convert-to-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
54049
diff
changeset
|
2027 (mail-unquote-printable-region header-end (point) nil t t) |
53570
8e83b9e560f0
(rmail-convert-to-babyl-format): Use mail-unquote-printable-region.
Richard M. Stallman <rms@gnu.org>
parents:
53449
diff
changeset
|
2028 (message "Malformed MIME quoted-printable message")) |
20273
f451d46a8c68
(rmail-convert-to-babyl-format): If the
Karl Heuer <kwzh@gnu.org>
parents:
20261
diff
changeset
|
2029 ;; Change "quoted-printable" to "8bit", |
f451d46a8c68
(rmail-convert-to-babyl-format): If the
Karl Heuer <kwzh@gnu.org>
parents:
20261
diff
changeset
|
2030 ;; to reflect the decoding we just did. |
f451d46a8c68
(rmail-convert-to-babyl-format): If the
Karl Heuer <kwzh@gnu.org>
parents:
20261
diff
changeset
|
2031 (goto-char quoted-printable-header-field-end) |
20274 | 2032 (delete-region (point) (search-backward ":")) |
52358
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
2033 (insert ": 8bit"))) |
7751260b3358
(rmail-convert-to-babyl-format): Detect
Eli Zaretskii <eliz@gnu.org>
parents:
51003
diff
changeset
|
2034 (if base64-header-field-end |
53445
c6a08cba798f
(rmail-convert-to-babyl-format): Make the code
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52988
diff
changeset
|
2035 (save-excursion |
c6a08cba798f
(rmail-convert-to-babyl-format): Make the code
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52988
diff
changeset
|
2036 (when |
c6a08cba798f
(rmail-convert-to-babyl-format): Make the code
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52988
diff
changeset
|
2037 (condition-case nil |
c6a08cba798f
(rmail-convert-to-babyl-format): Make the code
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52988
diff
changeset
|
2038 (progn |
53666
0a56d6bd40da
(rmail-convert-to-babyl-format): Avoid deleting trailing white space
Markus Rost <rost@math.uni-bielefeld.de>
parents:
53598
diff
changeset
|
2039 (base64-decode-region |
0a56d6bd40da
(rmail-convert-to-babyl-format): Avoid deleting trailing white space
Markus Rost <rost@math.uni-bielefeld.de>
parents:
53598
diff
changeset
|
2040 (1+ header-end) |
0a56d6bd40da
(rmail-convert-to-babyl-format): Avoid deleting trailing white space
Markus Rost <rost@math.uni-bielefeld.de>
parents:
53598
diff
changeset
|
2041 (save-excursion |
0a56d6bd40da
(rmail-convert-to-babyl-format): Avoid deleting trailing white space
Markus Rost <rost@math.uni-bielefeld.de>
parents:
53598
diff
changeset
|
2042 ;; Prevent base64-decode-region |
0a56d6bd40da
(rmail-convert-to-babyl-format): Avoid deleting trailing white space
Markus Rost <rost@math.uni-bielefeld.de>
parents:
53598
diff
changeset
|
2043 ;; from removing newline characters. |
0a56d6bd40da
(rmail-convert-to-babyl-format): Avoid deleting trailing white space
Markus Rost <rost@math.uni-bielefeld.de>
parents:
53598
diff
changeset
|
2044 (skip-chars-backward "\n\t ") |
0a56d6bd40da
(rmail-convert-to-babyl-format): Avoid deleting trailing white space
Markus Rost <rost@math.uni-bielefeld.de>
parents:
53598
diff
changeset
|
2045 (point))) |
53445
c6a08cba798f
(rmail-convert-to-babyl-format): Make the code
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52988
diff
changeset
|
2046 t) |
c6a08cba798f
(rmail-convert-to-babyl-format): Make the code
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52988
diff
changeset
|
2047 (error nil)) |
c6a08cba798f
(rmail-convert-to-babyl-format): Make the code
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52988
diff
changeset
|
2048 ;; Change "base64" to "8bit", to reflect the |
c6a08cba798f
(rmail-convert-to-babyl-format): Make the code
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52988
diff
changeset
|
2049 ;; decoding we just did. |
c6a08cba798f
(rmail-convert-to-babyl-format): Make the code
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52988
diff
changeset
|
2050 (goto-char base64-header-field-end) |
c6a08cba798f
(rmail-convert-to-babyl-format): Make the code
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52988
diff
changeset
|
2051 (delete-region (point) (search-backward ":")) |
c6a08cba798f
(rmail-convert-to-babyl-format): Make the code
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52988
diff
changeset
|
2052 (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
|
2053 |
270 | 2054 (save-excursion |
2055 (save-restriction | |
2056 (narrow-to-region start (point)) | |
2057 (goto-char (point-min)) | |
2058 (while (search-forward "\n\^_" nil t); single char | |
2059 (replace-match "\n^_")))); 2 chars: "^" and "_" | |
54262
3d87267bf32d
(rmail-convert-to-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
54049
diff
changeset
|
2060 ;; This is for malformed messages that don't end in newline. |
3d87267bf32d
(rmail-convert-to-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
54049
diff
changeset
|
2061 ;; There shouldn't be any, but some users say occasionally |
3d87267bf32d
(rmail-convert-to-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
54049
diff
changeset
|
2062 ;; there are some. |
3d87267bf32d
(rmail-convert-to-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
54049
diff
changeset
|
2063 (or (bolp) (newline)) |
270 | 2064 (insert ?\^_) |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2065 (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
|
2066 (or rmail-enable-mime |
20943
d5e308b7879e
(rmail-enable-multibyte): New variable
Kenichi Handa <handa@m17n.org>
parents:
20854
diff
changeset
|
2067 (not rmail-enable-multibyte) |
24209
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
2068 (let ((mime-charset |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
2069 (if (and rmail-decode-mime-charset |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
2070 (save-excursion |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
2071 (goto-char start) |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
2072 (search-forward "\n\n" nil t) |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
2073 (let ((case-fold-search t)) |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
2074 (re-search-backward |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
2075 rmail-mime-charset-pattern |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
2076 start t)))) |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
2077 (intern (downcase (match-string 1)))))) |
d0853770c8e7
(rmail-decode-mime-charset): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
24110
diff
changeset
|
2078 (rmail-decode-region start (point) mime-charset))) |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2079 (save-excursion |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2080 (goto-char start) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2081 (forward-line 3) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2082 (insert "X-Coding-System: " |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2083 (symbol-name last-coding-system-used) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2084 "\n")) |
52864
6cb616f8963b
(rmail-convert-to-babyl-format): Display a message while converting to Babyl.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
2085 (narrow-to-region (point) (point-max)) |
6cb616f8963b
(rmail-convert-to-babyl-format): Display a message while converting to Babyl.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
2086 (and (= 0 (% count 10)) |
52866
36bc6bf83146
(rmail-convert-to-babyl-format): Fix the last change.
Eli Zaretskii <eliz@gnu.org>
parents:
52864
diff
changeset
|
2087 (message "Converting to Babyl format...%d" count))) |
270 | 2088 ;; |
2700
9de57e00caf7
(rmail-convert-to-babyl-format): Delete 1 char
Richard M. Stallman <rms@gnu.org>
parents:
2687
diff
changeset
|
2089 ;; 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
|
2090 ;; 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
|
2091 ;; 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
|
2092 ;; 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
|
2093 ((eolp) (delete-char 1)) |
405
698d5d6e8f8b
*** empty log message ***
Michael I. Bushnell <mib@gnu.org>
parents:
403
diff
changeset
|
2094 (t (error "Cannot convert to babyl format"))))) |
270 | 2095 count)) |
2096 | |
2097 ;; Delete the "From ..." line, creating various other headers with | |
2098 ;; 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
|
2099 ;; 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
|
2100 ;; use by the rmail-output function. |
270 | 2101 (defun rmail-nuke-pinhead-header () |
2102 (save-excursion | |
2103 (save-restriction | |
2104 (let ((start (point)) | |
2105 (end (progn | |
2106 (condition-case () | |
2107 (search-forward "\n\n") | |
2108 (error | |
2109 (goto-char (point-max)) | |
2110 (insert "\n\n"))) | |
2111 (point))) | |
2112 has-from has-date) | |
2113 (narrow-to-region start end) | |
2114 (let ((case-fold-search t)) | |
2115 (goto-char start) | |
2116 (setq has-from (search-forward "\nFrom:" nil t)) | |
2117 (goto-char start) | |
2118 (setq has-date (and (search-forward "\nDate:" nil t) (point))) | |
2119 (goto-char start)) | |
2120 (let ((case-fold-search nil)) | |
617 | 2121 (if (re-search-forward (concat "^" rmail-unix-mail-delimiter) nil t) |
270 | 2122 (replace-match |
2123 (concat | |
2124 "Mail-from: \\&" | |
2125 ;; Keep and reformat the date if we don't | |
2126 ;; have a Date: field. | |
2127 (if has-date | |
2128 "" | |
1112 | 2129 (concat |
15534
7f169dd814ce
(rmail-unix-mail-delimiter):
Richard M. Stallman <rms@gnu.org>
parents:
15503
diff
changeset
|
2130 "Date: \\2, \\4 \\3 \\9 \\5 " |
45144
30db00c75dbf
(rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents:
44141
diff
changeset
|
2131 |
1112 | 2132 ;; The timezone could be matched by group 7 or group 10. |
2133 ;; If neither of them matched, assume EST, since only | |
2134 ;; Easterners would be so sloppy. | |
2135 ;; It's a shame the substitution can't use "\\10". | |
2136 (cond | |
2137 ((/= (match-beginning 7) (match-end 7)) "\\7") | |
2138 ((/= (match-beginning 10) (match-end 10)) | |
2139 (buffer-substring (match-beginning 10) | |
2140 (match-end 10))) | |
2141 (t "EST")) | |
2142 "\n")) | |
270 | 2143 ;; Keep and reformat the sender if we don't |
2144 ;; have a From: field. | |
2145 (if has-from | |
2146 "" | |
4340
505fb5222dea
(rmail-nuke-pinhead-header): Tell replace-match not to alter the case.
Richard M. Stallman <rms@gnu.org>
parents:
4332
diff
changeset
|
2147 "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
|
2148 t))))))) |
270 | 2149 |
2150 ;;;; *** Rmail Message Formatting and Header Manipulation *** | |
2151 | |
2152 (defun rmail-reformat-message (beg end) | |
2153 (goto-char beg) | |
2154 (forward-line 1) | |
2155 (if (/= (following-char) ?0) | |
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
38352
diff
changeset
|
2156 (error "Bad format in RMAIL file")) |
38228
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2157 (let ((inhibit-read-only t) |
270 | 2158 (delta (- (buffer-size) end))) |
2159 (delete-char 1) | |
2160 (insert ?1) | |
2161 (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
|
2162 (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
|
2163 (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
|
2164 (forward-line 1))) |
270 | 2165 (if (looking-at "\\*\\*\\* EOOH \\*\\*\\*\n") |
2166 (delete-region (point) | |
2167 (progn (forward-line 1) (point)))) | |
2168 (let ((str (buffer-substring (point) | |
2169 (save-excursion (search-forward "\n\n" end 'move) | |
2170 (point))))) | |
2171 (insert str "*** EOOH ***\n") | |
2172 (narrow-to-region (point) (- (buffer-size) delta))) | |
2173 (goto-char (point-min)) | |
9062
1f55bc3c629e
(rmail-reformat-message): Run mail-message-filter
Richard M. Stallman <rms@gnu.org>
parents:
9010
diff
changeset
|
2174 (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
|
2175 (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
|
2176 (rmail-clear-headers)))) |
270 | 2177 |
9010
9d48b6752dbf
(rmail-retry-failure): Copy the whole block of headers from the message
Richard M. Stallman <rms@gnu.org>
parents:
8963
diff
changeset
|
2178 (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
|
2179 "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
|
2180 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
|
2181 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
|
2182 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
|
2183 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
|
2184 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
|
2185 (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
|
2186 (forward-char -1) |
169fde4a67c1
(rmail-clear-headers): Make sure an empty line
Richard M. Stallman <rms@gnu.org>
parents:
21192
diff
changeset
|
2187 (let ((case-fold-search t) |
169fde4a67c1
(rmail-clear-headers): Make sure an empty line
Richard M. Stallman <rms@gnu.org>
parents:
21192
diff
changeset
|
2188 (buffer-read-only nil)) |
169fde4a67c1
(rmail-clear-headers): Make sure an empty line
Richard M. Stallman <rms@gnu.org>
parents:
21192
diff
changeset
|
2189 (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
|
2190 (save-restriction |
21de06ed5f74
(rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents:
21195
diff
changeset
|
2191 (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
|
2192 (let (lim next) |
21de06ed5f74
(rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents:
21195
diff
changeset
|
2193 (goto-char (point-min)) |
21de06ed5f74
(rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents:
21195
diff
changeset
|
2194 (while (and (not (eobp)) |
21de06ed5f74
(rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents:
21195
diff
changeset
|
2195 (save-excursion |
21de06ed5f74
(rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents:
21195
diff
changeset
|
2196 (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
|
2197 (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
|
2198 next (1+ lim)) |
21de06ed5f74
(rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents:
21195
diff
changeset
|
2199 (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
|
2200 (if (save-excursion |
21de06ed5f74
(rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents:
21195
diff
changeset
|
2201 (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
|
2202 (goto-char next) |
21de06ed5f74
(rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents:
21195
diff
changeset
|
2203 (delete-region (point) next)))) |
21de06ed5f74
(rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents:
21195
diff
changeset
|
2204 (goto-char (point-min))) |
21195
169fde4a67c1
(rmail-clear-headers): Make sure an empty line
Richard M. Stallman <rms@gnu.org>
parents:
21192
diff
changeset
|
2205 (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
|
2206 (save-restriction |
169fde4a67c1
(rmail-clear-headers): Make sure an empty line
Richard M. Stallman <rms@gnu.org>
parents:
21192
diff
changeset
|
2207 (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
|
2208 (while (and ignored-headers |
d2611d5071d0
(rmail-clear-headers): Don't throw an error
Gerd Moellmann <gerd@gnu.org>
parents:
30100
diff
changeset
|
2209 (progn |
d2611d5071d0
(rmail-clear-headers): Don't throw an error
Gerd Moellmann <gerd@gnu.org>
parents:
30100
diff
changeset
|
2210 (goto-char (point-min)) |
d2611d5071d0
(rmail-clear-headers): Don't throw an error
Gerd Moellmann <gerd@gnu.org>
parents:
30100
diff
changeset
|
2211 (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
|
2212 (beginning-of-line) |
169fde4a67c1
(rmail-clear-headers): Make sure an empty line
Richard M. Stallman <rms@gnu.org>
parents:
21192
diff
changeset
|
2213 (delete-region (point) |
21293
21de06ed5f74
(rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents:
21195
diff
changeset
|
2214 (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
|
2215 (1- (point)) |
21de06ed5f74
(rmail-clear-headers): Handle failure to find "\n[^ \t]".
Richard M. Stallman <rms@gnu.org>
parents:
21195
diff
changeset
|
2216 (point-max))))))))) |
270 | 2217 |
16772
ce2945525699
(rmail-msg-is-pruned): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16633
diff
changeset
|
2218 (defun rmail-msg-is-pruned () |
270 | 2219 (rmail-maybe-set-message-counters) |
16772
ce2945525699
(rmail-msg-is-pruned): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16633
diff
changeset
|
2220 (save-restriction |
22263
150184345dc7
(rmail-msg-is-pruned): Delete junk from definition.
Richard M. Stallman <rms@gnu.org>
parents:
22201
diff
changeset
|
2221 (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
|
2222 (save-excursion |
22263
150184345dc7
(rmail-msg-is-pruned): Delete junk from definition.
Richard M. Stallman <rms@gnu.org>
parents:
22201
diff
changeset
|
2223 (goto-char (point-min)) |
150184345dc7
(rmail-msg-is-pruned): Delete junk from definition.
Richard M. Stallman <rms@gnu.org>
parents:
22201
diff
changeset
|
2224 (forward-line 1) |
16772
ce2945525699
(rmail-msg-is-pruned): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16633
diff
changeset
|
2225 (= (following-char) ?1)))) |
ce2945525699
(rmail-msg-is-pruned): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16633
diff
changeset
|
2226 |
38191
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2227 (defun rmail-msg-restore-non-pruned-header () |
38228
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2228 (let ((old-point (point)) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2229 new-point |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2230 new-start |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2231 (inhibit-read-only t)) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2232 (save-excursion |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2233 (narrow-to-region (rmail-msgbeg rmail-current-message) (point-max)) |
38191
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2234 (goto-char (point-min)) |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2235 (forward-line 1) |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2236 ;; Change 1 to 0. |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2237 (delete-char 1) |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2238 (insert ?0) |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2239 ;; Insert new EOOH line at the proper place. |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2240 (forward-line 1) |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2241 (let ((case-fold-search t)) |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2242 (while (looking-at "Summary-Line:\\|Mail-From:") |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2243 (forward-line 1))) |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2244 (insert "*** EOOH ***\n") |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2245 (setq new-start (point)) |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2246 ;; Delete the old reformatted header. |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2247 (forward-char -1) |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2248 (search-forward "\n*** EOOH ***\n") |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2249 (forward-line -1) |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2250 (let ((start (point))) |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2251 (search-forward "\n\n") |
38228
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2252 (if (and (<= start old-point) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2253 (<= old-point (point))) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2254 (setq new-point new-start)) |
38191
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2255 (delete-region start (point))) |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2256 ;; Narrow to after the new EOOH line. |
38228
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2257 (narrow-to-region new-start (point-max))) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2258 (if new-point |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2259 (goto-char new-point)))) |
38191
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2260 |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2261 (defun rmail-msg-prune-header () |
38228
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2262 (let ((new-point |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2263 (= (point) (point-min)))) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2264 (save-excursion |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2265 (narrow-to-region (rmail-msgbeg rmail-current-message) (point-max)) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2266 (rmail-reformat-message (point-min) (point-max))) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2267 (if new-point |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2268 (goto-char (point-min))))) |
38191
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2269 |
16772
ce2945525699
(rmail-msg-is-pruned): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16633
diff
changeset
|
2270 (defun rmail-toggle-header (&optional arg) |
ce2945525699
(rmail-msg-is-pruned): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16633
diff
changeset
|
2271 "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
|
2272 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
|
2273 otherwise, show it in full." |
ce2945525699
(rmail-msg-is-pruned): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16633
diff
changeset
|
2274 (interactive "P") |
38191
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2275 (let* ((pruned (with-current-buffer rmail-buffer |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2276 (rmail-msg-is-pruned))) |
22351
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
2277 (prune (if arg |
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
2278 (> (prefix-numeric-value arg) 0) |
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
2279 (not pruned)))) |
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
2280 (if (eq pruned prune) |
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
2281 t |
38191
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2282 (set-buffer rmail-buffer) |
22351
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
2283 (rmail-maybe-set-message-counters) |
38191
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2284 (if rmail-enable-mime |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2285 (let ((buffer-read-only nil)) |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2286 (if pruned |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2287 (rmail-msg-restore-non-pruned-header) |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2288 (rmail-msg-prune-header)) |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2289 (funcall rmail-show-mime-function)) |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2290 (let* ((buffer-read-only nil) |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2291 (window (get-buffer-window (current-buffer))) |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2292 (at-point-min (= (point) (point-min))) |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2293 (all-headers-visible (= (window-start window) (point-min))) |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2294 (on-header |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2295 (save-excursion |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2296 (and (not (search-backward "\n\n" nil t)) |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2297 (progn |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2298 (end-of-line) |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2299 (re-search-backward "^[-A-Za-z0-9]+:" nil t)) |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2300 (match-string 0)))) |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2301 (old-screen-line |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2302 (rmail-count-screen-lines (window-start window) (point)))) |
22435
98b909125b87
(rmail-toggle-header): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
22374
diff
changeset
|
2303 (if pruned |
38191
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2304 (rmail-msg-restore-non-pruned-header) |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2305 (rmail-msg-prune-header)) |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2306 (cond (at-point-min |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2307 (goto-char (point-min))) |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2308 (on-header |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2309 (goto-char (point-min)) |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2310 (search-forward "\n\n") |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2311 (or (re-search-backward |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2312 (concat "^" (regexp-quote on-header)) nil t) |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2313 (goto-char (point-min)))) |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2314 (t |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2315 (save-selected-window |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2316 (select-window window) |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2317 (recenter old-screen-line) |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2318 (if (and all-headers-visible |
6eaa11a41f8a
(rmail-msg-restore-non-pruned-header): New
Gerd Moellmann <gerd@gnu.org>
parents:
37956
diff
changeset
|
2319 (not (= (window-start) (point-min)))) |
43124
67ff08aaa0d0
(rmail-toggle-header): Avoid possibly slow call to
Richard M. Stallman <rms@gnu.org>
parents:
43087
diff
changeset
|
2320 (recenter (- (window-height) 2)))))))) |
22351
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
2321 (rmail-highlight-headers)))) |
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
2322 |
38228
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2323 (defun rmail-narrow-to-non-pruned-header () |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2324 "Narrow to the whole (original) header of the current message." |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2325 (let (start end) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2326 (narrow-to-region (rmail-msgbeg rmail-current-message) (point-max)) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2327 (goto-char (point-min)) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2328 (forward-line 1) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2329 (if (= (following-char) ?1) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2330 (progn |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2331 (forward-line 1) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2332 (setq start (point)) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2333 (search-forward "*** EOOH ***\n") |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2334 (setq end (match-beginning 0))) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2335 (forward-line 2) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2336 (setq start (point)) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2337 (search-forward "\n\n") |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2338 (setq end (1- (point)))) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2339 (narrow-to-region start end) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2340 (goto-char start))) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
2341 |
22351
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
2342 ;; Lifted from repos-count-screen-lines. |
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
2343 ;; 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
|
2344 (defun rmail-count-screen-lines (start end) |
22330
6d28f2670ebe
(rmail-toggle-header): Preserve point
Karl Heuer <kwzh@gnu.org>
parents:
22263
diff
changeset
|
2345 (save-excursion |
22351
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
2346 (save-restriction |
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
2347 (narrow-to-region start end) |
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
2348 (goto-char (point-min)) |
fbe69401c609
(rmail-toggle-header): Redo previous change;
Karl Heuer <kwzh@gnu.org>
parents:
22330
diff
changeset
|
2349 (vertical-motion (- (point-max) (point-min)))))) |
270 | 2350 |
2351 ;;;; *** Rmail Attributes and Keywords *** | |
2352 | |
2353 ;; Make a string describing current message's attributes and keywords | |
2354 ;; and set it up as the name of a minor mode | |
2355 ;; so it will appear in the mode line. | |
2356 (defun rmail-display-labels () | |
2357 (let ((blurb "") (beg (point-min-marker)) (end (point-max-marker))) | |
2358 (save-excursion | |
2359 (unwind-protect | |
2360 (progn | |
2361 (widen) | |
2362 (goto-char (rmail-msgbeg rmail-current-message)) | |
2363 (forward-line 1) | |
2364 (if (looking-at "[01],") | |
2365 (progn | |
2366 (narrow-to-region (point) (progn (end-of-line) (point))) | |
2367 ;; Truly valid BABYL format requires a space before each | |
2368 ;; attribute or keyword name. Put them in if missing. | |
2369 (let (buffer-read-only) | |
2370 (goto-char (point-min)) | |
2371 (while (search-forward "," nil t) | |
2372 (or (looking-at "[ ,]") (eobp) | |
2373 (insert " ")))) | |
2374 (goto-char (point-max)) | |
2375 (if (search-backward ",," nil 'move) | |
2376 (progn | |
2377 (if (> (point) (1+ (point-min))) | |
2378 (setq blurb (buffer-substring (+ 1 (point-min)) (point)))) | |
2379 (if (> (- (point-max) (point)) 2) | |
2380 (setq blurb | |
2381 (concat blurb | |
2382 ";" | |
2383 (buffer-substring (+ (point) 3) | |
2384 (1- (point-max))))))))))) | |
2385 ;; Note: we don't use save-restriction because that does not work right | |
2386 ;; if changes are made outside the saved restriction | |
2387 ;; before that restriction is restored. | |
2388 (narrow-to-region beg end) | |
2389 (set-marker beg nil) | |
2390 (set-marker end nil))) | |
2391 (while (string-match " +," blurb) | |
2392 (setq blurb (concat (substring blurb 0 (match-beginning 0)) "," | |
2393 (substring blurb (match-end 0))))) | |
2394 (while (string-match ", +" blurb) | |
2395 (setq blurb (concat (substring blurb 0 (match-beginning 0)) "," | |
2396 (substring blurb (match-end 0))))) | |
2397 (setq mode-line-process | |
11452
a24224fc5a92
(rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents:
11049
diff
changeset
|
2398 (format " %d/%d%s" |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2399 rmail-current-message rmail-total-messages blurb)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2400 ;; 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
|
2401 ;; `mode-line-process' of rmail-view-buffer too. |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2402 (if (and rmail-enable-mime |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2403 (not (eq (current-buffer) rmail-view-buffer)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2404 (buffer-live-p rmail-view-buffer)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2405 (let ((mlp mode-line-process)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2406 (with-current-buffer rmail-view-buffer |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2407 (setq mode-line-process mlp)))))) |
270 | 2408 |
2409 ;; Turn an attribute of a message on or off according to STATE. | |
2410 ;; ATTR is the name of the attribute, as a string. | |
2411 ;; MSGNUM is message number to change; nil means current message. | |
2412 (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
|
2413 (set-buffer rmail-buffer) |
270 | 2414 (let ((omax (point-max-marker)) |
2415 (omin (point-min-marker)) | |
2416 (buffer-read-only nil)) | |
2417 (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
|
2418 (if (> msgnum 0) |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2419 (unwind-protect |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2420 (save-excursion |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2421 (widen) |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2422 (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
|
2423 (let ((curstate |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2424 (not |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2425 (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
|
2426 (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
|
2427 (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
|
2428 (if curstate |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2429 (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
|
2430 (beginning-of-line) |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2431 (forward-char 2) |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2432 (insert " " attr ",")))) |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2433 (if (string= attr "deleted") |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2434 (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
|
2435 ;; 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
|
2436 ;; 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
|
2437 ;; 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
|
2438 (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
|
2439 (set-marker omin nil) |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2440 (set-marker omax nil) |
1ada11e2d89a
(rmail-set-attribute): Do nothing if MSGNUM is 0.
Richard M. Stallman <rms@gnu.org>
parents:
4969
diff
changeset
|
2441 (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
|
2442 (rmail-display-labels)))))) |
270 | 2443 |
2444 ;; Return t if the attributes/keywords line of msg number MSG | |
2445 ;; contains a match for the regexp LABELS. | |
2446 (defun rmail-message-labels-p (msg labels) | |
2447 (save-excursion | |
2448 (save-restriction | |
2449 (widen) | |
2450 (goto-char (rmail-msgbeg msg)) | |
2451 (forward-char 3) | |
2452 (re-search-backward labels (prog1 (point) (end-of-line)) t)))) | |
2453 | |
2454 ;;;; *** Rmail Message Selection And Support *** | |
2455 | |
2456 (defun rmail-msgend (n) | |
2457 (marker-position (aref rmail-message-vector (1+ n)))) | |
2458 | |
2459 (defun rmail-msgbeg (n) | |
2460 (marker-position (aref rmail-message-vector n))) | |
2461 | |
2462 (defun rmail-widen-to-current-msgbeg (function) | |
2463 "Call FUNCTION with point at start of internal data of current message. | |
2464 Assumes that bounds were previously narrowed to display the message in Rmail. | |
2465 The bounds are widened enough to move point where desired, then narrowed | |
2466 again afterward. | |
2467 | |
2468 FUNCTION may not change the visible text of the message, but it may | |
2469 change the invisible header text." | |
2470 (save-excursion | |
29301
aec01f0c6729
(rmail-widen-to-current-msgbeg): Use rmail-msgbeg
Gerd Moellmann <gerd@gnu.org>
parents:
29160
diff
changeset
|
2471 (unwind-protect |
aec01f0c6729
(rmail-widen-to-current-msgbeg): Use rmail-msgbeg
Gerd Moellmann <gerd@gnu.org>
parents:
29160
diff
changeset
|
2472 (progn |
aec01f0c6729
(rmail-widen-to-current-msgbeg): Use rmail-msgbeg
Gerd Moellmann <gerd@gnu.org>
parents:
29160
diff
changeset
|
2473 (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
|
2474 (point-max)) |
aec01f0c6729
(rmail-widen-to-current-msgbeg): Use rmail-msgbeg
Gerd Moellmann <gerd@gnu.org>
parents:
29160
diff
changeset
|
2475 (goto-char (point-min)) |
aec01f0c6729
(rmail-widen-to-current-msgbeg): Use rmail-msgbeg
Gerd Moellmann <gerd@gnu.org>
parents:
29160
diff
changeset
|
2476 (funcall function)) |
270 | 2477 ;; Note: we don't use save-restriction because that does not work right |
2478 ;; if changes are made outside the saved restriction | |
2479 ;; before that restriction is restored. | |
29301
aec01f0c6729
(rmail-widen-to-current-msgbeg): Use rmail-msgbeg
Gerd Moellmann <gerd@gnu.org>
parents:
29160
diff
changeset
|
2480 (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
|
2481 (rmail-msgend rmail-current-message))))) |
270 | 2482 |
2483 (defun rmail-forget-messages () | |
2484 (unwind-protect | |
2485 (if (vectorp rmail-message-vector) | |
2486 (let* ((i 0) | |
2487 (v rmail-message-vector) | |
2488 (n (length v))) | |
2489 (while (< i n) | |
2490 (move-marker (aref v i) nil) | |
2491 (setq i (1+ i))))) | |
2492 (setq rmail-message-vector nil) | |
17620
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
2493 (setq rmail-msgref-vector nil) |
270 | 2494 (setq rmail-deleted-vector nil))) |
2495 | |
2496 (defun rmail-maybe-set-message-counters () | |
2497 (if (not (and rmail-deleted-vector | |
2498 rmail-message-vector | |
2499 rmail-current-message | |
2500 rmail-total-messages)) | |
2501 (rmail-set-message-counters))) | |
2502 | |
2503 (defun rmail-count-new-messages (&optional nomsg) | |
2504 (let* ((case-fold-search nil) | |
2505 (total-messages 0) | |
2506 (messages-head nil) | |
2507 (deleted-head nil)) | |
2508 (or nomsg (message "Counting new messages...")) | |
2509 (goto-char (point-max)) | |
2510 ;; Put at the end of messages-head | |
2511 ;; the entry for message N+1, which marks | |
2512 ;; the end of message N. (N = number of messages). | |
2513 (search-backward "\n\^_") | |
2514 (forward-char 1) | |
2515 (setq messages-head (list (point-marker))) | |
2516 (rmail-set-message-counters-counter (point-min)) | |
2517 (setq rmail-current-message (1+ rmail-total-messages)) | |
2518 (setq rmail-total-messages | |
2519 (+ rmail-total-messages total-messages)) | |
2520 (setq rmail-message-vector | |
2521 (vconcat rmail-message-vector (cdr messages-head))) | |
2522 (aset rmail-message-vector | |
2523 rmail-current-message (car messages-head)) | |
2524 (setq rmail-deleted-vector | |
2525 (concat rmail-deleted-vector deleted-head)) | |
2526 (setq rmail-summary-vector | |
2527 (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
|
2528 (setq rmail-msgref-vector |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
2529 (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
|
2530 ;; 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
|
2531 (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
|
2532 (while (<= i rmail-total-messages) |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
2533 (aset rmail-msgref-vector i (list i)) |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
2534 (setq i (1+ i)))) |
270 | 2535 (goto-char (point-min)) |
2536 (or nomsg (message "Counting new messages...done (%d)" total-messages)))) | |
2537 | |
2538 (defun rmail-set-message-counters () | |
2539 (rmail-forget-messages) | |
2540 (save-excursion | |
2541 (save-restriction | |
2542 (widen) | |
2543 (let* ((point-save (point)) | |
2544 (total-messages 0) | |
2545 (messages-after-point) | |
2546 (case-fold-search nil) | |
2547 (messages-head nil) | |
2548 (deleted-head nil)) | |
2549 (message "Counting messages...") | |
2550 (goto-char (point-max)) | |
2551 ;; Put at the end of messages-head | |
2552 ;; the entry for message N+1, which marks | |
2553 ;; 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
|
2554 (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
|
2555 (if (/= (point) (point-max)) (forward-char 1)) |
270 | 2556 (setq messages-head (list (point-marker))) |
2557 (rmail-set-message-counters-counter (min (point) point-save)) | |
2558 (setq messages-after-point total-messages) | |
2559 (rmail-set-message-counters-counter) | |
2560 (setq rmail-total-messages total-messages) | |
2561 (setq rmail-current-message | |
2562 (min total-messages | |
2563 (max 1 (- total-messages messages-after-point)))) | |
2564 (setq rmail-message-vector | |
2565 (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
|
2566 rmail-deleted-vector (concat "0" deleted-head) |
17620
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
2567 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
|
2568 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
|
2569 (let ((i 0)) |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
2570 (while (<= i rmail-total-messages) |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
2571 (aset rmail-msgref-vector i (list i)) |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
2572 (setq i (1+ i)))) |
270 | 2573 (message "Counting messages...done"))))) |
45144
30db00c75dbf
(rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents:
44141
diff
changeset
|
2574 |
270 | 2575 (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
|
2576 (let ((start (point)) |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2577 next) |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2578 (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
|
2579 ;; 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
|
2580 ;; 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
|
2581 (setq next (point)) |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2582 (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
|
2583 (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
|
2584 (buffer-undo t)) |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2585 (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
|
2586 (save-excursion |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2587 (goto-char start) |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2588 (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
|
2589 (delete-char 1))))) |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2590 (setq start next) |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2591 (forward-char 1) |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2592 (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
|
2593 (save-excursion |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2594 (setq deleted-head |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2595 (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
|
2596 (prog1 (point) |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2597 (forward-line 2)) |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2598 t) |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2599 ?D ?\ ) |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2600 deleted-head))) |
15450ece2f24
(rmail-set-message-counters-counter): Detect messages that have been
Andrew Innes <andrewi@gnu.org>
parents:
23740
diff
changeset
|
2601 (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
|
2602 (message "Counting messages...%d" total-messages))))) |
270 | 2603 |
2604 (defun rmail-beginning-of-message () | |
2605 "Show current message starting from the beginning." | |
2606 (interactive) | |
2607 (rmail-show-message rmail-current-message)) | |
2608 | |
60692
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2609 (defun rmail-unknown-mail-followup-to () |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2610 "Handle a \"Mail-Followup-To\" header field with an unknown mailing list. |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2611 Ask the user whether to add that list name to `mail-mailing-lists'." |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2612 (save-restriction |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2613 (rmail-narrow-to-non-pruned-header) |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2614 (let ((mail-followup-to (mail-fetch-field "mail-followup-to" nil t))) |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2615 (when mail-followup-to |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2616 (let ((addresses |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2617 (split-string |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2618 (mail-strip-quoted-names mail-followup-to) |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2619 ",[[:space:]]+" t))) |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2620 (dolist (addr addresses) |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2621 (when (and (not (member addr mail-mailing-lists)) |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2622 (not |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2623 ;; taken from rmailsum.el |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2624 (string-match |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2625 (or rmail-user-mail-address-regexp |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2626 (concat "^\\(" |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2627 (regexp-quote (user-login-name)) |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2628 "\\($\\|@\\)\\|" |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2629 (regexp-quote |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2630 (or user-mail-address |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2631 (concat (user-login-name) "@" |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2632 (or mail-host-address |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2633 (system-name))))) |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2634 "\\>\\)")) |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2635 addr)) |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2636 (y-or-n-p |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2637 (format "Add `%s' to `mail-mailing-lists'? " |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2638 addr))) |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2639 (customize-save-variable 'mail-mailing-lists |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2640 (cons addr mail-mailing-lists))))))))) |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2641 |
9431
65e65fe6e8f3
(rmail-show-message): New argument no-summary.
Richard M. Stallman <rms@gnu.org>
parents:
9394
diff
changeset
|
2642 (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
|
2643 "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
|
2644 If summary buffer is currently displayed, update current message there also." |
270 | 2645 (interactive "p") |
17093
f8584d52dd48
(rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents:
17065
diff
changeset
|
2646 (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
|
2647 (switch-to-buffer rmail-buffer)) |
270 | 2648 (rmail-maybe-set-message-counters) |
2649 (widen) | |
2650 (if (zerop rmail-total-messages) | |
2651 (progn (narrow-to-region (point-min) (1- (point-max))) | |
2652 (goto-char (point-min)) | |
2653 (setq mode-line-process nil)) | |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2654 (let (blurb coding-system) |
270 | 2655 (if (not n) |
2656 (setq n rmail-current-message) | |
2657 (cond ((<= n 0) | |
2658 (setq n 1 | |
2659 rmail-current-message 1 | |
2660 blurb "No previous message")) | |
2661 ((> n rmail-total-messages) | |
2662 (setq n rmail-total-messages | |
2663 rmail-current-message rmail-total-messages | |
2664 blurb "No following message")) | |
2665 (t | |
2666 (setq rmail-current-message n)))) | |
16241
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
2667 (let ((beg (rmail-msgbeg n))) |
270 | 2668 (goto-char beg) |
2669 (forward-line 1) | |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2670 (save-excursion |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2671 (let ((end (rmail-msgend n))) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2672 (save-restriction |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2673 (if (prog1 (= (following-char) ?0) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2674 (forward-line 2) |
24323
c1bb999de64e
(rmail-show-message): If an unseen message has a
Richard M. Stallman <rms@gnu.org>
parents:
24292
diff
changeset
|
2675 ;; 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
|
2676 ;; 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
|
2677 (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
|
2678 (forward-line 1)) |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2679 (narrow-to-region (point) end)) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2680 (rfc822-goto-eoh) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2681 (search-forward "\n*** EOOH ***\n" end t)) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2682 (narrow-to-region beg (point)) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2683 (goto-char (point-min)) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2684 (if (re-search-forward "^X-Coding-System: *\\(.*\\)$" nil t) |
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2685 (let ((coding-system (intern (match-string 1)))) |
45218
4c51a687cf5c
(rmail-show-message): Catch error in check-coding-system.
Richard M. Stallman <rms@gnu.org>
parents:
45144
diff
changeset
|
2686 (condition-case nil |
4c51a687cf5c
(rmail-show-message): Catch error in check-coding-system.
Richard M. Stallman <rms@gnu.org>
parents:
45144
diff
changeset
|
2687 (progn |
4c51a687cf5c
(rmail-show-message): Catch error in check-coding-system.
Richard M. Stallman <rms@gnu.org>
parents:
45144
diff
changeset
|
2688 (check-coding-system coding-system) |
4c51a687cf5c
(rmail-show-message): Catch error in check-coding-system.
Richard M. Stallman <rms@gnu.org>
parents:
45144
diff
changeset
|
2689 (setq buffer-file-coding-system coding-system)) |
49082
336bfea9bad4
(rmail-mmdf-delim1, rmail-mmdf-delim2): Doc fixes.
John Paul Wallington <jpw@pobox.com>
parents:
49064
diff
changeset
|
2690 (error |
45218
4c51a687cf5c
(rmail-show-message): Catch error in check-coding-system.
Richard M. Stallman <rms@gnu.org>
parents:
45144
diff
changeset
|
2691 (setq buffer-file-coding-system nil)))) |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2692 (setq buffer-file-coding-system nil))))) |
16241
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
2693 ;; 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
|
2694 (rmail-set-attribute "unseen" nil) |
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
2695 (let ((end (rmail-msgend n))) |
22045
2c21cfc02a7f
(rmail-decode-babyl-format):
Richard M. Stallman <rms@gnu.org>
parents:
21864
diff
changeset
|
2696 ;; 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
|
2697 (if (= (following-char) ?0) |
270 | 2698 (rmail-reformat-message beg end) |
16241
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
2699 (search-forward "\n*** EOOH ***\n" end t) |
3c84b8d28902
(rmail-insert-inbox-text): Detect locked
Richard M. Stallman <rms@gnu.org>
parents:
15879
diff
changeset
|
2700 (narrow-to-region (point) end))) |
270 | 2701 (goto-char (point-min)) |
38352
37bce1f38f0a
(rmail-show-message): Show beginning of message in
Gerd Moellmann <gerd@gnu.org>
parents:
38311
diff
changeset
|
2702 (walk-windows |
37bce1f38f0a
(rmail-show-message): Show beginning of message in
Gerd Moellmann <gerd@gnu.org>
parents:
38311
diff
changeset
|
2703 (function (lambda (window) |
37bce1f38f0a
(rmail-show-message): Show beginning of message in
Gerd Moellmann <gerd@gnu.org>
parents:
38311
diff
changeset
|
2704 (if (eq (window-buffer window) (current-buffer)) |
37bce1f38f0a
(rmail-show-message): Show beginning of message in
Gerd Moellmann <gerd@gnu.org>
parents:
38311
diff
changeset
|
2705 (set-window-point window (point))))) |
37bce1f38f0a
(rmail-show-message): Show beginning of message in
Gerd Moellmann <gerd@gnu.org>
parents:
38311
diff
changeset
|
2706 nil t) |
270 | 2707 (rmail-display-labels) |
17093
f8584d52dd48
(rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents:
17065
diff
changeset
|
2708 (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
|
2709 (funcall rmail-show-mime-function) |
60692
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2710 (setq rmail-view-buffer rmail-buffer)) |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2711 (when mail-mailing-lists |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
2712 (rmail-unknown-mail-followup-to)) |
7084
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents:
7065
diff
changeset
|
2713 (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
|
2714 (if transient-mark-mode (deactivate-mark)) |
270 | 2715 (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
|
2716 ;; 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
|
2717 ;; 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
|
2718 ;; 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
|
2719 ;; 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
|
2720 ;; 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
|
2721 (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
|
2722 (let ((curr-msg rmail-current-message)) |
65e65fe6e8f3
(rmail-show-message): New argument no-summary.
Richard M. Stallman <rms@gnu.org>
parents:
9394
diff
changeset
|
2723 (rmail-select-summary |
65e65fe6e8f3
(rmail-show-message): New argument no-summary.
Richard M. Stallman <rms@gnu.org>
parents:
9394
diff
changeset
|
2724 (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
|
2725 (with-current-buffer rmail-buffer |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2726 (rmail-auto-file)) |
270 | 2727 (if blurb |
2728 (message blurb)))))) | |
2729 | |
35471
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2730 (defun rmail-redecode-body (coding) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2731 "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
|
2732 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
|
2733 charset= headers. |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2734 |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2735 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
|
2736 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
|
2737 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
|
2738 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
|
2739 |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2740 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
|
2741 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
|
2742 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
|
2743 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
|
2744 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
|
2745 iso-8859, koi8-r, etc." |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2746 (interactive "zCoding system for re-decoding this message: ") |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2747 (when (not rmail-enable-mime) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2748 (or (eq major-mode 'rmail-mode) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2749 (switch-to-buffer rmail-buffer)) |
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2750 (save-excursion |
43066
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2751 (let ((pruned (rmail-msg-is-pruned))) |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2752 (unwind-protect |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2753 (let ((msgbeg (rmail-msgbeg rmail-current-message)) |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2754 (msgend (rmail-msgend rmail-current-message)) |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2755 x-coding-header) |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2756 ;; We need the message headers pruned (we later restore |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2757 ;; the pruned stat to what it was, see the end of |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2758 ;; unwind-protect form). |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2759 (or pruned |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2760 (rmail-toggle-header 1)) |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2761 (narrow-to-region msgbeg msgend) |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2762 (goto-char (point-min)) |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2763 (when (search-forward "\n*** EOOH ***\n" (point-max) t) |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2764 (narrow-to-region msgbeg (point))) |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2765 (goto-char (point-min)) |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2766 (if (re-search-forward "^X-Coding-System: *\\(.*\\)$" nil t) |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2767 (let ((old-coding (intern (match-string 1))) |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2768 (buffer-read-only nil)) |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2769 (check-coding-system old-coding) |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2770 ;; Make sure the new coding system uses the same EOL |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2771 ;; conversion, to prevent ^M characters from popping |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2772 ;; up all over the place. |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2773 (setq coding |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2774 (coding-system-change-eol-conversion |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2775 coding |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2776 (coding-system-eol-type old-coding))) |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2777 (setq x-coding-header (point-marker)) |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2778 (narrow-to-region msgbeg msgend) |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2779 (encode-coding-region (point) msgend old-coding) |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2780 (decode-coding-region (point) msgend coding) |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2781 (setq last-coding-system-used coding) |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2782 ;; Rewrite the coding-system header according |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2783 ;; to what we did. |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2784 (goto-char x-coding-header) |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2785 (delete-region (point) |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2786 (save-excursion |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2787 (beginning-of-line) |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2788 (point))) |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2789 (insert "X-Coding-System: " |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2790 (symbol-name last-coding-system-used)) |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2791 (set-marker x-coding-header nil) |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2792 (rmail-show-message)) |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2793 (error "No X-Coding-System header found"))) |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2794 (or pruned |
5be5677eb18e
(rmail-redecode-body): Prune the headers before
Eli Zaretskii <eliz@gnu.org>
parents:
42659
diff
changeset
|
2795 (rmail-toggle-header 0))))))) |
35471
a06f22cd075b
(rmail-redecode-body): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
34185
diff
changeset
|
2796 |
7084
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents:
7065
diff
changeset
|
2797 ;; 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
|
2798 (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
|
2799 ;; 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
|
2800 (if (and (fboundp 'internal-find-face) |
d9c6c2429f85
(rmail-highlight-headers): Do nothing if
Richard M. Stallman <rms@gnu.org>
parents:
7955
diff
changeset
|
2801 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
|
2802 (save-excursion |
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents:
7065
diff
changeset
|
2803 (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
|
2804 (save-restriction |
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents:
7065
diff
changeset
|
2805 (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
|
2806 (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
|
2807 (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
|
2808 ;; 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
|
2809 ;; Otherwise use the `highlight' face. |
8383
d2b1b642f4e6
(rmail-highlighted-face): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8378
diff
changeset
|
2810 (face (or rmail-highlight-face |
d2b1b642f4e6
(rmail-highlighted-face): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8378
diff
changeset
|
2811 (if (face-differs-from-default-p 'bold) |
d2b1b642f4e6
(rmail-highlighted-face): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8378
diff
changeset
|
2812 'bold 'highlight))) |
7084
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents:
7065
diff
changeset
|
2813 ;; 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
|
2814 (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
|
2815 (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
|
2816 (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
|
2817 (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
|
2818 (let ((beg (point)) |
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents:
7065
diff
changeset
|
2819 overlay) |
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents:
7065
diff
changeset
|
2820 (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
|
2821 (looking-at "[ \t]"))) |
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents:
7065
diff
changeset
|
2822 ;; 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
|
2823 (forward-char -1) |
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents:
7065
diff
changeset
|
2824 (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
|
2825 (forward-char -1)) |
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents:
7065
diff
changeset
|
2826 (if overlays |
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents:
7065
diff
changeset
|
2827 ;; 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
|
2828 (progn |
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents:
7065
diff
changeset
|
2829 (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
|
2830 overlays (cdr overlays)) |
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents:
7065
diff
changeset
|
2831 (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
|
2832 (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
|
2833 ;; 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
|
2834 ;; rmail-overlay-list. |
5ceea5b326b6
(rmail-highlight-headers): Extracted as a new function. Fix overlay position.
Karl Heuer <kwzh@gnu.org>
parents:
7065
diff
changeset
|
2835 (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
|
2836 (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
|
2837 (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
|
2838 (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
|
2839 |
29160
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2840 (defun rmail-auto-file () |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2841 "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
|
2842 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
|
2843 (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
|
2844 (not (string= (buffer-file-name) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2845 (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
|
2846 ;; 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
|
2847 nil |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2848 ;; 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
|
2849 (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
|
2850 (subj (mail-fetch-field "subject")) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2851 (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
|
2852 (d rmail-automatic-folder-directives) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2853 (directive-loop nil) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2854 (folder nil)) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2855 (while d |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2856 (setq folder (car (car d)) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2857 directive-loop (cdr (car d))) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2858 (while (and (car directive-loop) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2859 (let ((f (cond |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2860 ((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
|
2861 ((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
|
2862 ((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
|
2863 (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
|
2864 (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
|
2865 (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
|
2866 ;; 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
|
2867 (if (null directive-loop) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2868 (if (null folder) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2869 (rmail-delete-forward) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2870 (if (string= "/dev/null" folder) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2871 (rmail-delete-message) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2872 (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
|
2873 (setq d nil)))) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2874 (setq d (cdr d)))))) |
998506bd35f3
1999-01-23 Eric M. Ludlam <zappo@ultranet.com>
Dave Love <fx@gnu.org>
parents:
29025
diff
changeset
|
2875 |
270 | 2876 (defun rmail-next-message (n) |
2877 "Show following message whether deleted or not. | |
2878 With prefix arg N, moves forward N messages, or backward if N is negative." | |
2879 (interactive "p") | |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2880 (set-buffer rmail-buffer) |
270 | 2881 (rmail-maybe-set-message-counters) |
2882 (rmail-show-message (+ rmail-current-message n))) | |
2883 | |
2884 (defun rmail-previous-message (n) | |
2885 "Show previous message whether deleted or not. | |
2886 With prefix arg N, moves backward N messages, or forward if N is negative." | |
2887 (interactive "p") | |
45144
30db00c75dbf
(rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents:
44141
diff
changeset
|
2888 (rmail-next-message (- n))) |
270 | 2889 |
2890 (defun rmail-next-undeleted-message (n) | |
2891 "Show following non-deleted message. | |
2892 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
|
2893 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
|
2894 |
754b38c0e941
(rmail): Really don't get new mail if file name was given.
Richard M. Stallman <rms@gnu.org>
parents:
4819
diff
changeset
|
2895 Returns t if a new message is being shown, nil otherwise." |
270 | 2896 (interactive "p") |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2897 (set-buffer rmail-buffer) |
270 | 2898 (rmail-maybe-set-message-counters) |
2899 (let ((lastwin rmail-current-message) | |
2900 (current rmail-current-message)) | |
2901 (while (and (> n 0) (< current rmail-total-messages)) | |
2902 (setq current (1+ current)) | |
2903 (if (not (rmail-message-deleted-p current)) | |
2904 (setq lastwin current n (1- n)))) | |
2905 (while (and (< n 0) (> current 1)) | |
2906 (setq current (1- current)) | |
2907 (if (not (rmail-message-deleted-p current)) | |
2908 (setq lastwin current n (1+ n)))) | |
2909 (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
|
2910 (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
|
2911 t) |
754b38c0e941
(rmail): Really don't get new mail if file name was given.
Richard M. Stallman <rms@gnu.org>
parents:
4819
diff
changeset
|
2912 (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
|
2913 (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
|
2914 (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
|
2915 (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
|
2916 nil))) |
270 | 2917 |
2918 (defun rmail-previous-undeleted-message (n) | |
2919 "Show previous non-deleted message. | |
2920 With prefix argument N, moves backward N non-deleted messages, | |
2921 or forward if N is negative." | |
2922 (interactive "p") | |
2923 (rmail-next-undeleted-message (- n))) | |
2924 | |
2925 (defun rmail-first-message () | |
2926 "Show first message in file." | |
2927 (interactive) | |
2928 (rmail-maybe-set-message-counters) | |
2929 (rmail-show-message 1)) | |
2930 | |
2931 (defun rmail-last-message () | |
2932 "Show last message in file." | |
2933 (interactive) | |
2934 (rmail-maybe-set-message-counters) | |
2935 (rmail-show-message rmail-total-messages)) | |
2936 | |
2937 (defun rmail-what-message () | |
2938 (let ((where (point)) | |
2939 (low 1) | |
2940 (high rmail-total-messages) | |
2941 (mid (/ rmail-total-messages 2))) | |
2942 (while (> (- high low) 1) | |
2943 (if (>= where (rmail-msgbeg mid)) | |
2944 (setq low mid) | |
2945 (setq high mid)) | |
2946 (setq mid (+ low (/ (- high low) 2)))) | |
2947 (if (>= where (rmail-msgbeg high)) high low))) | |
2948 | |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2949 (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
|
2950 (save-restriction |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
2951 (goto-char (rmail-msgbeg msg)) |
21640
50e05b0adf4a
(rmail-message-regexp-p):
Richard M. Stallman <rms@gnu.org>
parents:
21512
diff
changeset
|
2952 (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
|
2953 (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
|
2954 (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
|
2955 (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
|
2956 (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
|
2957 (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
|
2958 |
37494
3da588b28890
(rmail-message-regexp-p): Use rfc822-goto-eoh
Gerd Moellmann <gerd@gnu.org>
parents:
36830
diff
changeset
|
2959 (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
|
2960 "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
|
2961 (let ((beg (rmail-msgbeg n)) |
3da588b28890
(rmail-message-regexp-p): Use rfc822-goto-eoh
Gerd Moellmann <gerd@gnu.org>
parents:
36830
diff
changeset
|
2962 (end (rmail-msgend n))) |
3da588b28890
(rmail-message-regexp-p): Use rfc822-goto-eoh
Gerd Moellmann <gerd@gnu.org>
parents:
36830
diff
changeset
|
2963 (goto-char beg) |
3da588b28890
(rmail-message-regexp-p): Use rfc822-goto-eoh
Gerd Moellmann <gerd@gnu.org>
parents:
36830
diff
changeset
|
2964 (forward-line 1) |
3da588b28890
(rmail-message-regexp-p): Use rfc822-goto-eoh
Gerd Moellmann <gerd@gnu.org>
parents:
36830
diff
changeset
|
2965 (save-excursion |
3da588b28890
(rmail-message-regexp-p): Use rfc822-goto-eoh
Gerd Moellmann <gerd@gnu.org>
parents:
36830
diff
changeset
|
2966 (save-restriction |
3da588b28890
(rmail-message-regexp-p): Use rfc822-goto-eoh
Gerd Moellmann <gerd@gnu.org>
parents:
36830
diff
changeset
|
2967 (if (prog1 (= (following-char) ?0) |
3da588b28890
(rmail-message-regexp-p): Use rfc822-goto-eoh
Gerd Moellmann <gerd@gnu.org>
parents:
36830
diff
changeset
|
2968 (forward-line 2) |
3da588b28890
(rmail-message-regexp-p): Use rfc822-goto-eoh
Gerd Moellmann <gerd@gnu.org>
parents:
36830
diff
changeset
|
2969 ;; 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
|
2970 ;; 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
|
2971 (when (looking-at "^\\*\\*\\* EOOH \\*\\*\\*\n") |
cd2d6781a5f8
(rmail-message-regexp-p): Yet another fix.
Gerd Moellmann <gerd@gnu.org>
parents:
37500
diff
changeset
|
2972 (forward-line 1)) |
37500
797a4ab5dbed
(rmail-message-regexp-p): Don't match before
Gerd Moellmann <gerd@gnu.org>
parents:
37494
diff
changeset
|
2973 (setq beg (point)) |
37494
3da588b28890
(rmail-message-regexp-p): Use rfc822-goto-eoh
Gerd Moellmann <gerd@gnu.org>
parents:
36830
diff
changeset
|
2974 (narrow-to-region (point) end)) |
45144
30db00c75dbf
(rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents:
44141
diff
changeset
|
2975 (progn |
37517
cd2d6781a5f8
(rmail-message-regexp-p): Yet another fix.
Gerd Moellmann <gerd@gnu.org>
parents:
37500
diff
changeset
|
2976 (rfc822-goto-eoh) |
cd2d6781a5f8
(rmail-message-regexp-p): Yet another fix.
Gerd Moellmann <gerd@gnu.org>
parents:
37500
diff
changeset
|
2977 (setq end (point))) |
37500
797a4ab5dbed
(rmail-message-regexp-p): Don't match before
Gerd Moellmann <gerd@gnu.org>
parents:
37494
diff
changeset
|
2978 (setq beg (point)) |
37517
cd2d6781a5f8
(rmail-message-regexp-p): Yet another fix.
Gerd Moellmann <gerd@gnu.org>
parents:
37500
diff
changeset
|
2979 (search-forward "\n*** EOOH ***\n" end t) |
cd2d6781a5f8
(rmail-message-regexp-p): Yet another fix.
Gerd Moellmann <gerd@gnu.org>
parents:
37500
diff
changeset
|
2980 (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
|
2981 (goto-char beg) |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2982 (if rmail-enable-mime |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2983 (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
|
2984 (re-search-forward regexp end t))))) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2985 |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2986 (defun rmail-search-message (msg regexp) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2987 "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
|
2988 (goto-char (rmail-msgbeg msg)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2989 (if rmail-enable-mime |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2990 (funcall rmail-search-mime-message-function msg regexp) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
2991 (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
|
2992 |
270 | 2993 (defvar rmail-search-last-regexp nil) |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2994 (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
|
2995 "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
|
2996 Prefix argument gives repeat count; negative argument means search |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2997 backwards (through earlier messages). |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2998 Interactively, empty argument means use same regexp used last time." |
270 | 2999 (interactive |
3000 (let* ((reversep (< (prefix-numeric-value current-prefix-arg) 0)) | |
3001 (prompt | |
3002 (concat (if reversep "Reverse " "") "Rmail search (regexp): ")) | |
3003 regexp) | |
3004 (if rmail-search-last-regexp | |
3005 (setq prompt (concat prompt | |
3006 "(default " | |
3007 rmail-search-last-regexp | |
3008 ") "))) | |
3009 (setq regexp (read-string prompt)) | |
3010 (cond ((not (equal regexp "")) | |
3011 (setq rmail-search-last-regexp regexp)) | |
3012 ((not rmail-search-last-regexp) | |
3013 (error "No previous Rmail search string"))) | |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
3014 (list rmail-search-last-regexp |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
3015 (prefix-numeric-value current-prefix-arg)))) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
3016 (or n (setq n 1)) |
270 | 3017 (message "%sRmail search for %s..." |
937
0f082d63bfd6
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
874
diff
changeset
|
3018 (if (< n 0) "Reverse " "") |
270 | 3019 regexp) |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3020 (set-buffer rmail-buffer) |
270 | 3021 (rmail-maybe-set-message-counters) |
3022 (let ((omin (point-min)) | |
3023 (omax (point-max)) | |
3024 (opoint (point)) | |
3025 win | |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
3026 (reversep (< n 0)) |
270 | 3027 (msg rmail-current-message)) |
3028 (unwind-protect | |
3029 (progn | |
3030 (widen) | |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
3031 (while (/= n 0) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
3032 ;; 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
|
3033 ;; but searching forward through each message. |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
3034 (if reversep |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
3035 (while (and (null win) (> msg 1)) |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3036 (setq msg (1- msg) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3037 win (rmail-search-message msg regexp))) |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
3038 (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
|
3039 (setq msg (1+ msg) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3040 win (rmail-search-message msg regexp)))) |
937
0f082d63bfd6
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
874
diff
changeset
|
3041 (setq n (+ n (if reversep 1 -1))))) |
270 | 3042 (if win |
3043 (progn | |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3044 (rmail-show-message msg) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3045 ;; 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
|
3046 ;; (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
|
3047 ;; position point. This search may fail because REGEXP |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3048 ;; 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
|
3049 ;; 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
|
3050 ;; portion. |
270 | 3051 (if reversep |
3052 (progn | |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3053 (goto-char (point-max)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3054 (re-search-backward regexp nil 'move)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3055 (goto-char (point-min)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3056 (re-search-forward regexp nil t)) |
270 | 3057 (message "%sRmail search for %s...done" |
3058 (if reversep "Reverse " "") | |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3059 regexp)) |
270 | 3060 (goto-char opoint) |
3061 (narrow-to-region omin omax) | |
3062 (ding) | |
3063 (message "Search failed: %s" regexp))))) | |
3064 | |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
3065 (defun rmail-search-backwards (regexp &optional n) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
3066 "Show message containing previous match for REGEXP. |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
3067 Prefix argument gives repeat count; negative argument means search |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
3068 forward (through later messages). |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
3069 Interactively, empty argument means use same regexp used last time." |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
3070 (interactive |
937
0f082d63bfd6
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
874
diff
changeset
|
3071 (let* ((reversep (>= (prefix-numeric-value current-prefix-arg) 0)) |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
3072 (prompt |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
3073 (concat (if reversep "Reverse " "") "Rmail search (regexp): ")) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
3074 regexp) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
3075 (if rmail-search-last-regexp |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
3076 (setq prompt (concat prompt |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
3077 "(default " |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
3078 rmail-search-last-regexp |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
3079 ") "))) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
3080 (setq regexp (read-string prompt)) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
3081 (cond ((not (equal regexp "")) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
3082 (setq rmail-search-last-regexp regexp)) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
3083 ((not rmail-search-last-regexp) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
3084 (error "No previous Rmail search string"))) |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
3085 (list rmail-search-last-regexp |
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
3086 (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
|
3087 (rmail-search regexp (- (or n 1)))) |
874
b945f592b94d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
3088 |
270 | 3089 ;; Show the first message which has the `unseen' attribute. |
3090 (defun rmail-first-unseen-message () | |
1360
9cb1a4b90b5c
Cleaned up rmail-first-unseen-message.
Joseph Arceneaux <jla@gnu.org>
parents:
1342
diff
changeset
|
3091 (rmail-maybe-set-message-counters) |
270 | 3092 (let ((current 1) |
3093 found) | |
3094 (save-restriction | |
3095 (widen) | |
10191
f81679f84f68
(rmail-first-unseen-message): Fix 1-off error.
Richard M. Stallman <rms@gnu.org>
parents:
10187
diff
changeset
|
3096 (while (and (not found) (<= current rmail-total-messages)) |
270 | 3097 (if (rmail-message-labels-p current ", ?\\(unseen\\),") |
346 | 3098 (setq found current)) |
3099 (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
|
3100 ;; 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
|
3101 ;; (if found |
776d4c59f256
* rmail.el (rmail-first-unseen-message): Don't show the message,
Joseph Arceneaux <jla@gnu.org>
parents:
1267
diff
changeset
|
3102 ;; (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
|
3103 found)) |
10662
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
3104 |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
3105 (defun rmail-next-same-subject (n) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
3106 "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
|
3107 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
|
3108 If N is negative, go backwards instead." |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
3109 (interactive "p") |
15746
d7a83c7ea12a
(rmail-next-same-subject): Don't set search-regexp
Karl Heuer <kwzh@gnu.org>
parents:
15549
diff
changeset
|
3110 (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
|
3111 (forward (> n 0)) |
d7a83c7ea12a
(rmail-next-same-subject): Don't set search-regexp
Karl Heuer <kwzh@gnu.org>
parents:
15549
diff
changeset
|
3112 (i rmail-current-message) |
17065
01cba1834368
(rmail-next-same-subject, rmail-reply): Ignore case, to
Karl Heuer <kwzh@gnu.org>
parents:
17011
diff
changeset
|
3113 (case-fold-search t) |
15746
d7a83c7ea12a
(rmail-next-same-subject): Don't set search-regexp
Karl Heuer <kwzh@gnu.org>
parents:
15549
diff
changeset
|
3114 search-regexp found) |
21100
79e564f91938
(rmail-next-same-subject): Ignore leading and
Richard M. Stallman <rms@gnu.org>
parents:
20984
diff
changeset
|
3115 (if (string-match "\\`[ \t]+" subject) |
79e564f91938
(rmail-next-same-subject): Ignore leading and
Richard M. Stallman <rms@gnu.org>
parents:
20984
diff
changeset
|
3116 (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
|
3117 (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
|
3118 (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
|
3119 (if (string-match "[ \t]+\\'" subject) |
79e564f91938
(rmail-next-same-subject): Ignore leading and
Richard M. Stallman <rms@gnu.org>
parents:
20984
diff
changeset
|
3120 (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
|
3121 (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
|
3122 (regexp-quote subject) |
24634
49bd935ccb48
(rmail-next-same-subject): When searching, ignore
Karl Heuer <kwzh@gnu.org>
parents:
24584
diff
changeset
|
3123 "[ \t]*\n")) |
10662
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
3124 (save-excursion |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
3125 (save-restriction |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
3126 (widen) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
3127 (while (and (/= n 0) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
3128 (if forward |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
3129 (< i rmail-total-messages) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
3130 (> i 1))) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
3131 (let (done) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
3132 (while (and (not done) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
3133 (if forward |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
3134 (< i rmail-total-messages) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
3135 (> i 1))) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
3136 (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
|
3137 (goto-char (rmail-msgbeg i)) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
3138 (search-forward "\n*** EOOH ***\n") |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
3139 (let ((beg (point)) end) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
3140 (search-forward "\n\n") |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
3141 (setq end (point)) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
3142 (goto-char beg) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
3143 (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
|
3144 (if done (setq found i))) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
3145 (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
|
3146 (if found |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
3147 (rmail-show-message found) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
3148 (error "No %s message with same subject" |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
3149 (if forward "following" "previous"))))) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
3150 |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
3151 (defun rmail-previous-same-subject (n) |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
3152 "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
|
3153 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
|
3154 If N is negative, go forwards instead." |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
3155 (interactive "p") |
cd968ab6a0eb
(rmail-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents:
10640
diff
changeset
|
3156 (rmail-next-same-subject (- n))) |
270 | 3157 |
3158 ;;;; *** Rmail Message Deletion Commands *** | |
3159 | |
3160 (defun rmail-message-deleted-p (n) | |
3161 (= (aref rmail-deleted-vector n) ?D)) | |
3162 | |
3163 (defun rmail-set-message-deleted-p (n state) | |
3164 (aset rmail-deleted-vector n (if state ?D ?\ ))) | |
3165 | |
3166 (defun rmail-delete-message () | |
3167 "Delete this message and stay on it." | |
3168 (interactive) | |
13477
5c500f39271c
(rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
13302
diff
changeset
|
3169 (rmail-set-attribute "deleted" t) |
5c500f39271c
(rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
13302
diff
changeset
|
3170 (run-hooks 'rmail-delete-message-hook)) |
270 | 3171 |
3172 (defun rmail-undelete-previous-message () | |
3173 "Back up to deleted message, select it, and undelete it." | |
3174 (interactive) | |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3175 (set-buffer rmail-buffer) |
270 | 3176 (let ((msg rmail-current-message)) |
3177 (while (and (> msg 0) | |
3178 (not (rmail-message-deleted-p msg))) | |
3179 (setq msg (1- msg))) | |
3180 (if (= msg 0) | |
3181 (error "No previous deleted message") | |
3182 (if (/= msg rmail-current-message) | |
3183 (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
|
3184 (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
|
3185 (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
|
3186 (save-excursion |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
3187 (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
|
3188 (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
|
3189 (rmail-maybe-display-summary)))) |
270 | 3190 |
3191 (defun rmail-delete-forward (&optional backward) | |
3192 "Delete this message and move to next nondeleted one. | |
3193 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
|
3194 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
|
3195 |
754b38c0e941
(rmail): Really don't get new mail if file name was given.
Richard M. Stallman <rms@gnu.org>
parents:
4819
diff
changeset
|
3196 Returns t if a new message is displayed after the delete, or nil otherwise." |
270 | 3197 (interactive "P") |
3198 (rmail-set-attribute "deleted" t) | |
13477
5c500f39271c
(rmail-delete-message-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
13302
diff
changeset
|
3199 (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
|
3200 (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
|
3201 (if (rmail-summary-exists) |
9394
802381617d14
(rmail-delete-forward): Use rmail-select-summary.
Richard M. Stallman <rms@gnu.org>
parents:
9380
diff
changeset
|
3202 (rmail-select-summary |
802381617d14
(rmail-delete-forward): Use rmail-select-summary.
Richard M. Stallman <rms@gnu.org>
parents:
9380
diff
changeset
|
3203 (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
|
3204 (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
|
3205 (rmail-maybe-display-summary)))) |
270 | 3206 |
3207 (defun rmail-delete-backward () | |
3208 "Delete this message and move to previous nondeleted one. | |
3209 Deleted messages stay in the file until the \\[rmail-expunge] command is given." | |
3210 (interactive) | |
3211 (rmail-delete-forward t)) | |
3212 | |
9153
029821174e53
(rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents:
9083
diff
changeset
|
3213 ;; 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
|
3214 ;; 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
|
3215 ;; DELETEDVEC should be rmail-deleted-vector. |
029821174e53
(rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents:
9083
diff
changeset
|
3216 ;; 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
|
3217 (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
|
3218 (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
|
3219 nil |
029821174e53
(rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents:
9083
diff
changeset
|
3220 (let ((i 0) |
029821174e53
(rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents:
9083
diff
changeset
|
3221 (newnum 0)) |
029821174e53
(rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents:
9083
diff
changeset
|
3222 (while (< i oldnum) |
029821174e53
(rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents:
9083
diff
changeset
|
3223 (if (/= (aref deletedvec i) ?D) |
029821174e53
(rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents:
9083
diff
changeset
|
3224 (setq newnum (1+ newnum))) |
029821174e53
(rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents:
9083
diff
changeset
|
3225 (setq i (1+ i))) |
029821174e53
(rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents:
9083
diff
changeset
|
3226 newnum))) |
029821174e53
(rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents:
9083
diff
changeset
|
3227 |
34185
f43d562a5b65
(rmail-expunge-confirmed): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34055
diff
changeset
|
3228 (defun rmail-expunge-confirmed () |
f43d562a5b65
(rmail-expunge-confirmed): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34055
diff
changeset
|
3229 "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
|
3230 See also user-option `rmail-confirm-expunge'." |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3231 (set-buffer rmail-buffer) |
34185
f43d562a5b65
(rmail-expunge-confirmed): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34055
diff
changeset
|
3232 (or (not (stringp rmail-deleted-vector)) |
f43d562a5b65
(rmail-expunge-confirmed): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34055
diff
changeset
|
3233 (not (string-match "D" rmail-deleted-vector)) |
f43d562a5b65
(rmail-expunge-confirmed): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34055
diff
changeset
|
3234 (null rmail-confirm-expunge) |
f43d562a5b65
(rmail-expunge-confirmed): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34055
diff
changeset
|
3235 (funcall rmail-confirm-expunge |
f43d562a5b65
(rmail-expunge-confirmed): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34055
diff
changeset
|
3236 "Erase deleted messages from Rmail file? "))) |
f43d562a5b65
(rmail-expunge-confirmed): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34055
diff
changeset
|
3237 |
53598
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
3238 (defun rmail-only-expunge (&optional dont-show) |
270 | 3239 "Actually erase all deleted messages in the file." |
3240 (interactive) | |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3241 (set-buffer rmail-buffer) |
270 | 3242 (message "Expunging deleted messages...") |
3243 ;; Discard all undo records for this buffer. | |
3244 (or (eq buffer-undo-list t) | |
3245 (setq buffer-undo-list nil)) | |
3246 (rmail-maybe-set-message-counters) | |
3247 (let* ((omax (- (buffer-size) (point-max))) | |
3248 (omin (- (buffer-size) (point-min))) | |
3249 (opoint (if (and (> rmail-current-message 0) | |
7037 | 3250 (rmail-message-deleted-p rmail-current-message)) |
3251 0 | |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3252 (if rmail-enable-mime |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3253 (with-current-buffer rmail-view-buffer |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3254 (- (point)(point-min))) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3255 (- (point) (point-min))))) |
270 | 3256 (messages-head (cons (aref rmail-message-vector 0) nil)) |
3257 (messages-tail messages-head) | |
3258 ;; Don't make any undo records for the expunging. | |
3259 (buffer-undo-list t) | |
3260 (win)) | |
3261 (unwind-protect | |
3262 (save-excursion | |
3263 (widen) | |
3264 (goto-char (point-min)) | |
3265 (let ((counter 0) | |
3266 (number 1) | |
3267 (total rmail-total-messages) | |
3268 (new-message-number rmail-current-message) | |
3269 (new-summary nil) | |
17620
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
3270 (new-msgref (list (list 0))) |
9153
029821174e53
(rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents:
9083
diff
changeset
|
3271 (rmailbuf (current-buffer)) |
270 | 3272 (buffer-read-only nil) |
3273 (messages rmail-message-vector) | |
3274 (deleted rmail-deleted-vector) | |
3275 (summary rmail-summary-vector)) | |
3276 (setq rmail-total-messages nil | |
3277 rmail-current-message nil | |
3278 rmail-message-vector nil | |
3279 rmail-deleted-vector nil | |
3280 rmail-summary-vector nil) | |
9153
029821174e53
(rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents:
9083
diff
changeset
|
3281 |
270 | 3282 (while (<= number total) |
3283 (if (= (aref deleted number) ?D) | |
3284 (progn | |
3285 (delete-region | |
3286 (marker-position (aref messages number)) | |
3287 (marker-position (aref messages (1+ number)))) | |
3288 (move-marker (aref messages number) nil) | |
3289 (if (> new-message-number counter) | |
3290 (setq new-message-number (1- new-message-number)))) | |
3291 (setq counter (1+ counter)) | |
3292 (setq messages-tail | |
3293 (setcdr messages-tail | |
3294 (cons (aref messages number) nil))) | |
3295 (setq new-summary | |
3296 (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
|
3297 new-summary)) |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
3298 (setq new-msgref |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
3299 (cons (aref rmail-msgref-vector number) |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
3300 new-msgref)) |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
3301 (setcar (car new-msgref) counter)) |
270 | 3302 (if (zerop (% (setq number (1+ number)) 20)) |
3303 (message "Expunging deleted messages...%d" number))) | |
3304 (setq messages-tail | |
3305 (setcdr messages-tail | |
3306 (cons (aref messages number) nil))) | |
3307 (setq rmail-current-message new-message-number | |
3308 rmail-total-messages counter | |
3309 rmail-message-vector (apply 'vector messages-head) | |
3310 rmail-deleted-vector (make-string (1+ counter) ?\ ) | |
3311 rmail-summary-vector (vconcat (nreverse new-summary)) | |
17620
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
3312 rmail-msgref-vector (apply 'vector (nreverse new-msgref)) |
270 | 3313 win t))) |
3314 (message "Expunging deleted messages...done") | |
3315 (if (not win) | |
3316 (narrow-to-region (- (buffer-size) omin) (- (buffer-size) omax))) | |
53598
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
3317 (if (not dont-show) |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
3318 (rmail-show-message |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
3319 (if (zerop rmail-current-message) 1 nil) |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
3320 (if rmail-enable-mime |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
3321 (goto-char (+ (point-min) opoint)) |
c66875fbc45d
(rmail-get-new-mail): New local rsf-number-of-spam.
Richard M. Stallman <rms@gnu.org>
parents:
53570
diff
changeset
|
3322 (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
|
3323 |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
3324 (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
|
3325 "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
|
3326 (interactive) |
34185
f43d562a5b65
(rmail-expunge-confirmed): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34055
diff
changeset
|
3327 (when (rmail-expunge-confirmed) |
28290
4aafdd90bf08
(rmail-confirm-expunge): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
27944
diff
changeset
|
3328 (rmail-only-expunge) |
4aafdd90bf08
(rmail-confirm-expunge): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
27944
diff
changeset
|
3329 (if (rmail-summary-exists) |
34185
f43d562a5b65
(rmail-expunge-confirmed): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
34055
diff
changeset
|
3330 (rmail-select-summary (rmail-update-summary))))) |
270 | 3331 |
3332 ;;;; *** Rmail Mailing Commands *** | |
3333 | |
16633
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
3334 (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
|
3335 replybuffer sendactions same-window others) |
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
3336 (let (yank-action) |
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
3337 (if replybuffer |
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
3338 (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
|
3339 (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
|
3340 (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
|
3341 (if same-window |
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
3342 (compose-mail to subject others |
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
3343 noerase nil |
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
3344 yank-action sendactions) |
55114
c58efa90d5a6
(rmail-mail-new-frame): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents:
55056
diff
changeset
|
3345 (if rmail-mail-new-frame |
16633
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
3346 (prog1 |
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
3347 (compose-mail to subject others |
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
3348 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
|
3349 yank-action sendactions) |
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
3350 ;; 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
|
3351 ;; 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
|
3352 (modify-frame-parameters (selected-frame) |
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
3353 '((mail-dedicated-frame . t)))) |
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
3354 (compose-mail to subject others |
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
3355 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
|
3356 yank-action sendactions))))) |
4108
e4fbcd480455
(rmail-mail-new-frame): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4071
diff
changeset
|
3357 |
270 | 3358 (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
|
3359 "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
|
3360 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
|
3361 original message into it." |
270 | 3362 (interactive) |
17093
f8584d52dd48
(rmail-view-buffer, rmail-enable-mime, rmail-show-mime-function,
Kenichi Handa <handa@m17n.org>
parents:
17065
diff
changeset
|
3363 (rmail-start-mail nil nil nil nil nil rmail-view-buffer)) |
270 | 3364 |
3365 (defun rmail-continue () | |
3366 "Continue composing outgoing message previously being composed." | |
3367 (interactive) | |
4108
e4fbcd480455
(rmail-mail-new-frame): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4071
diff
changeset
|
3368 (rmail-start-mail t)) |
270 | 3369 |
3370 (defun rmail-reply (just-sender) | |
3371 "Reply to the current message. | |
3372 Normally include CC: to all other recipients of original message; | |
3373 prefix argument means ignore them. While composing the reply, | |
3374 use \\[mail-yank-original] to yank the original message into it." | |
3375 (interactive "P") | |
16953
46b39d9f3ad0
(rmail-reply): Copy all the References: headers
Richard M. Stallman <rms@gnu.org>
parents:
16928
diff
changeset
|
3376 (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
|
3377 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
|
3378 (msgnum rmail-current-message)) |
270 | 3379 (save-excursion |
3380 (save-restriction | |
38305
3c5911d68b33
(rmail-reply): Don't forget to narrow header in
Gerd Moellmann <gerd@gnu.org>
parents:
38228
diff
changeset
|
3381 (if rmail-enable-mime |
3c5911d68b33
(rmail-reply): Don't forget to narrow header in
Gerd Moellmann <gerd@gnu.org>
parents:
38228
diff
changeset
|
3382 (narrow-to-region |
3c5911d68b33
(rmail-reply): Don't forget to narrow header in
Gerd Moellmann <gerd@gnu.org>
parents:
38228
diff
changeset
|
3383 (goto-char (point-min)) |
3c5911d68b33
(rmail-reply): Don't forget to narrow header in
Gerd Moellmann <gerd@gnu.org>
parents:
38228
diff
changeset
|
3384 (if (search-forward "\n\n" nil 'move) |
3c5911d68b33
(rmail-reply): Don't forget to narrow header in
Gerd Moellmann <gerd@gnu.org>
parents:
38228
diff
changeset
|
3385 (1+ (match-beginning 0)) |
3c5911d68b33
(rmail-reply): Don't forget to narrow header in
Gerd Moellmann <gerd@gnu.org>
parents:
38228
diff
changeset
|
3386 (point))) |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3387 (widen) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3388 (goto-char (rmail-msgbeg rmail-current-message)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3389 (forward-line 1) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3390 (if (= (following-char) ?0) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3391 (narrow-to-region |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3392 (progn (forward-line 2) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3393 (point)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3394 (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
|
3395 'move) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3396 (point))) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3397 (narrow-to-region (point) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3398 (progn (search-forward "\n*** EOOH ***\n") |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3399 (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
|
3400 (setq from (mail-fetch-field "from") |
60692
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
3401 reply-to (or (if just-sender |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
3402 (mail-fetch-field "mail-reply-to" nil t) |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
3403 (mail-fetch-field "mail-followup-to" nil t)) |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
3404 (mail-fetch-field "reply-to" nil t) |
270 | 3405 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
|
3406 cc (and (not just-sender) |
60692
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
3407 ;; mail-followup-to, if given, overrides cc. |
e2880855e3d0
(rmail-movemail-program, rmail-pop-password)
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
3408 (not (mail-fetch-field "mail-followup-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
|
3409 (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
|
3410 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
|
3411 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
|
3412 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
|
3413 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
|
3414 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
|
3415 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
|
3416 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
|
3417 (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
|
3418 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
|
3419 ;;; 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
|
3420 ;;; 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
|
3421 ;;; 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
|
3422 ))) |
446f51ea7cb8
(rmail-reply): Merge resent-to and resent-cc into to and cc.
Richard M. Stallman <rms@gnu.org>
parents:
16452
diff
changeset
|
3423 ;; 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
|
3424 (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
|
3425 (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
|
3426 (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
|
3427 (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
|
3428 (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
|
3429 (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
|
3430 (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
|
3431 (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
|
3432 ;; 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
|
3433 (and (stringp subject) |
10640 | 3434 (setq subject |
3435 (concat rmail-reply-prefix | |
17065
01cba1834368
(rmail-next-same-subject, rmail-reply): Ignore case, to
Karl Heuer <kwzh@gnu.org>
parents:
17011
diff
changeset
|
3436 (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
|
3437 (string-match rmail-reply-regexp subject)) |
10640 | 3438 (substring subject (match-end 0)) |
3439 subject)))) | |
18091
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3440 (rmail-start-mail |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3441 nil |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3442 ;; 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
|
3443 ;; since they can handle the names unstripped. |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3444 ;; 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
|
3445 ;; need the names to be stripped. |
49008
dfbf1b11349a
(rmail-reply): Don't call mail-strip-quoted-names.
Richard M. Stallman <rms@gnu.org>
parents:
48584
diff
changeset
|
3446 ;;; (mail-strip-quoted-names reply-to) |
62587
bb278282ddbc
(rmail-reply): Filter the list in reply-to through rmail-dont-reply-to.
Eli Zaretskii <eliz@gnu.org>
parents:
62402
diff
changeset
|
3447 ;; Remove unwanted names from reply-to, since Mail-Followup-To |
bb278282ddbc
(rmail-reply): Filter the list in reply-to through rmail-dont-reply-to.
Eli Zaretskii <eliz@gnu.org>
parents:
62402
diff
changeset
|
3448 ;; header causes all the names in it to wind up in reply-to, not |
bb278282ddbc
(rmail-reply): Filter the list in reply-to through rmail-dont-reply-to.
Eli Zaretskii <eliz@gnu.org>
parents:
62402
diff
changeset
|
3449 ;; in cc. But if what's left is an empty list, use the original. |
bb278282ddbc
(rmail-reply): Filter the list in reply-to through rmail-dont-reply-to.
Eli Zaretskii <eliz@gnu.org>
parents:
62402
diff
changeset
|
3450 (let* ((reply-to-list (rmail-dont-reply-to reply-to))) |
bb278282ddbc
(rmail-reply): Filter the list in reply-to through rmail-dont-reply-to.
Eli Zaretskii <eliz@gnu.org>
parents:
62402
diff
changeset
|
3451 (if (string= reply-to-list "") reply-to reply-to-list)) |
18091
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3452 subject |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3453 (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
|
3454 (if just-sender |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3455 nil |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3456 ;; 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
|
3457 ;; to do its job. |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3458 (let* ((cc-list (rmail-dont-reply-to |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3459 (mail-strip-quoted-names |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3460 (if (null cc) to (concat to ", " cc)))))) |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3461 (if (string= cc-list "") nil cc-list))) |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3462 rmail-view-buffer |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3463 (list (list 'rmail-mark-message |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3464 rmail-buffer |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3465 (with-current-buffer rmail-buffer |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3466 (aref rmail-msgref-vector msgnum)) |
18091
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3467 "answered")) |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3468 nil |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3469 (list (cons "References" (concat (mapconcat 'identity references " ") |
1bd633f97c45
(rmail-mmdf-delim1, rmail-mmdf-delim2):
Richard M. Stallman <rms@gnu.org>
parents:
17839
diff
changeset
|
3470 " " message-id)))))) |
17565
09d1f6578d7f
(rmail-reply): Pass Rmail buffer and msgnum
Richard M. Stallman <rms@gnu.org>
parents:
17306
diff
changeset
|
3471 |
17620
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
3472 (defun rmail-mark-message (buffer msgnum-list attribute) |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
3473 "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
|
3474 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
|
3475 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
|
3476 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
|
3477 (save-excursion |
09d1f6578d7f
(rmail-reply): Pass Rmail buffer and msgnum
Richard M. Stallman <rms@gnu.org>
parents:
17306
diff
changeset
|
3478 (set-buffer buffer) |
17620
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
3479 (if (car msgnum-list) |
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
3480 (rmail-set-attribute attribute t (car msgnum-list))))) |
270 | 3481 |
3482 (defun rmail-make-in-reply-to-field (from date message-id) | |
3483 (cond ((not from) | |
3484 (if message-id | |
3485 message-id | |
3486 nil)) | |
3487 (mail-use-rfc822 | |
3488 (require 'rfc822) | |
3489 (let ((tem (car (rfc822-addresses from)))) | |
3490 (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
|
3491 (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
|
3492 (string-match |
f842aabf9735
(rmail-make-in-reply-to-field): Don't cause an
Richard M. Stallman <rms@gnu.org>
parents:
19031
diff
changeset
|
3493 (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
|
3494 (substring tem 0 |
f842aabf9735
(rmail-make-in-reply-to-field): Don't cause an
Richard M. Stallman <rms@gnu.org>
parents:
19031
diff
changeset
|
3495 (match-beginning 0)) |
f842aabf9735
(rmail-make-in-reply-to-field): Don't cause an
Richard M. Stallman <rms@gnu.org>
parents:
19031
diff
changeset
|
3496 tem)) |
f842aabf9735
(rmail-make-in-reply-to-field): Don't cause an
Richard M. Stallman <rms@gnu.org>
parents:
19031
diff
changeset
|
3497 message-id)) |
f842aabf9735
(rmail-make-in-reply-to-field): Don't cause an
Richard M. Stallman <rms@gnu.org>
parents:
19031
diff
changeset
|
3498 ;; missing From, or Message-ID is sufficiently informative |
270 | 3499 message-id |
3500 (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
|
3501 ;; 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
|
3502 (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
|
3503 (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
|
3504 (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
|
3505 ;; 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
|
3506 (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
|
3507 (if date |
bb9b20ea092d
(rmail-make-in-reply-to-field): Discard text properties from
Richard M. Stallman <rms@gnu.org>
parents:
5611
diff
changeset
|
3508 (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
|
3509 field))))) |
20681
4a46ac370fc8
(rmail): Don't bind enable-multibyte-characters;
Richard M. Stallman <rms@gnu.org>
parents:
20662
diff
changeset
|
3510 ((let* ((foo "[^][\000-\037()<>@,;:\\\" ]+") |
4a46ac370fc8
(rmail): Don't bind enable-multibyte-characters;
Richard M. Stallman <rms@gnu.org>
parents:
20662
diff
changeset
|
3511 (bar "[^][\000-\037()<>@,;:\\\"]+")) |
4a46ac370fc8
(rmail): Don't bind enable-multibyte-characters;
Richard M. Stallman <rms@gnu.org>
parents:
20662
diff
changeset
|
3512 ;; These strings both match all non-ASCII characters. |
270 | 3513 (or (string-match (concat "\\`[ \t]*\\(" bar |
3514 "\\)\\(<" foo "@" foo ">\\)?[ \t]*\\'") | |
3515 ;; "Unix Loser <Foo@bar.edu>" => "Unix Loser" | |
3516 from) | |
3517 (string-match (concat "\\`[ \t]*<" foo "@" foo ">[ \t]*(\\(" | |
3518 bar "\\))[ \t]*\\'") | |
3519 ;; "<Bugs@bar.edu>" (Losing Unix) => "Losing Unix" | |
3520 from))) | |
3521 (let ((start (match-beginning 1)) | |
3522 (end (match-end 1))) | |
3523 ;; Trim whitespace which above regexp match allows | |
3524 (while (and (< start end) | |
3525 (memq (aref from start) '(?\t ?\ ))) | |
3526 (setq start (1+ start))) | |
3527 (while (and (< start end) | |
3528 (memq (aref from (1- end)) '(?\t ?\ ))) | |
3529 (setq end (1- end))) | |
3530 (let ((field (substring from start end))) | |
3531 (if date (setq field (concat "message from " field " on " date))) | |
3532 (if message-id | |
3533 ;; "<AA259@bar.edu> (message from Unix Loser on 1-Apr-89)" | |
3534 (concat message-id " (" field ")") | |
3535 field)))) | |
3536 (t | |
3537 ;; If we can't kludge it simply, do it correctly | |
3538 (let ((mail-use-rfc822 t)) | |
3539 (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
|
3540 |
2687
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
3541 (defun rmail-forward (resend) |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
3542 "Forward the current message to another user. |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
3543 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
|
3544 see the documentation of `rmail-resend'." |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
3545 (interactive "P") |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
3546 (if resend |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
3547 (call-interactively 'rmail-resend) |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3548 (let ((forward-buffer rmail-buffer) |
9153
029821174e53
(rmail-forward): Simplify insertion of forwarded msg.
Richard M. Stallman <rms@gnu.org>
parents:
9083
diff
changeset
|
3549 (msgnum rmail-current-message) |
2687
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
3550 (subject (concat "[" |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
3551 (let ((from (or (mail-fetch-field "From") |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
3552 (mail-fetch-field ">From")))) |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
3553 (if from |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
3554 (concat (mail-strip-quoted-names from) ": ") |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
3555 "")) |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
3556 (or (mail-fetch-field "Subject") "") |
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
3557 "]"))) |
16633
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
3558 (if (rmail-start-mail |
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
3559 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
|
3560 (list (list 'rmail-mark-message |
17620
30a88c9b3505
(rmail-msgref-vector): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17565
diff
changeset
|
3561 forward-buffer |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3562 (with-current-buffer rmail-buffer |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3563 (aref rmail-msgref-vector msgnum)) |
17565
09d1f6578d7f
(rmail-reply): Pass Rmail buffer and msgnum
Richard M. Stallman <rms@gnu.org>
parents:
17306
diff
changeset
|
3564 "forwarded")) |
16633
bd4dbc8ca6f7
(rmail-start-mail): Rewrite to use compose-mail.
Richard M. Stallman <rms@gnu.org>
parents:
16467
diff
changeset
|
3565 ;; 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
|
3566 ;; 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
|
3567 ;; 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
|
3568 ;; 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
|
3569 (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
|
3570 ;; 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
|
3571 (save-excursion |
4724
04714985ce20
(rmail-forward): Insert the text right after the header separator.
Richard M. Stallman <rms@gnu.org>
parents:
4698
diff
changeset
|
3572 ;; 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
|
3573 (goto-char (mail-text-start)) |
41511
19496cafe865
2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
39298
diff
changeset
|
3574 (if (or rmail-enable-mime rmail-enable-mime-composing) |
37611
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3575 (funcall rmail-insert-mime-forwarded-message-function |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3576 forward-buffer) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3577 (insert "------- Start of forwarded message -------\n") |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3578 ;; Quote lines with `- ' if they start with `-'. |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3579 (let ((beg (point)) end) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3580 (setq end (point-marker)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3581 (set-marker-insertion-type end t) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3582 (insert-buffer-substring forward-buffer) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3583 (goto-char beg) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3584 (while (re-search-forward "^-" end t) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3585 (beginning-of-line) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3586 (insert "- ") |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3587 (forward-line 1)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3588 (goto-char end) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3589 (skip-chars-backward "\n") |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3590 (if (< (point) end) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3591 (forward-char 1)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3592 (delete-region (point) end) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3593 (set-marker end nil)) |
73f25c014d5c
(rmail-insert-mime-forwarded-message-function)
Gerd Moellmann <gerd@gnu.org>
parents:
37592
diff
changeset
|
3594 (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
|
3595 (push-mark)))))) |
10970
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
3596 |
270 | 3597 (defun rmail-resend (address &optional from comment mail-alias-file) |
3598 "Resend current message to ADDRESSES. | |
5274
89b71a85be3e
(rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents:
5192
diff
changeset
|
3599 ADDRESSES should be a single address, a string consisting of several |
270 | 3600 addresses separated by commas, or a list of addresses. |
3601 | |
3602 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
|
3603 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
|
3604 Optional COMMENT is a string to insert as a comment in the resent message. |
270 | 3605 Optional ALIAS-FILE is alternate aliases file to be used by sendmail, |
3606 typically for purposes of moderating a list." | |
3607 (interactive "sResend to: ") | |
3484
bd26679f0db5
(rmail-resend): Require sendmail and mailalias.
Richard M. Stallman <rms@gnu.org>
parents:
3462
diff
changeset
|
3608 (require 'sendmail) |
bd26679f0db5
(rmail-resend): Require sendmail and mailalias.
Richard M. Stallman <rms@gnu.org>
parents:
3462
diff
changeset
|
3609 (require 'mailalias) |
37956
b59847354241
(rmail-revert): Modify to work in
Gerd Moellmann <gerd@gnu.org>
parents:
37839
diff
changeset
|
3610 (unless (or (eq rmail-view-buffer (current-buffer)) |
b59847354241
(rmail-revert): Modify to work in
Gerd Moellmann <gerd@gnu.org>
parents:
37839
diff
changeset
|
3611 (eq rmail-buffer (current-buffer))) |
27871
210900dff9a5
(rmail-resend): Verify buffer is really Rmail.
Gerd Moellmann <gerd@gnu.org>
parents:
27643
diff
changeset
|
3612 (error "Not an Rmail buffer")) |
19031
369a8580b08e
(rmail-resend): Use user-mail-address.
Richard M. Stallman <rms@gnu.org>
parents:
18990
diff
changeset
|
3613 (if (not from) (setq from user-mail-address)) |
270 | 3614 (let ((tembuf (generate-new-buffer " sendmail temp")) |
3615 (case-fold-search nil) | |
59118
a3caa12a673a
(rmail-resend): Let MAIL-ALIAS-FILE arg override mail-personal-alias-file.
Richard M. Stallman <rms@gnu.org>
parents:
58184
diff
changeset
|
3616 (mail-personal-alias-file |
a3caa12a673a
(rmail-resend): Let MAIL-ALIAS-FILE arg override mail-personal-alias-file.
Richard M. Stallman <rms@gnu.org>
parents:
58184
diff
changeset
|
3617 (or mail-alias-file mail-personal-alias-file)) |
23298
116f19dd86dc
(rmail-resend): Work properly if invoked from summary.
Karl Heuer <kwzh@gnu.org>
parents:
23293
diff
changeset
|
3618 (mailbuf rmail-buffer)) |
270 | 3619 (unwind-protect |
23298
116f19dd86dc
(rmail-resend): Work properly if invoked from summary.
Karl Heuer <kwzh@gnu.org>
parents:
23293
diff
changeset
|
3620 (with-current-buffer tembuf |
270 | 3621 ;;>> Copy message into temp buffer |
37956
b59847354241
(rmail-revert): Modify to work in
Gerd Moellmann <gerd@gnu.org>
parents:
37839
diff
changeset
|
3622 (if rmail-enable-mime |
b59847354241
(rmail-revert): Modify to work in
Gerd Moellmann <gerd@gnu.org>
parents:
37839
diff
changeset
|
3623 (funcall rmail-insert-mime-resent-message-function mailbuf) |
b59847354241
(rmail-revert): Modify to work in
Gerd Moellmann <gerd@gnu.org>
parents:
37839
diff
changeset
|
3624 (insert-buffer-substring mailbuf)) |
270 | 3625 (goto-char (point-min)) |
14033
d146539da475
(rmail-retry-failure): Bind inhibit-read-only.
Richard M. Stallman <rms@gnu.org>
parents:
13834
diff
changeset
|
3626 ;; 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
|
3627 ; 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
|
3628 (re-search-forward "^$" nil 'move) |
89b71a85be3e
(rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents:
5192
diff
changeset
|
3629 ; 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
|
3630 ; software may have inserted multiple Sender fields. |
89b71a85be3e
(rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents:
5192
diff
changeset
|
3631 (while (re-search-backward "^Sender:" nil t) |
89b71a85be3e
(rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents:
5192
diff
changeset
|
3632 (let (beg) |
89b71a85be3e
(rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents:
5192
diff
changeset
|
3633 (setq beg (point)) |
89b71a85be3e
(rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents:
5192
diff
changeset
|
3634 (forward-line 1) |
89b71a85be3e
(rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents:
5192
diff
changeset
|
3635 (while (looking-at "[ \t]") |
89b71a85be3e
(rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents:
5192
diff
changeset
|
3636 (forward-line 1)) |
89b71a85be3e
(rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents:
5192
diff
changeset
|
3637 (delete-region beg (point)))) |
89b71a85be3e
(rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents:
5192
diff
changeset
|
3638 ; 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
|
3639 ; are inserted there. |
89b71a85be3e
(rmail-quit): Expunge without updating summary.
Richard M. Stallman <rms@gnu.org>
parents:
5192
diff
changeset
|
3640 (goto-char (point-min)) |
270 | 3641 ;;>> Insert resent-from: |
3642 (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
|
3643 (insert "Resent-Date: " (mail-rfc822-date) "\n") |
270 | 3644 ;;>> Insert resent-to: and bcc if need be. |
3645 (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
|
3646 (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
|
3647 (insert "Resent-Bcc: " (user-login-name) "\n")) |
270 | 3648 (insert "Resent-To: " (if (stringp address) |
3649 address | |
3650 (mapconcat 'identity address ",\n\t")) | |
3651 "\n") | |
11452
a24224fc5a92
(rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents:
11049
diff
changeset
|
3652 ;; 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
|
3653 (save-excursion |
11452
a24224fc5a92
(rmail-reformat-message): Call `rmail-clear-headers'
Richard M. Stallman <rms@gnu.org>
parents:
11049
diff
changeset
|
3654 (if (featurep 'mailabbrev) |
11533
2d1e996c4359
(rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents:
11497
diff
changeset
|
3655 (let ((end (point-marker)) |
2d1e996c4359
(rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents:
11497
diff
changeset
|
3656 (local-abbrev-table mail-abbrevs) |
2d1e996c4359
(rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents:
11497
diff
changeset
|
3657 (old-syntax-table (syntax-table))) |
2d1e996c4359
(rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents:
11497
diff
changeset
|
3658 (if (and (not (vectorp mail-abbrevs)) |
2d1e996c4359
(rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents:
11497
diff
changeset
|
3659 (file-exists-p mail-personal-alias-file)) |
2d1e996c4359
(rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents:
11497
diff
changeset
|
3660 (build-mail-abbrevs)) |
44141
264c168daeaa
(rmail-resend): Call mail-abbrev-make-syntax-table.
Richard M. Stallman <rms@gnu.org>
parents:
44025
diff
changeset
|
3661 (unless mail-abbrev-syntax-table |
264c168daeaa
(rmail-resend): Call mail-abbrev-make-syntax-table.
Richard M. Stallman <rms@gnu.org>
parents:
44025
diff
changeset
|
3662 (mail-abbrev-make-syntax-table)) |
11533
2d1e996c4359
(rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents:
11497
diff
changeset
|
3663 (set-syntax-table mail-abbrev-syntax-table) |
2d1e996c4359
(rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents:
11497
diff
changeset
|
3664 (goto-char before) |
2d1e996c4359
(rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents:
11497
diff
changeset
|
3665 (while (and (< (point) end) |
2d1e996c4359
(rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents:
11497
diff
changeset
|
3666 (progn (forward-word 1) |
2d1e996c4359
(rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents:
11497
diff
changeset
|
3667 (<= (point) end))) |
2d1e996c4359
(rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents:
11497
diff
changeset
|
3668 (expand-abbrev)) |
2d1e996c4359
(rmail-resend): Fix abbrev expansion.
Richard M. Stallman <rms@gnu.org>
parents:
11497
diff
changeset
|
3669 (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
|
3670 (expand-mail-aliases before (point))))) |
270 | 3671 ;;>> Set up comment, if any. |
3672 (if (and (sequencep comment) (not (zerop (length comment)))) | |
3673 (let ((before (point)) | |
3674 after) | |
3675 (insert comment) | |
3676 (or (eolp) (insert "\n")) | |
3677 (setq after (point)) | |
3678 (goto-char before) | |
3679 (while (< (point) after) | |
3680 (insert "Resent-Comment: ") | |
3681 (forward-line 1)))) | |
3682 ;; Don't expand aliases in the destination fields | |
3683 ;; of the original message. | |
3684 (let (mail-aliases) | |
5470
b8e8802d2216
(rmail-resend): Use send-mail-function.
Richard M. Stallman <rms@gnu.org>
parents:
5466
diff
changeset
|
3685 (funcall send-mail-function))) |
2687
37cca1d50b6a
(rmail-resend): Add `resent' attribute.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
3686 (kill-buffer tembuf)) |
23298
116f19dd86dc
(rmail-resend): Work properly if invoked from summary.
Karl Heuer <kwzh@gnu.org>
parents:
23293
diff
changeset
|
3687 (with-current-buffer rmail-buffer |
116f19dd86dc
(rmail-resend): Work properly if invoked from summary.
Karl Heuer <kwzh@gnu.org>
parents:
23293
diff
changeset
|
3688 (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
|
3689 |
1267
1e1a54ebb29b
(mail-unsent-separator): Add another alternative.
Richard M. Stallman <rms@gnu.org>
parents:
1165
diff
changeset
|
3690 (defvar mail-unsent-separator |
1370
c017b62c8073
(mail-unsent-separator): Allow "original message" as alternative.
Richard M. Stallman <rms@gnu.org>
parents:
1360
diff
changeset
|
3691 (concat "^ *---+ +Unsent message follows +---+ *$\\|" |
c017b62c8073
(mail-unsent-separator): Allow "original message" as alternative.
Richard M. Stallman <rms@gnu.org>
parents:
1360
diff
changeset
|
3692 "^ *---+ +Returned message +---+ *$\\|" |
22158
aca5c8cb2c04
(mail-unsent-separator): Handle "returned message follows".
Richard M. Stallman <rms@gnu.org>
parents:
22135
diff
changeset
|
3693 "^ *---+ *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
|
3694 "^Start of returned message$\\|" |
22610
f5539d91e129
(mail-unsent-separator): Add new alternative.
Richard M. Stallman <rms@gnu.org>
parents:
22591
diff
changeset
|
3695 "^---+ 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
|
3696 "^ *---+ +Original message +---+ *$\\|" |
1757
7e85913523ef
(mail-unsent-separator): Add `-- begin message --'.
Richard M. Stallman <rms@gnu.org>
parents:
1704
diff
changeset
|
3697 "^ *--+ +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
|
3698 "^ *---+ +Original message follows +---+ *$\\|" |
20984
f27355b19aba
(rmail-retry-failure): Don't insist on finding
Karl Heuer <kwzh@gnu.org>
parents:
20953
diff
changeset
|
3699 "^ *---+ +Your message follows +---+ *$\\|" |
24929
6ba667635e10
(mail-unsent-separator): Add a missing \\|.
Richard M. Stallman <rms@gnu.org>
parents:
24634
diff
changeset
|
3700 "^|? *---+ +Message text follows: +---+ *|?$\\|" |
30100
020fc2e83129
(mail-unsent-separator): Changed "the" to "\\w+", as
Gerd Moellmann <gerd@gnu.org>
parents:
29301
diff
changeset
|
3701 "^ *---+ +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
|
3702 "A regexp that matches the separator before the text of a failed message.") |
270 | 3703 |
17197
7689ab3937cc
(rmail-retry-failure): Special handling for mime.
Richard M. Stallman <rms@gnu.org>
parents:
17164
diff
changeset
|
3704 (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
|
3705 "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
|
3706 |
270 | 3707 (defun rmail-retry-failure () |
3708 "Edit a mail message which is based on the contents of the current message. | |
3709 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
|
3710 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
|
3711 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
|
3712 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
|
3713 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
|
3714 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
|
3715 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
|
3716 specifying headers which should not be copied into the new message." |
270 | 3717 (interactive) |
3718 (require 'mail-utils) | |
17821
c0422adc1b0e
(rmail-retry-failure): Rename local to rmail-this-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
17762
diff
changeset
|
3719 (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
|
3720 (msgnum rmail-current-message) |
38228
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3721 bounce-start bounce-end bounce-indent resending |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3722 ;; Fetch any content-type header in current message |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3723 ;; Must search thru the whole unpruned header. |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3724 (content-type |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3725 (save-excursion |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3726 (save-restriction |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3727 (rmail-narrow-to-non-pruned-header) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3728 (mail-fetch-field "Content-Type") )))) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3729 (save-excursion |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3730 (goto-char (point-min)) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3731 (let ((case-fold-search t)) |
45144
30db00c75dbf
(rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents:
44141
diff
changeset
|
3732 (if (and content-type |
30db00c75dbf
(rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents:
44141
diff
changeset
|
3733 (string-match |
30db00c75dbf
(rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents:
44141
diff
changeset
|
3734 ";[\n\t ]*boundary=\"?\\([-0-9a-z'()+_,./:=? ]+\\)\"?" |
38228
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3735 content-type)) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3736 ;; Handle a MIME multipart bounce message. |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3737 (let ((codestring |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3738 (concat "\n--" |
45144
30db00c75dbf
(rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents:
44141
diff
changeset
|
3739 (substring content-type (match-beginning 1) |
38228
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3740 (match-end 1))))) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3741 (unless (re-search-forward mail-mime-unsent-header nil t) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3742 (error "Cannot find beginning of header in failed message")) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3743 (unless (search-forward "\n\n" nil t) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3744 (error "Cannot find start of Mime data in failed message")) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3745 (setq bounce-start (point)) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3746 (if (search-forward codestring nil t) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3747 (setq bounce-end (match-beginning 0)) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3748 (setq bounce-end (point-max)))) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3749 ;; Non-MIME bounce. |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3750 (or (re-search-forward mail-unsent-separator nil t) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3751 (error "Cannot parse this as a failure message")) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3752 (skip-chars-forward "\n") |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3753 ;; Support a style of failure message in which the original |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3754 ;; message is indented, and included within lines saying |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3755 ;; `Start of returned message' and `End of returned message'. |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3756 (if (looking-at " +Received:") |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3757 (progn |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3758 (setq bounce-start (point)) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3759 (skip-chars-forward " ") |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3760 (setq bounce-indent (- (current-column))) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3761 (goto-char (point-max)) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3762 (re-search-backward "^End of returned message$" nil t) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3763 (setq bounce-end (point))) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3764 ;; One message contained a few random lines before |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3765 ;; the old message header. The first line of the |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3766 ;; message started with two hyphens. A blank line |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3767 ;; followed these random lines. The same line |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3768 ;; beginning with two hyphens was possibly marking |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3769 ;; the end of the message. |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3770 (if (looking-at "^--") |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3771 (let ((boundary (buffer-substring-no-properties |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3772 (point) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3773 (progn (end-of-line) (point))))) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3774 (search-forward "\n\n") |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3775 (skip-chars-forward "\n") |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3776 (setq bounce-start (point)) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3777 (goto-char (point-max)) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3778 (search-backward (concat "\n\n" boundary) bounce-start t) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3779 (setq bounce-end (point))) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3780 (setq bounce-start (point) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3781 bounce-end (point-max))) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3782 (unless (search-forward "\n\n" nil t) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3783 (error "Cannot find end of header in failed message")))))) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3784 ;; We have found the message that bounced, within the current message. |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3785 ;; Now start sending new message; default header fields from original. |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3786 ;; Turn off the usual actions for initializing the message body |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3787 ;; because we want to get only the text from the failure message. |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3788 (let (mail-signature mail-setup-hook) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3789 (if (rmail-start-mail nil nil nil nil nil rmail-this-buffer |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3790 (list (list 'rmail-mark-message |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3791 rmail-this-buffer |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3792 (aref rmail-msgref-vector msgnum) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3793 "retried"))) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3794 ;; Insert original text as initial text of new draft message. |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3795 ;; Bind inhibit-read-only since the header delimiter |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3796 ;; of the previous message was probably read-only. |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3797 (let ((inhibit-read-only t) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3798 rmail-displayed-headers |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3799 rmail-ignored-headers) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3800 (erase-buffer) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3801 (insert-buffer-substring rmail-this-buffer |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3802 bounce-start bounce-end) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3803 (goto-char (point-min)) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3804 (if bounce-indent |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3805 (indent-rigidly (point-min) (point-max) bounce-indent)) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3806 (rmail-clear-headers rmail-retry-ignored-headers) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3807 (rmail-clear-headers "^sender:\\|^return-path:\\|^received:") |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3808 (mail-sendmail-delimit-header) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3809 (save-restriction |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3810 (narrow-to-region (point-min) (mail-header-end)) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3811 (setq resending (mail-fetch-field "resent-to")) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3812 (if mail-self-blind |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3813 (if resending |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3814 (insert "Resent-Bcc: " (user-login-name) "\n") |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3815 (insert "BCC: " (user-login-name) "\n")))) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3816 (goto-char (point-min)) |
812026b169d4
(rmail-reformat-message): Bind inhibit-read-only to t.
Richard M. Stallman <rms@gnu.org>
parents:
38191
diff
changeset
|
3817 (mail-position-on-field (if resending "Resent-To" "To") t)))))) |
10970
c71d4c1319e4
(rmail-duplicate-message): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10815
diff
changeset
|
3818 |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
3819 (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
|
3820 "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
|
3821 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
|
3822 (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
|
3823 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
|
3824 |
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
3825 (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
|
3826 "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
|
3827 (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
|
3828 |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
3829 (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
|
3830 "*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
|
3831 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
|
3832 :type 'boolean |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
3833 :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
|
3834 |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
3835 (defcustom rmail-summary-window-size nil |
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
3836 "*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
|
3837 :type '(choice (const :tag "Disabled" nil) integer) |
17630
de5770c149d9
Add defgroups, and use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17620
diff
changeset
|
3838 :group 'rmail-summary) |
6408
185b1fd3a525
(rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6389
diff
changeset
|
3839 |
2076
5140299129c3
(rmail-delete-forward): Go to summary buf to change D mark.
Richard M. Stallman <rms@gnu.org>
parents:
2006
diff
changeset
|
3840 ;; 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
|
3841 (defun rmail-maybe-display-summary () |
6408
185b1fd3a525
(rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6389
diff
changeset
|
3842 (let ((selected (selected-window)) |
185b1fd3a525
(rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6389
diff
changeset
|
3843 window) |
185b1fd3a525
(rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6389
diff
changeset
|
3844 ;; 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
|
3845 (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
|
3846 rmail-redisplay-summary |
8533
a0af63b5bc45
(rmail-retry-failure): Narrow to just the old header
Richard M. Stallman <rms@gnu.org>
parents:
8506
diff
changeset
|
3847 (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
|
3848 ;; 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
|
3849 (let ((frame (window-frame |
a0af63b5bc45
(rmail-retry-failure): Narrow to just the old header
Richard M. Stallman <rms@gnu.org>
parents:
8506
diff
changeset
|
3850 (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
|
3851 (make-frame-visible frame) |
a0af63b5bc45
(rmail-retry-failure): Narrow to just the old header
Richard M. Stallman <rms@gnu.org>
parents:
8506
diff
changeset
|
3852 (raise-frame frame)) |
a0af63b5bc45
(rmail-retry-failure): Narrow to just the old header
Richard M. Stallman <rms@gnu.org>
parents:
8506
diff
changeset
|
3853 (display-buffer rmail-summary-buffer))) |
6408
185b1fd3a525
(rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6389
diff
changeset
|
3854 ;; 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
|
3855 (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
|
3856 rmail-summary-window-size |
185b1fd3a525
(rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6389
diff
changeset
|
3857 (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
|
3858 ;; 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
|
3859 (not (eq window (frame-root-window (window-frame window)))) |
45144
30db00c75dbf
(rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents:
44141
diff
changeset
|
3860 (unwind-protect |
6408
185b1fd3a525
(rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6389
diff
changeset
|
3861 (progn |
185b1fd3a525
(rmail-summary-window-size): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6389
diff
changeset
|
3862 (select-window window) |
14779
afbd0214f6ec
Must fontify only if we're actually showing a message.
Simon Marshall <simon@gnu.org>
parents:
14749
diff
changeset
|
3863 (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
|
3864 (select-window selected))))) |
270 | 3865 |
14374
e2423983be05
Support for local fontification.
Simon Marshall <simon@gnu.org>
parents:
14370
diff
changeset
|
3866 ;;;; *** Rmail Local Fontification *** |
e2423983be05
Support for local fontification.
Simon Marshall <simon@gnu.org>
parents:
14370
diff
changeset
|
3867 |
e2423983be05
Support for local fontification.
Simon Marshall <simon@gnu.org>
parents:
14370
diff
changeset
|
3868 (defun rmail-fontify-buffer-function () |
e2423983be05
Support for local fontification.
Simon Marshall <simon@gnu.org>
parents:
14370
diff
changeset
|
3869 ;; 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
|
3870 (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
|
3871 ;; 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
|
3872 (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
|
3873 ;; Prevent Font Lock mode from kicking in. |
14467
f95ca90841d7
Fix up specialised fontification stuff.
Simon Marshall <simon@gnu.org>
parents:
14374
diff
changeset
|
3874 (setq font-lock-fontified t)) |
14374
e2423983be05
Support for local fontification.
Simon Marshall <simon@gnu.org>
parents:
14370
diff
changeset
|
3875 |
e2423983be05
Support for local fontification.
Simon Marshall <simon@gnu.org>
parents:
14370
diff
changeset
|
3876 (defun rmail-unfontify-buffer-function () |
e2423983be05
Support for local fontification.
Simon Marshall <simon@gnu.org>
parents:
14370
diff
changeset
|
3877 ;; 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
|
3878 (let ((modified (buffer-modified-p)) |
f95ca90841d7
Fix up specialised fontification stuff.
Simon Marshall <simon@gnu.org>
parents:
14374
diff
changeset
|
3879 (buffer-undo-list t) (inhibit-read-only t) |
f95ca90841d7
Fix up specialised fontification stuff.
Simon Marshall <simon@gnu.org>
parents:
14374
diff
changeset
|
3880 before-change-functions after-change-functions |
f95ca90841d7
Fix up specialised fontification stuff.
Simon Marshall <simon@gnu.org>
parents:
14374
diff
changeset
|
3881 buffer-file-name buffer-file-truename) |
f95ca90841d7
Fix up specialised fontification stuff.
Simon Marshall <simon@gnu.org>
parents:
14374
diff
changeset
|
3882 (save-restriction |
f95ca90841d7
Fix up specialised fontification stuff.
Simon Marshall <simon@gnu.org>
parents:
14374
diff
changeset
|
3883 (widen) |
f95ca90841d7
Fix up specialised fontification stuff.
Simon Marshall <simon@gnu.org>
parents:
14374
diff
changeset
|
3884 (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
|
3885 (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
|
3886 (font-lock-default-unfontify-buffer) |
467e9d219590
(rmail-fontify-message, rmail-unfontify-buffer-function):
Richard M. Stallman <rms@gnu.org>
parents:
14779
diff
changeset
|
3887 (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
|
3888 |
e2423983be05
Support for local fontification.
Simon Marshall <simon@gnu.org>
parents:
14370
diff
changeset
|
3889 (defun rmail-fontify-message () |
e2423983be05
Support for local fontification.
Simon Marshall <simon@gnu.org>
parents:
14370
diff
changeset
|
3890 ;; Fontify the current message if it is not already fontified. |
e2423983be05
Support for local fontification.
Simon Marshall <simon@gnu.org>
parents:
14370
diff
changeset
|
3891 (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
|
3892 (let ((modified (buffer-modified-p)) |
e2423983be05
Support for local fontification.
Simon Marshall <simon@gnu.org>
parents:
14370
diff
changeset
|
3893 (buffer-undo-list t) (inhibit-read-only t) |
e2423983be05
Support for local fontification.
Simon Marshall <simon@gnu.org>
parents:
14370
diff
changeset
|
3894 before-change-functions after-change-functions |
e2423983be05
Support for local fontification.
Simon Marshall <simon@gnu.org>
parents:
14370
diff
changeset
|
3895 buffer-file-name buffer-file-truename) |
e2423983be05
Support for local fontification.
Simon Marshall <simon@gnu.org>
parents:
14370
diff
changeset
|
3896 (save-excursion |
e2423983be05
Support for local fontification.
Simon Marshall <simon@gnu.org>
parents:
14370
diff
changeset
|
3897 (save-match-data |
e2423983be05
Support for local fontification.
Simon Marshall <simon@gnu.org>
parents:
14370
diff
changeset
|
3898 (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
|
3899 (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
|
3900 (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
|
3901 |
20757
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3902 ;;; Speedbar support for RMAIL files. |
22732
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3903 (eval-when-compile (require 'speedbar)) |
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3904 |
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3905 (defvar rmail-speedbar-match-folder-regexp "^[A-Z0-9]+\\(\\.[A-Z0-9]+\\)?$" |
47024
15430c8d0eaa
* startup.el (normal-splash-screen): Ensure splash buffer is
John Paul Wallington <jpw@pobox.com>
parents:
46924
diff
changeset
|
3906 "*This regex is used to match folder names to be displayed in speedbar. |
22732
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3907 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
|
3908 browsing, and moving of messages.") |
20757
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3909 |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3910 (defvar rmail-speedbar-last-user nil |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3911 "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
|
3912 |
22732
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3913 (defvar rmail-speedbar-key-map nil |
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3914 "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
|
3915 |
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3916 (defun rmail-install-speedbar-variables () |
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3917 "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
|
3918 (if rmail-speedbar-key-map |
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3919 nil |
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3920 (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
|
3921 |
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3922 (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
|
3923 (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
|
3924 (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
|
3925 (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
|
3926 '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
|
3927 |
20757
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3928 (defvar rmail-speedbar-menu-items |
22732
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3929 '(["Read Folder" speedbar-edit-line t] |
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3930 ["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
|
3931 (save-excursion (beginning-of-line) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3932 (looking-at "<M> "))]) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3933 "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
|
3934 |
22732
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3935 ;; 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
|
3936 (if (featurep 'speedbar) |
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3937 (rmail-install-speedbar-variables) |
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3938 (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
|
3939 |
20757
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3940 (defun rmail-speedbar-buttons (buffer) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3941 "Create buttons for BUFFER containing rmail messages. |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3942 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
|
3943 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
|
3944 current message into that RMAIL folder." |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3945 (let ((from nil)) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3946 (save-excursion |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3947 (set-buffer buffer) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3948 (goto-char (point-min)) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3949 (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
|
3950 (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
|
3951 (setq from t))) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3952 (if from |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3953 nil |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3954 (setq from (buffer-substring (point) (save-excursion |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3955 (end-of-line) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3956 (point)))))) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3957 (goto-char (point-min)) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3958 (if (and (looking-at "Reply to:") |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3959 (equal from rmail-speedbar-last-user)) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3960 nil |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3961 (setq rmail-speedbar-last-user from) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3962 (erase-buffer) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3963 (insert "Reply To:\n") |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3964 (if (stringp from) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3965 (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
|
3966 'rmail-speedbar-button 'rmail-reply)) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3967 (insert "Folders:\n") |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3968 (let* ((case-fold-search nil) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3969 (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
|
3970 default-directory) |
22732
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3971 nil rmail-speedbar-match-folder-regexp))) |
20757
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3972 (while df |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3973 (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
|
3974 'rmail-speedbar-move-message (car df)) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3975 (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
|
3976 'rmail-speedbar-find-file nil t) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3977 (setq df (cdr df))))))) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3978 |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3979 (defun rmail-speedbar-button (text token indent) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3980 "Execute an rmail command specified by TEXT. |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3981 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
|
3982 (speedbar-with-attached-buffer |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3983 (funcall token t))) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3984 |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3985 (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
|
3986 "Load in the rmail file TEXT. |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3987 TOKEN and INDENT are not used." |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3988 (speedbar-with-attached-buffer |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3989 (message "Loading in RMAIL file %s..." text) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3990 (find-file text))) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3991 |
22732
3408cd75e193
No longer depends on speedbspec for byte compile.
Karl Heuer <kwzh@gnu.org>
parents:
22724
diff
changeset
|
3992 (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
|
3993 "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
|
3994 (interactive) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3995 (save-excursion |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3996 (beginning-of-line) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3997 (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
|
3998 (progn |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
3999 (forward-char -2) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
4000 (speedbar-do-function-pointer))))) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
4001 |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
4002 (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
|
4003 "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
|
4004 TEXT and INDENT are not used." |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
4005 (speedbar-with-attached-buffer |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
4006 (message "Moving message to %s" token) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
4007 (rmail-output-to-rmail-file token))) |
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
4008 |
22838
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
4009 ; 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
|
4010 ; 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
|
4011 ; 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
|
4012 ; 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
|
4013 |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
4014 ;;;###autoload |
59561
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
4015 (defun rmail-set-remote-password (password) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
4016 "Set PASSWORD to be used for retrieving mail from a POP or IMAP server." |
22838
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
4017 (interactive "sPassword: ") |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
4018 (if password |
59561
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
4019 (setq rmail-encoded-remote-password |
22838
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
4020 (rmail-encode-string password (emacs-pid))) |
59561
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
4021 (setq rmail-remote-password nil) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
4022 (setq rmail-encoded-remote-password nil))) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
4023 |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
4024 (defun rmail-get-remote-password (imap) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
4025 "Get the password for retrieving mail from a POP or IMAP server. If none |
22838
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
4026 has been set, then prompt the user for one." |
59561
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
4027 (when (not rmail-encoded-remote-password) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
4028 (if (not rmail-remote-password) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
4029 (setq rmail-remote-password |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
4030 (read-passwd (if imap |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
4031 "IMAP password: " |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
4032 "POP password: ")))) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
4033 (rmail-set-remote-password rmail-remote-password) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
4034 (setq rmail-remote-password nil)) |
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
4035 (rmail-encode-string rmail-encoded-remote-password (emacs-pid))) |
22838
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
4036 |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
4037 (defun rmail-have-password () |
59561
1e7f10c55429
Updated to work with movemail from GNU Mailutils
Eli Zaretskii <eliz@gnu.org>
parents:
59118
diff
changeset
|
4038 (or rmail-remote-password rmail-encoded-remote-password)) |
22838
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
4039 |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
4040 (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
|
4041 "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
|
4042 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
|
4043 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
|
4044 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
|
4045 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
|
4046 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
|
4047 (setq mask (abs mask)) ; doesn't work if negative |
45144
30db00c75dbf
(rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
Francesco Potortì <pot@gnu.org>
parents:
44141
diff
changeset
|
4048 (let* ((string-vector (string-to-vector string)) (i 0) |
22838
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
4049 (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
|
4050 (while (< i len) |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
4051 (if (= curmask 0) |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
4052 (setq curmask mask)) |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
4053 (setq charmask (% curmask 256)) |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
4054 (setq curmask (lsh curmask -8)) |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
4055 (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
|
4056 (setq i (1+ i))) |
4b3e0d38cdb0
(rmail-insert-inbox-text): Use rmail-have-password,
Richard M. Stallman <rms@gnu.org>
parents:
22732
diff
changeset
|
4057 (concat string-vector))) |
20757
f900cfe382e4
Added speedbar support for RMAIL files.
Eric M. Ludlam <zappo@gnu.org>
parents:
20681
diff
changeset
|
4058 |
55056
c7ded215e268
(rmail-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
parents:
54990
diff
changeset
|
4059 ;;;; Desktop support |
c7ded215e268
(rmail-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
parents:
54990
diff
changeset
|
4060 |
c7ded215e268
(rmail-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
parents:
54990
diff
changeset
|
4061 ;;;###autoload |
c7ded215e268
(rmail-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
parents:
54990
diff
changeset
|
4062 (defun rmail-restore-desktop-buffer (desktop-buffer-file-name |
c7ded215e268
(rmail-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
parents:
54990
diff
changeset
|
4063 desktop-buffer-name |
c7ded215e268
(rmail-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
parents:
54990
diff
changeset
|
4064 desktop-buffer-misc) |
c7ded215e268
(rmail-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
parents:
54990
diff
changeset
|
4065 "Restore an rmail buffer specified in a desktop file." |
c7ded215e268
(rmail-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
parents:
54990
diff
changeset
|
4066 (condition-case error |
c7ded215e268
(rmail-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
parents:
54990
diff
changeset
|
4067 (progn |
c7ded215e268
(rmail-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
parents:
54990
diff
changeset
|
4068 (rmail-input desktop-buffer-file-name) |
c7ded215e268
(rmail-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
parents:
54990
diff
changeset
|
4069 (if (eq major-mode 'rmail-mode) |
c7ded215e268
(rmail-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
parents:
54990
diff
changeset
|
4070 (current-buffer) |
c7ded215e268
(rmail-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
parents:
54990
diff
changeset
|
4071 rmail-buffer)) |
c7ded215e268
(rmail-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
parents:
54990
diff
changeset
|
4072 (file-locked |
c7ded215e268
(rmail-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
parents:
54990
diff
changeset
|
4073 (kill-buffer (current-buffer)) |
c7ded215e268
(rmail-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
parents:
54990
diff
changeset
|
4074 nil))) |
c7ded215e268
(rmail-restore-desktop-buffer): Move from desktop.el. Add Parameters.
Lars Hansen <larsh@soem.dk>
parents:
54990
diff
changeset
|
4075 |
584 | 4076 (provide 'rmail) |
4077 | |
52401 | 4078 ;;; arch-tag: cff0a950-57fe-4f73-a86e-91ff75afd06c |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
621
diff
changeset
|
4079 ;;; rmail.el ends here |