Mercurial > emacs
annotate lisp/gnus/mail-source.el @ 110256:db1e98f7484b
gnus-start.el (gnus-get-unread-articles): If being given an explicit level to get unread articles from, then use that for foreign groups, too.
author | Katsumi Yamaoka <yamaoka@jpl.org> |
---|---|
date | Tue, 07 Sep 2010 00:00:56 +0000 |
parents | 6cdcc53703e4 |
children | ef15e8533a1c |
rev | line source |
---|---|
31717 | 1 ;;; mail-source.el --- functions for fetching mail |
64754
fafd692d1e40
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64085
diff
changeset
|
2 |
107481
2630a1cf07ac
* mail-source.el (gnus-message): Declare.
Glenn Morris <rgm@gnu.org>
parents:
106815
diff
changeset
|
3 ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, |
2630a1cf07ac
* mail-source.el (gnus-message): Declare.
Glenn Morris <rgm@gnu.org>
parents:
106815
diff
changeset
|
4 ;; 2008, 2009, 2010 Free Software Foundation, Inc. |
31717 | 5 |
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org> | |
7 ;; Keywords: news, mail | |
8 | |
9 ;; This file is part of GNU Emacs. | |
10 | |
94662
f42ef85caf91
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94451
diff
changeset
|
11 ;; GNU Emacs is free software: you can redistribute it and/or modify |
31717 | 12 ;; it under the terms of the GNU General Public License as published by |
94662
f42ef85caf91
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94451
diff
changeset
|
13 ;; the Free Software Foundation, either version 3 of the License, or |
f42ef85caf91
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94451
diff
changeset
|
14 ;; (at your option) any later version. |
31717 | 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 | |
94662
f42ef85caf91
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94451
diff
changeset
|
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
31717 | 23 |
24 ;;; Commentary: | |
25 | |
26 ;;; Code: | |
27 | |
87246
977e07d44319
Add declare-function compatibility definition.
Glenn Morris <rgm@gnu.org>
parents:
87097
diff
changeset
|
28 ;; For Emacs < 22.2. |
977e07d44319
Add declare-function compatibility definition.
Glenn Morris <rgm@gnu.org>
parents:
87097
diff
changeset
|
29 (eval-and-compile |
977e07d44319
Add declare-function compatibility definition.
Glenn Morris <rgm@gnu.org>
parents:
87097
diff
changeset
|
30 (unless (fboundp 'declare-function) (defmacro declare-function (&rest r)))) |
977e07d44319
Add declare-function compatibility definition.
Glenn Morris <rgm@gnu.org>
parents:
87097
diff
changeset
|
31 |
86888
03d373168e84
(top-level): Require format-spec before eval-when-compile.
Glenn Morris <rgm@gnu.org>
parents:
86154
diff
changeset
|
32 (require 'format-spec) |
32918 | 33 (eval-when-compile |
34 (require 'cl) | |
86154 | 35 (require 'imap)) |
95820
645fb33380d6
Remove unnecessary eval-and-compile of autoloads.
Glenn Morris <rgm@gnu.org>
parents:
94662
diff
changeset
|
36 (autoload 'auth-source-user-or-password "auth-source") |
110195
48695a2e29d9
gnus-start.el: White space clean up; mail-source.el (mail-source-fetch-pop): Use streaming pop3 retrieval; pop3.el (pop3-streaming-movemail): Respect pop3-leave-mail-on-server; pop3.el (pop3-logon): Fix up unbound variable typo; mail-source.el (mail-source-delete-crash-box): Only check the incoming files for deletion once per day to save a lot of file accesses.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110189
diff
changeset
|
37 (autoload 'pop3-streaming-movemail "pop3") |
95820
645fb33380d6
Remove unnecessary eval-and-compile of autoloads.
Glenn Morris <rgm@gnu.org>
parents:
94662
diff
changeset
|
38 (autoload 'pop3-get-message-count "pop3") |
645fb33380d6
Remove unnecessary eval-and-compile of autoloads.
Glenn Morris <rgm@gnu.org>
parents:
94662
diff
changeset
|
39 (autoload 'nnheader-cancel-timer "nnheader") |
32918 | 40 (require 'mm-util) |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
41 (require 'message) ;; for `message-directory' |
31717 | 42 |
86154 | 43 (defvar display-time-mail-function) |
44 | |
31717 | 45 (defgroup mail-source nil |
46 "The mail-fetching library." | |
31764 | 47 :version "21.1" |
31717 | 48 :group 'gnus) |
49 | |
32918 | 50 ;; Define these at compile time to avoid dragging in imap always. |
51 (defconst mail-source-imap-authenticators | |
52 (eval-when-compile | |
53 (mapcar (lambda (a) | |
54 (list 'const (car a))) | |
55 imap-authenticator-alist))) | |
56 (defconst mail-source-imap-streams | |
57 (eval-when-compile | |
58 (mapcar (lambda (a) | |
59 (list 'const (car a))) | |
60 imap-stream-alist))) | |
61 | |
87097 | 62 (defcustom mail-sources '((file)) |
63 "Where the mail backends will look for incoming mail. | |
31764 | 64 This variable is a list of mail source specifiers. |
65 See Info node `(gnus)Mail Source Specifiers'." | |
31717 | 66 :group 'mail-source |
92336
5f827896103e
Change defcustom :version from 23.0 to 23.1.
Glenn Morris <rgm@gnu.org>
parents:
92147
diff
changeset
|
67 :version "23.1" ;; No Gnus |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
68 :link '(custom-manual "(gnus)Mail Source Specifiers") |
71262 | 69 :type `(choice |
87097 | 70 (const :tag "None" nil) |
71 (repeat :tag "List" | |
71262 | 72 (choice :format "%[Value Menu%] %v" |
73 :value (file) | |
88045 | 74 (cons :tag "Group parameter `mail-source'" |
75 (const :format "" group)) | |
71262 | 76 (cons :tag "Spool file" |
77 (const :format "" file) | |
78 (checklist :tag "Options" :greedy t | |
79 (group :inline t | |
80 (const :format "" :value :path) | |
81 file))) | |
82 (cons :tag "Several files in a directory" | |
83 (const :format "" directory) | |
84 (checklist :tag "Options" :greedy t | |
85 (group :inline t | |
86 (const :format "" :value :path) | |
87 (directory :tag "Path")) | |
88 (group :inline t | |
89 (const :format "" :value :suffix) | |
90 (string :tag "Suffix")) | |
91 (group :inline t | |
92 (const :format "" :value :predicate) | |
93 (function :tag "Predicate")) | |
94 (group :inline t | |
95 (const :format "" :value :prescript) | |
96 (choice :tag "Prescript" | |
97 :value nil | |
98 (string :format "%v") | |
99 (function :format "%v"))) | |
100 (group :inline t | |
101 (const :format "" :value :postscript) | |
102 (choice :tag "Postscript" | |
103 :value nil | |
104 (string :format "%v") | |
105 (function :format "%v"))) | |
106 (group :inline t | |
107 (const :format "" :value :plugged) | |
108 (boolean :tag "Plugged")))) | |
109 (cons :tag "POP3 server" | |
110 (const :format "" pop) | |
111 (checklist :tag "Options" :greedy t | |
112 (group :inline t | |
113 (const :format "" :value :server) | |
114 (string :tag "Server")) | |
115 (group :inline t | |
116 (const :format "" :value :port) | |
117 (choice :tag "Port" | |
118 :value "pop3" | |
85712
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
119 (integer :format "%v") |
71262 | 120 (string :format "%v"))) |
121 (group :inline t | |
122 (const :format "" :value :user) | |
123 (string :tag "User")) | |
124 (group :inline t | |
125 (const :format "" :value :password) | |
126 (string :tag "Password")) | |
127 (group :inline t | |
128 (const :format "" :value :program) | |
129 (string :tag "Program")) | |
130 (group :inline t | |
131 (const :format "" :value :prescript) | |
132 (choice :tag "Prescript" | |
133 :value nil | |
134 (string :format "%v") | |
85712
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
135 (function :format "%v") |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
136 (const :tag "None" nil))) |
71262 | 137 (group :inline t |
138 (const :format "" :value :postscript) | |
139 (choice :tag "Postscript" | |
140 :value nil | |
141 (string :format "%v") | |
85712
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
142 (function :format "%v") |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
143 (const :tag "None" nil))) |
71262 | 144 (group :inline t |
145 (const :format "" :value :function) | |
146 (function :tag "Function")) | |
147 (group :inline t | |
148 (const :format "" | |
149 :value :authentication) | |
150 (choice :tag "Authentication" | |
151 :value apop | |
152 (const password) | |
153 (const apop))) | |
154 (group :inline t | |
155 (const :format "" :value :plugged) | |
85712
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
156 (boolean :tag "Plugged")) |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
157 (group :inline t |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
158 (const :format "" :value :stream) |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
159 (choice :tag "Stream" |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
160 :value nil |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
161 (const :tag "Clear" nil) |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
162 (const starttls) |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
163 (const :tag "SSL/TLS" ssl))))) |
71262 | 164 (cons :tag "Maildir (qmail, postfix...)" |
165 (const :format "" maildir) | |
166 (checklist :tag "Options" :greedy t | |
167 (group :inline t | |
168 (const :format "" :value :path) | |
169 (directory :tag "Path")) | |
170 (group :inline t | |
171 (const :format "" :value :plugged) | |
172 (boolean :tag "Plugged")))) | |
173 (cons :tag "IMAP server" | |
174 (const :format "" imap) | |
175 (checklist :tag "Options" :greedy t | |
176 (group :inline t | |
177 (const :format "" :value :server) | |
178 (string :tag "Server")) | |
179 (group :inline t | |
180 (const :format "" :value :port) | |
181 (choice :tag "Port" | |
182 :value 143 | |
85712
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
183 integer string)) |
71262 | 184 (group :inline t |
185 (const :format "" :value :user) | |
186 (string :tag "User")) | |
187 (group :inline t | |
188 (const :format "" :value :password) | |
189 (string :tag "Password")) | |
190 (group :inline t | |
191 (const :format "" :value :stream) | |
192 (choice :tag "Stream" | |
193 :value network | |
194 ,@mail-source-imap-streams)) | |
195 (group :inline t | |
196 (const :format "" :value :program) | |
197 (string :tag "Program")) | |
198 (group :inline t | |
199 (const :format "" | |
200 :value :authenticator) | |
201 (choice :tag "Authenticator" | |
202 :value login | |
203 ,@mail-source-imap-authenticators)) | |
204 (group :inline t | |
205 (const :format "" :value :mailbox) | |
206 (string :tag "Mailbox" | |
207 :value "INBOX")) | |
208 (group :inline t | |
209 (const :format "" :value :predicate) | |
210 (string :tag "Predicate" | |
211 :value "UNSEEN UNDELETED")) | |
212 (group :inline t | |
213 (const :format "" :value :fetchflag) | |
214 (string :tag "Fetchflag" | |
215 :value "\\Deleted")) | |
216 (group :inline t | |
217 (const :format "" | |
218 :value :dontexpunge) | |
219 (boolean :tag "Dontexpunge")) | |
220 (group :inline t | |
221 (const :format "" :value :plugged) | |
222 (boolean :tag "Plugged")))) | |
223 (cons :tag "Webmail server" | |
224 (const :format "" webmail) | |
225 (checklist :tag "Options" :greedy t | |
226 (group :inline t | |
85712
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
227 (const :format "" :value :subtype) |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
228 ;; Should be generated from |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
229 ;; `webmail-type-definition', but we |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
230 ;; can't require webmail without W3. |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
231 (choice :tag "Subtype" |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
232 :value hotmail |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
233 (const hotmail) |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
234 (const yahoo) |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
235 (const netaddress) |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
236 (const netscape) |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
237 (const my-deja))) |
71262 | 238 (group :inline t |
239 (const :format "" :value :user) | |
240 (string :tag "User")) | |
241 (group :inline t | |
242 (const :format "" :value :password) | |
243 (string :tag "Password")) | |
244 (group :inline t | |
245 (const :format "" | |
246 :value :dontexpunge) | |
247 (boolean :tag "Dontexpunge")) | |
248 (group :inline t | |
249 (const :format "" :value :plugged) | |
250 (boolean :tag "Plugged")))))))) | |
31717 | 251 |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
252 (defcustom mail-source-ignore-errors nil |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
253 "*Ignore errors when querying mail sources. |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
254 If nil, the user will be prompted when an error occurs. If non-nil, |
57153
497f0d2ca551
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-558
Miles Bader <miles@gnu.org>
parents:
56927
diff
changeset
|
255 the error will be ignored." |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
57581
diff
changeset
|
256 :version "22.1" |
57153
497f0d2ca551
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-558
Miles Bader <miles@gnu.org>
parents:
56927
diff
changeset
|
257 :group 'mail-source |
497f0d2ca551
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-558
Miles Bader <miles@gnu.org>
parents:
56927
diff
changeset
|
258 :type 'boolean) |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
259 |
31717 | 260 (defcustom mail-source-primary-source nil |
261 "*Primary source for incoming mail. | |
262 If non-nil, this maildrop will be checked periodically for new mail." | |
263 :group 'mail-source | |
264 :type 'sexp) | |
265 | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
266 (defcustom mail-source-flash t |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
267 "*If non-nil, flash periodically when mail is available." |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
268 :group 'mail-source |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
269 :type 'boolean) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
270 |
31717 | 271 (defcustom mail-source-crash-box "~/.emacs-mail-crash-box" |
272 "File where mail will be stored while processing it." | |
273 :group 'mail-source | |
274 :type 'file) | |
275 | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
276 (defcustom mail-source-directory message-directory |
57581
645f020dcc8a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-626
Miles Bader <miles@gnu.org>
parents:
57153
diff
changeset
|
277 "Directory where incoming mail source files (if any) will be stored." |
31717 | 278 :group 'mail-source |
279 :type 'directory) | |
280 | |
281 (defcustom mail-source-default-file-modes 384 | |
282 "Set the mode bits of all new mail files to this integer." | |
283 :group 'mail-source | |
284 :type 'integer) | |
285 | |
92147 | 286 (defcustom mail-source-delete-incoming |
287 10 ;; development versions | |
288 ;; 2 ;; released versions | |
289 "If non-nil, delete incoming files after handling. | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
290 If t, delete immediately, if nil, never delete. If a positive number, delete |
92147 | 291 files older than number of days. |
292 | |
293 Removing of old files happens in `mail-source-callback', i.e. no | |
294 old incoming files will be deleted unless you receive new mail. | |
295 You may also set this variable to nil and call | |
296 `mail-source-delete-old-incoming' interactively." | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
297 :group 'mail-source |
92147 | 298 :version "22.2" ;; No Gnus / Gnus 5.10.10 (default changed) |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
299 :type '(choice (const :tag "immediately" t) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
300 (const :tag "never" nil) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
301 (integer :tag "days"))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
302 |
92695 | 303 (defcustom mail-source-delete-old-incoming-confirm nil |
304 "If non-nil, ask for confirmation before deleting old incoming files. | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
305 This variable only applies when `mail-source-delete-incoming' is a positive |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
306 number." |
92695 | 307 :version "22.2" ;; No Gnus / Gnus 5.10.10 (default changed) |
31717 | 308 :group 'mail-source |
309 :type 'boolean) | |
310 | |
311 (defcustom mail-source-incoming-file-prefix "Incoming" | |
312 "Prefix for file name for storing incoming mail" | |
313 :group 'mail-source | |
314 :type 'string) | |
315 | |
316 (defcustom mail-source-report-new-mail-interval 5 | |
317 "Interval in minutes between checks for new mail." | |
318 :group 'mail-source | |
319 :type 'number) | |
320 | |
321 (defcustom mail-source-idle-time-delay 5 | |
322 "Number of idle seconds to wait before checking for new mail." | |
323 :group 'mail-source | |
324 :type 'number) | |
325 | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
326 (defcustom mail-source-movemail-program nil |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
327 "If non-nil, name of program for fetching new mail." |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
57581
diff
changeset
|
328 :version "22.1" |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
329 :group 'mail-source |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
330 :type '(choice (const nil) string)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
331 |
31717 | 332 ;;; Internal variables. |
333 | |
334 (defvar mail-source-string "" | |
335 "A dynamically bound string that says what the current mail source is.") | |
336 | |
337 (defvar mail-source-new-mail-available nil | |
338 "Flag indicating when new mail is available.") | |
339 | |
340 (eval-and-compile | |
341 (defvar mail-source-common-keyword-map | |
342 '((:plugged)) | |
343 "Mapping from keywords to default values. | |
344 Common keywords should be listed here.") | |
345 | |
346 (defvar mail-source-keyword-map | |
347 '((file | |
348 (:prescript) | |
349 (:prescript-delay) | |
350 (:postscript) | |
351 (:path (or (getenv "MAIL") | |
32918 | 352 (expand-file-name (user-login-name) rmail-spool-directory)))) |
31717 | 353 (directory |
43422
fa370bd262ee
Patched a wrong location.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
43421
diff
changeset
|
354 (:prescript) |
fa370bd262ee
Patched a wrong location.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
43421
diff
changeset
|
355 (:prescript-delay) |
fa370bd262ee
Patched a wrong location.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
43421
diff
changeset
|
356 (:postscript) |
31717 | 357 (:path) |
358 (:suffix ".spool") | |
359 (:predicate identity)) | |
360 (pop | |
361 (:prescript) | |
362 (:prescript-delay) | |
363 (:postscript) | |
364 (:server (getenv "MAILHOST")) | |
365 (:port 110) | |
366 (:user (or (user-login-name) (getenv "LOGNAME") (getenv "USER"))) | |
367 (:program) | |
368 (:function) | |
369 (:password) | |
85712
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
370 (:authentication password) |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
371 (:stream nil)) |
31717 | 372 (maildir |
373 (:path (or (getenv "MAILDIR") "~/Maildir/")) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
374 (:subdirs ("cur" "new")) |
31717 | 375 (:function)) |
376 (imap | |
377 (:server (getenv "MAILHOST")) | |
378 (:port) | |
379 (:stream) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
380 (:program) |
31717 | 381 (:authentication) |
382 (:user (or (user-login-name) (getenv "LOGNAME") (getenv "USER"))) | |
383 (:password) | |
384 (:mailbox "INBOX") | |
385 (:predicate "UNSEEN UNDELETED") | |
386 (:fetchflag "\\Deleted") | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
387 (:prescript) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
388 (:prescript-delay) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
389 (:postscript) |
31717 | 390 (:dontexpunge)) |
391 (webmail | |
392 (:subtype hotmail) | |
393 (:user (or (user-login-name) (getenv "LOGNAME") (getenv "USER"))) | |
394 (:password) | |
395 (:dontexpunge) | |
396 (:authentication password))) | |
397 "Mapping from keywords to default values. | |
398 All keywords that can be used must be listed here.")) | |
399 | |
400 (defvar mail-source-fetcher-alist | |
401 '((file mail-source-fetch-file) | |
402 (directory mail-source-fetch-directory) | |
403 (pop mail-source-fetch-pop) | |
404 (maildir mail-source-fetch-maildir) | |
405 (imap mail-source-fetch-imap) | |
406 (webmail mail-source-fetch-webmail)) | |
407 "A mapping from source type to fetcher function.") | |
408 | |
409 (defvar mail-source-password-cache nil) | |
410 | |
411 (defvar mail-source-plugged t) | |
412 | |
413 ;;; Functions | |
414 | |
415 (eval-and-compile | |
416 (defun mail-source-strip-keyword (keyword) | |
417 "Strip the leading colon off the KEYWORD." | |
418 (intern (substring (symbol-name keyword) 1)))) | |
419 | |
94369 | 420 ;; generate a list of variable names paired with nil values |
421 ;; suitable for usage in a `let' form | |
31717 | 422 (eval-and-compile |
423 (defun mail-source-bind-1 (type) | |
424 (let* ((defaults (cdr (assq type mail-source-keyword-map))) | |
425 default bind) | |
426 (while (setq default (pop defaults)) | |
427 (push (list (mail-source-strip-keyword (car default)) | |
428 nil) | |
429 bind)) | |
430 bind))) | |
431 | |
432 (defmacro mail-source-bind (type-source &rest body) | |
433 "Return a `let' form that binds all variables in source TYPE. | |
434 TYPE-SOURCE is a list where the first element is the TYPE, and | |
435 the second variable is the SOURCE. | |
436 At run time, the mail source specifier SOURCE will be inspected, | |
437 and the variables will be set according to it. Variables not | |
438 specified will be given default values. | |
439 | |
94369 | 440 The user and password will be loaded from the auth-source values |
441 if those are available. They override the original user and | |
442 password in a second `let' form. | |
443 | |
31717 | 444 After this is done, BODY will be executed in the scope |
94369 | 445 of the second `let' form. |
31717 | 446 |
447 The variables bound and their default values are described by | |
448 the `mail-source-keyword-map' variable." | |
94369 | 449 `(let* ,(mail-source-bind-1 (car type-source)) |
31717 | 450 (mail-source-set-1 ,(cadr type-source)) |
94451 | 451 ,@body)) |
31717 | 452 |
453 (put 'mail-source-bind 'lisp-indent-function 1) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
454 (put 'mail-source-bind 'edebug-form-spec '(sexp body)) |
31717 | 455 |
101804 | 456 ;; TODO: use the list format for auth-source-user-or-password modes |
31717 | 457 (defun mail-source-set-1 (source) |
458 (let* ((type (pop source)) | |
459 (defaults (cdr (assq type mail-source-keyword-map))) | |
101804 | 460 default value keyword auth-info user-auth pass-auth) |
31717 | 461 (while (setq default (pop defaults)) |
94369 | 462 ;; for each default :SYMBOL, set SYMBOL to the plist value for :SYMBOL |
463 ;; using `mail-source-value' to evaluate the plist value | |
31717 | 464 (set (mail-source-strip-keyword (setq keyword (car default))) |
94451 | 465 ;; note the following reasons for this structure: |
466 ;; 1) the auth-sources user and password override everything | |
467 ;; 2) it avoids macros, so it's cleaner | |
468 ;; 3) it falls through to the mail-sources and then default values | |
110111
5b9f64b04a04
Delete all trailing white space.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110102
diff
changeset
|
469 (cond |
94451 | 470 ((and |
471 (eq keyword :user) | |
110111
5b9f64b04a04
Delete all trailing white space.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110102
diff
changeset
|
472 (setq user-auth |
101804 | 473 (nth 0 (auth-source-user-or-password |
474 '("login" "password") | |
475 ;; this is "host" in auth-sources | |
476 (if (boundp 'server) (symbol-value 'server) "") | |
477 type)))) | |
94451 | 478 user-auth) |
479 ((and | |
101804 | 480 (eq keyword :password) |
481 (setq pass-auth | |
482 (nth 1 | |
483 (auth-source-user-or-password | |
484 '("login" "password") | |
485 ;; this is "host" in auth-sources | |
486 (if (boundp 'server) (symbol-value 'server) "") | |
487 type)))) | |
94451 | 488 pass-auth) |
489 (t (if (setq value (plist-get source keyword)) | |
490 (mail-source-value value) | |
491 (mail-source-value (cadr default))))))))) | |
31717 | 492 |
493 (eval-and-compile | |
494 (defun mail-source-bind-common-1 () | |
495 (let* ((defaults mail-source-common-keyword-map) | |
496 default bind) | |
497 (while (setq default (pop defaults)) | |
498 (push (list (mail-source-strip-keyword (car default)) | |
499 nil) | |
500 bind)) | |
501 bind))) | |
502 | |
503 (defun mail-source-set-common-1 (source) | |
504 (let* ((type (pop source)) | |
505 (defaults mail-source-common-keyword-map) | |
506 (defaults-1 (cdr (assq type mail-source-keyword-map))) | |
507 default value keyword) | |
508 (while (setq default (pop defaults)) | |
509 (set (mail-source-strip-keyword (setq keyword (car default))) | |
510 (if (setq value (plist-get source keyword)) | |
511 (mail-source-value value) | |
512 (if (setq value (assq keyword defaults-1)) | |
513 (mail-source-value (cadr value)) | |
514 (mail-source-value (cadr default)))))))) | |
515 | |
516 (defmacro mail-source-bind-common (source &rest body) | |
517 "Return a `let' form that binds all common variables. | |
518 See `mail-source-bind'." | |
519 `(let ,(mail-source-bind-common-1) | |
520 (mail-source-set-common-1 source) | |
521 ,@body)) | |
522 | |
523 (put 'mail-source-bind-common 'lisp-indent-function 1) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
524 (put 'mail-source-bind-common 'edebug-form-spec '(sexp body)) |
31717 | 525 |
526 (defun mail-source-value (value) | |
527 "Return the value of VALUE." | |
528 (cond | |
529 ;; String | |
530 ((stringp value) | |
531 value) | |
532 ;; Function | |
93824
217fd7a2dc38
(mail-source-value):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
93386
diff
changeset
|
533 ((and (listp value) (symbolp (car value)) (fboundp (car value))) |
31717 | 534 (eval value)) |
535 ;; Just return the value. | |
536 (t | |
537 value))) | |
538 | |
110189
821c596efa5f
Rewrite the Gnus group activation method to be more efficient; nnmh.el (nnmh-request-list-1): Fix up the recursion behavior; Add more changes related to the new methodology for requesting backend data.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110111
diff
changeset
|
539 (defun mail-source-fetch (source callback &optional method) |
31717 | 540 "Fetch mail from SOURCE and call CALLBACK zero or more times. |
541 CALLBACK will be called with the name of the file where (some of) | |
542 the mail from SOURCE is put. | |
543 Return the number of files that were found." | |
544 (mail-source-bind-common source | |
545 (if (or mail-source-plugged plugged) | |
546 (save-excursion | |
110211
6cdcc53703e4
mail-source.el (mail-source-fetch): Don't message if we're fetching mail from a file, and the file doesn't exist.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110198
diff
changeset
|
547 ;; Special-case the `file' handler since it's so common and |
6cdcc53703e4
mail-source.el (mail-source-fetch): Don't message if we're fetching mail from a file, and the file doesn't exist.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110198
diff
changeset
|
548 ;; just adds noise. |
6cdcc53703e4
mail-source.el (mail-source-fetch): Don't message if we're fetching mail from a file, and the file doesn't exist.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110198
diff
changeset
|
549 (when (or (not (eq (car source) 'file)) |
6cdcc53703e4
mail-source.el (mail-source-fetch): Don't message if we're fetching mail from a file, and the file doesn't exist.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110198
diff
changeset
|
550 (mail-source-bind (file source) |
6cdcc53703e4
mail-source.el (mail-source-fetch): Don't message if we're fetching mail from a file, and the file doesn't exist.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110198
diff
changeset
|
551 (file-exists-p path))) |
6cdcc53703e4
mail-source.el (mail-source-fetch): Don't message if we're fetching mail from a file, and the file doesn't exist.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110198
diff
changeset
|
552 (nnheader-message 4 "%sReading incoming mail from %s..." |
6cdcc53703e4
mail-source.el (mail-source-fetch): Don't message if we're fetching mail from a file, and the file doesn't exist.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110198
diff
changeset
|
553 (if method |
6cdcc53703e4
mail-source.el (mail-source-fetch): Don't message if we're fetching mail from a file, and the file doesn't exist.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110198
diff
changeset
|
554 (format "%s: " method) |
6cdcc53703e4
mail-source.el (mail-source-fetch): Don't message if we're fetching mail from a file, and the file doesn't exist.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110198
diff
changeset
|
555 "") |
6cdcc53703e4
mail-source.el (mail-source-fetch): Don't message if we're fetching mail from a file, and the file doesn't exist.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110198
diff
changeset
|
556 (car source))) |
31717 | 557 (let ((function (cadr (assq (car source) mail-source-fetcher-alist))) |
558 (found 0)) | |
559 (unless function | |
560 (error "%S is an invalid mail source specification" source)) | |
561 ;; If there's anything in the crash box, we do it first. | |
562 (when (file-exists-p mail-source-crash-box) | |
563 (message "Processing mail from %s..." mail-source-crash-box) | |
564 (setq found (mail-source-callback | |
85712
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
565 callback mail-source-crash-box)) |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
566 (mail-source-delete-crash-box)) |
31717 | 567 (+ found |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
568 (if (or debug-on-quit debug-on-error) |
31717 | 569 (funcall function source callback) |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
570 (condition-case err |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
571 (funcall function source callback) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
572 (error |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
573 (if (and (not mail-source-ignore-errors) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
574 (not |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
575 (yes-or-no-p |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
576 (format "Mail source %s error (%s). Continue? " |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
577 (if (memq ':password source) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
578 (let ((s (copy-sequence source))) |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
57581
diff
changeset
|
579 (setcar (cdr (memq ':password s)) |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
580 "********") |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
581 s) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
582 source) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
583 (cadr err))))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
584 (error "Cannot get new mail")) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
585 0))))))))) |
31717 | 586 |
107481
2630a1cf07ac
* mail-source.el (gnus-message): Declare.
Glenn Morris <rgm@gnu.org>
parents:
106815
diff
changeset
|
587 (declare-function gnus-message "gnus-util" (level &rest args)) |
2630a1cf07ac
* mail-source.el (gnus-message): Declare.
Glenn Morris <rgm@gnu.org>
parents:
106815
diff
changeset
|
588 |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
589 (defun mail-source-delete-old-incoming (&optional age confirm) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
590 "Remove incoming files older than AGE days. |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
591 If CONFIRM is non-nil, ask for confirmation before removing a file." |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
592 (interactive "P") |
107481
2630a1cf07ac
* mail-source.el (gnus-message): Declare.
Glenn Morris <rgm@gnu.org>
parents:
106815
diff
changeset
|
593 (require 'gnus-util) |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
594 (let* ((high2days (/ 65536.0 60 60 24));; convert high bits to days |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
595 (low2days (/ 1.0 65536.0)) ;; convert low bits to days |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
596 (diff (if (natnump age) age 30));; fallback, if no valid AGE given |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
597 currday files) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
598 (setq files (directory-files |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
599 mail-source-directory t |
93386 | 600 (concat "\\`" |
601 (regexp-quote mail-source-incoming-file-prefix))) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
602 currday (* (car (current-time)) high2days) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
603 currday (+ currday (* low2days (nth 1 (current-time))))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
604 (while files |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
605 (let* ((ffile (car files)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
606 (bfile (gnus-replace-in-string |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
607 ffile "\\`.*/\\([^/]+\\)\\'" "\\1")) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
608 (filetime (nth 5 (file-attributes ffile))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
609 (fileday (* (car filetime) high2days)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
610 (fileday (+ fileday (* low2days (nth 1 filetime))))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
611 (setq files (cdr files)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
612 (when (and (> (- currday fileday) diff) |
92695 | 613 (if confirm |
614 (y-or-n-p | |
615 (format "\ | |
616 Delete old (> %s day(s)) incoming mail file `%s'? " diff bfile)) | |
617 (gnus-message 8 "\ | |
618 Deleting old (> %s day(s)) incoming mail file `%s'." diff bfile) | |
619 t)) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
620 (delete-file ffile)))))) |
31717 | 621 |
622 (defun mail-source-callback (callback info) | |
85712
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
623 "Call CALLBACK on the mail file. Pass INFO on to CALLBACK." |
31717 | 624 (if (or (not (file-exists-p mail-source-crash-box)) |
625 (zerop (nth 7 (file-attributes mail-source-crash-box)))) | |
626 (progn | |
627 (when (file-exists-p mail-source-crash-box) | |
628 (delete-file mail-source-crash-box)) | |
629 0) | |
85712
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
630 (funcall callback mail-source-crash-box info))) |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
631 |
110195
48695a2e29d9
gnus-start.el: White space clean up; mail-source.el (mail-source-fetch-pop): Use streaming pop3 retrieval; pop3.el (pop3-streaming-movemail): Respect pop3-leave-mail-on-server; pop3.el (pop3-logon): Fix up unbound variable typo; mail-source.el (mail-source-delete-crash-box): Only check the incoming files for deletion once per day to save a lot of file accesses.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110189
diff
changeset
|
632 (defvar mail-source-incoming-last-checked-time nil) |
48695a2e29d9
gnus-start.el: White space clean up; mail-source.el (mail-source-fetch-pop): Use streaming pop3 retrieval; pop3.el (pop3-streaming-movemail): Respect pop3-leave-mail-on-server; pop3.el (pop3-logon): Fix up unbound variable typo; mail-source.el (mail-source-delete-crash-box): Only check the incoming files for deletion once per day to save a lot of file accesses.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110189
diff
changeset
|
633 |
85712
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
634 (defun mail-source-delete-crash-box () |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
635 (when (file-exists-p mail-source-crash-box) |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
636 ;; Delete or move the incoming mail out of the way. |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
637 (if (eq mail-source-delete-incoming t) |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
638 (delete-file mail-source-crash-box) |
110198
8867a7812454
mail-source.el (mail-source-delete-crash-box): Always move the crash box to the Incoming file. Fixes mistake in previous checkin; Do incremental NOV updates when scanning new male. (nnml-save-incremental-nov, nnml-open-incremental-nov, nnml-add-incremental-nov): New functions to do "incremental" nov updates, where we just append to the end of the existing nov files without reading/writing them in full.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110197
diff
changeset
|
639 (let ((incoming |
8867a7812454
mail-source.el (mail-source-delete-crash-box): Always move the crash box to the Incoming file. Fixes mistake in previous checkin; Do incremental NOV updates when scanning new male. (nnml-save-incremental-nov, nnml-open-incremental-nov, nnml-add-incremental-nov): New functions to do "incremental" nov updates, where we just append to the end of the existing nov files without reading/writing them in full.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110197
diff
changeset
|
640 (mm-make-temp-file |
8867a7812454
mail-source.el (mail-source-delete-crash-box): Always move the crash box to the Incoming file. Fixes mistake in previous checkin; Do incremental NOV updates when scanning new male. (nnml-save-incremental-nov, nnml-open-incremental-nov, nnml-add-incremental-nov): New functions to do "incremental" nov updates, where we just append to the end of the existing nov files without reading/writing them in full.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110197
diff
changeset
|
641 (expand-file-name |
8867a7812454
mail-source.el (mail-source-delete-crash-box): Always move the crash box to the Incoming file. Fixes mistake in previous checkin; Do incremental NOV updates when scanning new male. (nnml-save-incremental-nov, nnml-open-incremental-nov, nnml-add-incremental-nov): New functions to do "incremental" nov updates, where we just append to the end of the existing nov files without reading/writing them in full.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110197
diff
changeset
|
642 mail-source-incoming-file-prefix |
8867a7812454
mail-source.el (mail-source-delete-crash-box): Always move the crash box to the Incoming file. Fixes mistake in previous checkin; Do incremental NOV updates when scanning new male. (nnml-save-incremental-nov, nnml-open-incremental-nov, nnml-add-incremental-nov): New functions to do "incremental" nov updates, where we just append to the end of the existing nov files without reading/writing them in full.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110197
diff
changeset
|
643 mail-source-directory)))) |
8867a7812454
mail-source.el (mail-source-delete-crash-box): Always move the crash box to the Incoming file. Fixes mistake in previous checkin; Do incremental NOV updates when scanning new male. (nnml-save-incremental-nov, nnml-open-incremental-nov, nnml-add-incremental-nov): New functions to do "incremental" nov updates, where we just append to the end of the existing nov files without reading/writing them in full.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110197
diff
changeset
|
644 (unless (file-exists-p (file-name-directory incoming)) |
8867a7812454
mail-source.el (mail-source-delete-crash-box): Always move the crash box to the Incoming file. Fixes mistake in previous checkin; Do incremental NOV updates when scanning new male. (nnml-save-incremental-nov, nnml-open-incremental-nov, nnml-add-incremental-nov): New functions to do "incremental" nov updates, where we just append to the end of the existing nov files without reading/writing them in full.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110197
diff
changeset
|
645 (make-directory (file-name-directory incoming) t)) |
8867a7812454
mail-source.el (mail-source-delete-crash-box): Always move the crash box to the Incoming file. Fixes mistake in previous checkin; Do incremental NOV updates when scanning new male. (nnml-save-incremental-nov, nnml-open-incremental-nov, nnml-add-incremental-nov): New functions to do "incremental" nov updates, where we just append to the end of the existing nov files without reading/writing them in full.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110197
diff
changeset
|
646 (rename-file mail-source-crash-box incoming t) |
8867a7812454
mail-source.el (mail-source-delete-crash-box): Always move the crash box to the Incoming file. Fixes mistake in previous checkin; Do incremental NOV updates when scanning new male. (nnml-save-incremental-nov, nnml-open-incremental-nov, nnml-add-incremental-nov): New functions to do "incremental" nov updates, where we just append to the end of the existing nov files without reading/writing them in full.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110197
diff
changeset
|
647 ;; remove old incoming files? |
8867a7812454
mail-source.el (mail-source-delete-crash-box): Always move the crash box to the Incoming file. Fixes mistake in previous checkin; Do incremental NOV updates when scanning new male. (nnml-save-incremental-nov, nnml-open-incremental-nov, nnml-add-incremental-nov): New functions to do "incremental" nov updates, where we just append to the end of the existing nov files without reading/writing them in full.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110197
diff
changeset
|
648 (when (natnump mail-source-delete-incoming) |
8867a7812454
mail-source.el (mail-source-delete-crash-box): Always move the crash box to the Incoming file. Fixes mistake in previous checkin; Do incremental NOV updates when scanning new male. (nnml-save-incremental-nov, nnml-open-incremental-nov, nnml-add-incremental-nov): New functions to do "incremental" nov updates, where we just append to the end of the existing nov files without reading/writing them in full.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110197
diff
changeset
|
649 ;; Don't check for old incoming files more than once per day to |
8867a7812454
mail-source.el (mail-source-delete-crash-box): Always move the crash box to the Incoming file. Fixes mistake in previous checkin; Do incremental NOV updates when scanning new male. (nnml-save-incremental-nov, nnml-open-incremental-nov, nnml-add-incremental-nov): New functions to do "incremental" nov updates, where we just append to the end of the existing nov files without reading/writing them in full.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110197
diff
changeset
|
650 ;; save a lot of file accesses. |
8867a7812454
mail-source.el (mail-source-delete-crash-box): Always move the crash box to the Incoming file. Fixes mistake in previous checkin; Do incremental NOV updates when scanning new male. (nnml-save-incremental-nov, nnml-open-incremental-nov, nnml-add-incremental-nov): New functions to do "incremental" nov updates, where we just append to the end of the existing nov files without reading/writing them in full.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110197
diff
changeset
|
651 (when (or (null mail-source-incoming-last-checked-time) |
8867a7812454
mail-source.el (mail-source-delete-crash-box): Always move the crash box to the Incoming file. Fixes mistake in previous checkin; Do incremental NOV updates when scanning new male. (nnml-save-incremental-nov, nnml-open-incremental-nov, nnml-add-incremental-nov): New functions to do "incremental" nov updates, where we just append to the end of the existing nov files without reading/writing them in full.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110197
diff
changeset
|
652 (> (time-to-seconds |
8867a7812454
mail-source.el (mail-source-delete-crash-box): Always move the crash box to the Incoming file. Fixes mistake in previous checkin; Do incremental NOV updates when scanning new male. (nnml-save-incremental-nov, nnml-open-incremental-nov, nnml-add-incremental-nov): New functions to do "incremental" nov updates, where we just append to the end of the existing nov files without reading/writing them in full.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110197
diff
changeset
|
653 (time-since mail-source-incoming-last-checked-time)) |
8867a7812454
mail-source.el (mail-source-delete-crash-box): Always move the crash box to the Incoming file. Fixes mistake in previous checkin; Do incremental NOV updates when scanning new male. (nnml-save-incremental-nov, nnml-open-incremental-nov, nnml-add-incremental-nov): New functions to do "incremental" nov updates, where we just append to the end of the existing nov files without reading/writing them in full.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110197
diff
changeset
|
654 (* 24 60 60))) |
8867a7812454
mail-source.el (mail-source-delete-crash-box): Always move the crash box to the Incoming file. Fixes mistake in previous checkin; Do incremental NOV updates when scanning new male. (nnml-save-incremental-nov, nnml-open-incremental-nov, nnml-add-incremental-nov): New functions to do "incremental" nov updates, where we just append to the end of the existing nov files without reading/writing them in full.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110197
diff
changeset
|
655 (setq mail-source-incoming-last-checked-time (current-time)) |
110197
727cc5d69397
pop3.el (pop3-write-to-file): Don't output messages when saving; mail-source.el (mail-source-delete-crash-box): Really only check the incoming files once in a while; nnml.el (nnml-save-nov): Message around nnml-save-nov so that the culprit is more visible; pop3.el (pop3-send-streaming-command): Off-by-one error on the request loop (for debugging purposes) removed.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110195
diff
changeset
|
656 (mail-source-delete-old-incoming |
727cc5d69397
pop3.el (pop3-write-to-file): Don't output messages when saving; mail-source.el (mail-source-delete-crash-box): Really only check the incoming files once in a while; nnml.el (nnml-save-nov): Message around nnml-save-nov so that the culprit is more visible; pop3.el (pop3-send-streaming-command): Off-by-one error on the request loop (for debugging purposes) removed.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110195
diff
changeset
|
657 mail-source-delete-incoming |
727cc5d69397
pop3.el (pop3-write-to-file): Don't output messages when saving; mail-source.el (mail-source-delete-crash-box): Really only check the incoming files once in a while; nnml.el (nnml-save-nov): Message around nnml-save-nov so that the culprit is more visible; pop3.el (pop3-send-streaming-command): Off-by-one error on the request loop (for debugging purposes) removed.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110195
diff
changeset
|
658 mail-source-delete-old-incoming-confirm))))))) |
31717 | 659 |
660 (defun mail-source-movemail (from to) | |
661 "Move FROM to TO using movemail." | |
662 (if (not (file-writable-p to)) | |
663 (error "Can't write to crash box %s. Not moving mail" to) | |
664 (let ((to (file-truename (expand-file-name to))) | |
665 errors result) | |
666 (setq to (file-truename to) | |
667 from (file-truename from)) | |
668 ;; Set TO if have not already done so, and rename or copy | |
669 ;; the file FROM to TO if and as appropriate. | |
670 (cond | |
671 ((file-exists-p to) | |
672 ;; The crash box exists already. | |
673 t) | |
674 ((not (file-exists-p from)) | |
675 ;; There is no inbox. | |
676 (setq to nil)) | |
677 ((zerop (nth 7 (file-attributes from))) | |
678 ;; Empty file. | |
679 (setq to nil)) | |
680 (t | |
681 ;; If getting from mail spool directory, use movemail to move | |
682 ;; rather than just renaming, so as to interlock with the | |
683 ;; mailer. | |
684 (unwind-protect | |
685 (save-excursion | |
686 (setq errors (generate-new-buffer " *mail source loss*")) | |
687 (let ((default-directory "/")) | |
688 (setq result | |
689 (apply | |
690 'call-process | |
691 (append | |
692 (list | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
693 (or mail-source-movemail-program |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
694 (expand-file-name "movemail" exec-directory)) |
31717 | 695 nil errors nil from to))))) |
696 (when (file-exists-p to) | |
697 (set-file-modes to mail-source-default-file-modes)) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
698 (if (and (or (not (buffer-modified-p errors)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
699 (zerop (buffer-size errors))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
700 (and (numberp result) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
701 (zerop result))) |
31717 | 702 ;; No output => movemail won. |
703 t | |
704 (set-buffer errors) | |
705 ;; There may be a warning about older revisions. We | |
706 ;; ignore that. | |
707 (goto-char (point-min)) | |
708 (if (search-forward "older revision" nil t) | |
709 t | |
710 ;; Probably a real error. | |
711 (subst-char-in-region (point-min) (point-max) ?\n ?\ ) | |
712 (goto-char (point-max)) | |
713 (skip-chars-backward " \t") | |
714 (delete-region (point) (point-max)) | |
715 (goto-char (point-min)) | |
716 (when (looking-at "movemail: ") | |
717 (delete-region (point-min) (match-end 0))) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
718 ;; Result may be a signal description string. |
31717 | 719 (unless (yes-or-no-p |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
720 (format "movemail: %s (%s return). Continue? " |
31717 | 721 (buffer-string) result)) |
722 (error "%s" (buffer-string))) | |
723 (setq to nil))))))) | |
724 (when (and errors | |
725 (buffer-name errors)) | |
726 (kill-buffer errors)) | |
727 ;; Return whether we moved successfully or not. | |
728 to))) | |
729 | |
730 (defun mail-source-movemail-and-remove (from to) | |
731 "Move FROM to TO using movemail, then remove FROM if empty." | |
732 (or (not (mail-source-movemail from to)) | |
733 (not (zerop (nth 7 (file-attributes from)))) | |
734 (delete-file from))) | |
735 | |
736 (defun mail-source-fetch-with-program (program) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
737 (eq 0 (call-process shell-file-name nil nil nil |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
738 shell-command-switch program))) |
31717 | 739 |
740 (defun mail-source-run-script (script spec &optional delay) | |
741 (when script | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
742 (if (functionp script) |
31717 | 743 (funcall script) |
744 (mail-source-call-script | |
745 (format-spec script spec)))) | |
746 (when delay | |
747 (sleep-for delay))) | |
748 | |
749 (defun mail-source-call-script (script) | |
85712
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
750 (let ((background nil) |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
751 (stderr (get-buffer-create " *mail-source-stderr*")) |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
752 result) |
31717 | 753 (when (string-match "& *$" script) |
754 (setq script (substring script 0 (match-beginning 0)) | |
755 background 0)) | |
85712
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
756 (setq result |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
757 (call-process shell-file-name nil background nil |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
758 shell-command-switch script)) |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
759 (when (and result |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
760 (not (zerop result))) |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
761 (set-buffer stderr) |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
762 (message "Mail source error: %s" (buffer-string))) |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
763 (kill-buffer stderr))) |
31717 | 764 |
765 ;;; | |
766 ;;; Different fetchers | |
767 ;;; | |
768 | |
769 (defun mail-source-fetch-file (source callback) | |
770 "Fetcher for single-file sources." | |
771 (mail-source-bind (file source) | |
772 (mail-source-run-script | |
773 prescript (format-spec-make ?t mail-source-crash-box) | |
774 prescript-delay) | |
775 (let ((mail-source-string (format "file:%s" path))) | |
776 (if (mail-source-movemail path mail-source-crash-box) | |
777 (prog1 | |
778 (mail-source-callback callback path) | |
779 (mail-source-run-script | |
85712
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
780 postscript (format-spec-make ?t mail-source-crash-box)) |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
781 (mail-source-delete-crash-box)) |
31717 | 782 0)))) |
783 | |
784 (defun mail-source-fetch-directory (source callback) | |
785 "Fetcher for directory sources." | |
786 (mail-source-bind (directory source) | |
43421
a949c187ce13
* mail-source.el (mail-source-fetch-directory): Run scripts.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
38413
diff
changeset
|
787 (mail-source-run-script |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
788 prescript (format-spec-make ?t path) prescript-delay) |
31717 | 789 (let ((found 0) |
790 (mail-source-string (format "directory:%s" path))) | |
791 (dolist (file (directory-files | |
792 path t (concat (regexp-quote suffix) "$"))) | |
793 (when (and (file-regular-p file) | |
794 (funcall predicate file) | |
795 (mail-source-movemail file mail-source-crash-box)) | |
85712
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
796 (incf found (mail-source-callback callback file)) |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
797 (mail-source-run-script postscript (format-spec-make ?t path)) |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
798 (mail-source-delete-crash-box))) |
31717 | 799 found))) |
800 | |
801 (defun mail-source-fetch-pop (source callback) | |
802 "Fetcher for single-file sources." | |
803 (mail-source-bind (pop source) | |
85712
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
804 ;; fixme: deal with stream type in format specs |
31717 | 805 (mail-source-run-script |
806 prescript | |
807 (format-spec-make ?p password ?t mail-source-crash-box | |
808 ?s server ?P port ?u user) | |
809 prescript-delay) | |
810 (let ((from (format "%s:%s:%s" server user port)) | |
811 (mail-source-string (format "pop:%s@%s" user server)) | |
812 result) | |
813 (when (eq authentication 'password) | |
814 (setq password | |
815 (or password | |
816 (cdr (assoc from mail-source-password-cache)) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
817 (read-passwd |
31717 | 818 (format "Password for %s at %s: " user server))))) |
819 (when server | |
820 (setenv "MAILHOST" server)) | |
821 (setq result | |
822 (cond | |
823 (program | |
824 (mail-source-fetch-with-program | |
825 (format-spec | |
826 program | |
827 (format-spec-make ?p password ?t mail-source-crash-box | |
828 ?s server ?P port ?u user)))) | |
829 (function | |
830 (funcall function mail-source-crash-box)) | |
831 ;; The default is to use pop3.el. | |
832 (t | |
66299
01b85ec4a61d
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-615
Miles Bader <miles@gnu.org>
parents:
64754
diff
changeset
|
833 (require 'pop3) |
31717 | 834 (let ((pop3-password password) |
835 (pop3-maildrop user) | |
836 (pop3-mailhost server) | |
837 (pop3-port port) | |
838 (pop3-authentication-scheme | |
85712
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
839 (if (eq authentication 'apop) 'apop 'pass)) |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
840 (pop3-stream-type stream)) |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
841 (if (or debug-on-quit debug-on-error) |
110195
48695a2e29d9
gnus-start.el: White space clean up; mail-source.el (mail-source-fetch-pop): Use streaming pop3 retrieval; pop3.el (pop3-streaming-movemail): Respect pop3-leave-mail-on-server; pop3.el (pop3-logon): Fix up unbound variable typo; mail-source.el (mail-source-delete-crash-box): Only check the incoming files for deletion once per day to save a lot of file accesses.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110189
diff
changeset
|
842 (save-excursion (pop3-streaming-movemail |
48695a2e29d9
gnus-start.el: White space clean up; mail-source.el (mail-source-fetch-pop): Use streaming pop3 retrieval; pop3.el (pop3-streaming-movemail): Respect pop3-leave-mail-on-server; pop3.el (pop3-logon): Fix up unbound variable typo; mail-source.el (mail-source-delete-crash-box): Only check the incoming files for deletion once per day to save a lot of file accesses.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110189
diff
changeset
|
843 mail-source-crash-box)) |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
844 (condition-case err |
110195
48695a2e29d9
gnus-start.el: White space clean up; mail-source.el (mail-source-fetch-pop): Use streaming pop3 retrieval; pop3.el (pop3-streaming-movemail): Respect pop3-leave-mail-on-server; pop3.el (pop3-logon): Fix up unbound variable typo; mail-source.el (mail-source-delete-crash-box): Only check the incoming files for deletion once per day to save a lot of file accesses.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110189
diff
changeset
|
845 (save-excursion (pop3-streaming-movemail |
48695a2e29d9
gnus-start.el: White space clean up; mail-source.el (mail-source-fetch-pop): Use streaming pop3 retrieval; pop3.el (pop3-streaming-movemail): Respect pop3-leave-mail-on-server; pop3.el (pop3-logon): Fix up unbound variable typo; mail-source.el (mail-source-delete-crash-box): Only check the incoming files for deletion once per day to save a lot of file accesses.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
110189
diff
changeset
|
846 mail-source-crash-box)) |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
847 (error |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
848 ;; We nix out the password in case the error |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
849 ;; was because of a wrong password being given. |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
850 (setq mail-source-password-cache |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
851 (delq (assoc from mail-source-password-cache) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
852 mail-source-password-cache)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
853 (signal (car err) (cdr err))))))))) |
31717 | 854 (if result |
855 (progn | |
856 (when (eq authentication 'password) | |
857 (unless (assoc from mail-source-password-cache) | |
858 (push (cons from password) mail-source-password-cache))) | |
859 (prog1 | |
860 (mail-source-callback callback server) | |
861 ;; Update display-time's mail flag, if relevant. | |
862 (if (equal source mail-source-primary-source) | |
863 (setq mail-source-new-mail-available nil)) | |
864 (mail-source-run-script | |
865 postscript | |
866 (format-spec-make ?p password ?t mail-source-crash-box | |
85712
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
867 ?s server ?P port ?u user)) |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
868 (mail-source-delete-crash-box))) |
31717 | 869 ;; We nix out the password in case the error |
870 ;; was because of a wrong password being given. | |
871 (setq mail-source-password-cache | |
872 (delq (assoc from mail-source-password-cache) | |
873 mail-source-password-cache)) | |
874 0)))) | |
875 | |
876 (defun mail-source-check-pop (source) | |
877 "Check whether there is new mail." | |
878 (mail-source-bind (pop source) | |
879 (let ((from (format "%s:%s:%s" server user port)) | |
880 (mail-source-string (format "pop:%s@%s" user server)) | |
881 result) | |
882 (when (eq authentication 'password) | |
883 (setq password | |
884 (or password | |
885 (cdr (assoc from mail-source-password-cache)) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
886 (read-passwd |
31717 | 887 (format "Password for %s at %s: " user server)))) |
888 (unless (assoc from mail-source-password-cache) | |
889 (push (cons from password) mail-source-password-cache))) | |
890 (when server | |
891 (setenv "MAILHOST" server)) | |
892 (setq result | |
893 (cond | |
894 ;; No easy way to check whether mail is waiting for these. | |
895 (program) | |
896 (function) | |
897 ;; The default is to use pop3.el. | |
898 (t | |
66299
01b85ec4a61d
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-615
Miles Bader <miles@gnu.org>
parents:
64754
diff
changeset
|
899 (require 'pop3) |
31717 | 900 (let ((pop3-password password) |
901 (pop3-maildrop user) | |
902 (pop3-mailhost server) | |
903 (pop3-port port) | |
904 (pop3-authentication-scheme | |
905 (if (eq authentication 'apop) 'apop 'pass))) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
906 (if (or debug-on-quit debug-on-error) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
907 (save-excursion (pop3-get-message-count)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
908 (condition-case err |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
909 (save-excursion (pop3-get-message-count)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
910 (error |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
911 ;; We nix out the password in case the error |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
912 ;; was because of a wrong password being given. |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
913 (setq mail-source-password-cache |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
914 (delq (assoc from mail-source-password-cache) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
915 mail-source-password-cache)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
916 (signal (car err) (cdr err))))))))) |
31717 | 917 (if result |
918 ;; Inform display-time that we have new mail. | |
919 (setq mail-source-new-mail-available (> result 0)) | |
920 ;; We nix out the password in case the error | |
921 ;; was because of a wrong password being given. | |
922 (setq mail-source-password-cache | |
923 (delq (assoc from mail-source-password-cache) | |
924 mail-source-password-cache))) | |
925 result))) | |
926 | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
927 (defun mail-source-touch-pop () |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
928 "Open and close a POP connection shortly. |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
929 POP server should be defined in `mail-source-primary-source' (which is |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
930 preferred) or `mail-sources'. You may use it for the POP-before-SMTP |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
931 authentication. To do that, you need to set the |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
932 `message-send-mail-function' variable as `message-smtpmail-send-it' |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
933 and put the following line in your ~/.gnus.el file: |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
934 |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
935 \(add-hook 'message-send-mail-hook 'mail-source-touch-pop) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
936 |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
937 See the Gnus manual for details." |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
938 (let ((sources (if mail-source-primary-source |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
939 (list mail-source-primary-source) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
940 mail-sources))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
941 (while sources |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
942 (if (eq 'pop (car (car sources))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
943 (mail-source-check-pop (car sources))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
944 (setq sources (cdr sources))))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
945 |
31717 | 946 (defun mail-source-new-mail-p () |
947 "Handler for `display-time' to indicate when new mail is available." | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
948 ;; Flash (ie. ring the visible bell) if mail is available. |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
949 (if (and mail-source-flash mail-source-new-mail-available) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
950 (let ((visible-bell t)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
951 (ding))) |
31717 | 952 ;; Only report flag setting; flag is updated on a different schedule. |
953 mail-source-new-mail-available) | |
954 | |
955 | |
956 (defvar mail-source-report-new-mail nil) | |
957 (defvar mail-source-report-new-mail-timer nil) | |
958 (defvar mail-source-report-new-mail-idle-timer nil) | |
959 | |
960 (defun mail-source-start-idle-timer () | |
961 ;; Start our idle timer if necessary, so we delay the check until the | |
962 ;; user isn't typing. | |
963 (unless mail-source-report-new-mail-idle-timer | |
964 (setq mail-source-report-new-mail-idle-timer | |
965 (run-with-idle-timer | |
966 mail-source-idle-time-delay | |
967 nil | |
968 (lambda () | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
969 (unwind-protect |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
970 (mail-source-check-pop mail-source-primary-source) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
971 (setq mail-source-report-new-mail-idle-timer nil))))) |
31717 | 972 ;; Since idle timers created when Emacs is already in the idle |
973 ;; state don't get activated until Emacs _next_ becomes idle, we | |
974 ;; need to force our timer to be considered active now. We do | |
975 ;; this by being naughty and poking the timer internals directly | |
976 ;; (element 0 of the vector is nil if the timer is active). | |
977 (aset mail-source-report-new-mail-idle-timer 0 nil))) | |
978 | |
979 (defun mail-source-report-new-mail (arg) | |
980 "Toggle whether to report when new mail is available. | |
981 This only works when `display-time' is enabled." | |
982 (interactive "P") | |
983 (if (not mail-source-primary-source) | |
38413
a26d9b55abb6
Some fixes to follow coding conventions in files from Gnus.
Pavel Janík <Pavel@Janik.cz>
parents:
33342
diff
changeset
|
984 (error "Need to set `mail-source-primary-source' to check for new mail")) |
31717 | 985 (let ((on (if (null arg) |
986 (not mail-source-report-new-mail) | |
987 (> (prefix-numeric-value arg) 0)))) | |
988 (setq mail-source-report-new-mail on) | |
989 (and mail-source-report-new-mail-timer | |
32102 | 990 (nnheader-cancel-timer mail-source-report-new-mail-timer)) |
31717 | 991 (and mail-source-report-new-mail-idle-timer |
32102 | 992 (nnheader-cancel-timer mail-source-report-new-mail-idle-timer)) |
31717 | 993 (setq mail-source-report-new-mail-timer nil) |
994 (setq mail-source-report-new-mail-idle-timer nil) | |
995 (if on | |
996 (progn | |
997 (require 'time) | |
31764 | 998 ;; display-time-mail-function is an Emacs 21 feature. |
31717 | 999 (setq display-time-mail-function #'mail-source-new-mail-p) |
1000 ;; Set up the main timer. | |
1001 (setq mail-source-report-new-mail-timer | |
85712
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
1002 (run-at-time |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
1003 (* 60 mail-source-report-new-mail-interval) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
1004 (* 60 mail-source-report-new-mail-interval) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
1005 #'mail-source-start-idle-timer)) |
31717 | 1006 ;; When you get new mail, clear "Mail" from the mode line. |
1007 (add-hook 'nnmail-post-get-new-mail-hook | |
1008 'display-time-event-handler) | |
1009 (message "Mail check enabled")) | |
1010 (setq display-time-mail-function nil) | |
1011 (remove-hook 'nnmail-post-get-new-mail-hook | |
1012 'display-time-event-handler) | |
1013 (message "Mail check disabled")))) | |
1014 | |
1015 (defun mail-source-fetch-maildir (source callback) | |
1016 "Fetcher for maildir sources." | |
1017 (mail-source-bind (maildir source) | |
1018 (let ((found 0) | |
1019 mail-source-string) | |
1020 (unless (string-match "/$" path) | |
1021 (setq path (concat path "/"))) | |
1022 (dolist (subdir subdirs) | |
1023 (when (file-directory-p (concat path subdir)) | |
1024 (setq mail-source-string (format "maildir:%s%s" path subdir)) | |
1025 (dolist (file (directory-files (concat path subdir) t)) | |
1026 (when (and (not (file-directory-p file)) | |
1027 (not (if function | |
1028 (funcall function file mail-source-crash-box) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44075
diff
changeset
|
1029 (let ((coding-system-for-write |
31717 | 1030 mm-text-coding-system) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44075
diff
changeset
|
1031 (coding-system-for-read |
31717 | 1032 mm-text-coding-system)) |
1033 (with-temp-file mail-source-crash-box | |
1034 (insert-file-contents file) | |
1035 (goto-char (point-min)) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
1036 ;;; ;; Unix mail format |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
1037 ;;; (unless (looking-at "\n*From ") |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
1038 ;;; (insert "From maildir " |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
1039 ;;; (current-time-string) "\n")) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
1040 ;;; (while (re-search-forward "^From " nil t) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
1041 ;;; (replace-match ">From ")) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
1042 ;;; (goto-char (point-max)) |
32333 | 1043 ;;; (insert "\n\n") |
31717 | 1044 ;; MMDF mail format |
32333 | 1045 (insert "\001\001\001\001\n")) |
31717 | 1046 (delete-file file))))) |
85712
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
1047 (incf found (mail-source-callback callback file)) |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
1048 (mail-source-delete-crash-box))))) |
31717 | 1049 found))) |
1050 | |
95820
645fb33380d6
Remove unnecessary eval-and-compile of autoloads.
Glenn Morris <rgm@gnu.org>
parents:
94662
diff
changeset
|
1051 (autoload 'imap-open "imap") |
645fb33380d6
Remove unnecessary eval-and-compile of autoloads.
Glenn Morris <rgm@gnu.org>
parents:
94662
diff
changeset
|
1052 (autoload 'imap-authenticate "imap") |
645fb33380d6
Remove unnecessary eval-and-compile of autoloads.
Glenn Morris <rgm@gnu.org>
parents:
94662
diff
changeset
|
1053 (autoload 'imap-mailbox-select "imap") |
645fb33380d6
Remove unnecessary eval-and-compile of autoloads.
Glenn Morris <rgm@gnu.org>
parents:
94662
diff
changeset
|
1054 (autoload 'imap-mailbox-unselect "imap") |
645fb33380d6
Remove unnecessary eval-and-compile of autoloads.
Glenn Morris <rgm@gnu.org>
parents:
94662
diff
changeset
|
1055 (autoload 'imap-mailbox-close "imap") |
645fb33380d6
Remove unnecessary eval-and-compile of autoloads.
Glenn Morris <rgm@gnu.org>
parents:
94662
diff
changeset
|
1056 (autoload 'imap-search "imap") |
645fb33380d6
Remove unnecessary eval-and-compile of autoloads.
Glenn Morris <rgm@gnu.org>
parents:
94662
diff
changeset
|
1057 (autoload 'imap-fetch "imap") |
645fb33380d6
Remove unnecessary eval-and-compile of autoloads.
Glenn Morris <rgm@gnu.org>
parents:
94662
diff
changeset
|
1058 (autoload 'imap-close "imap") |
645fb33380d6
Remove unnecessary eval-and-compile of autoloads.
Glenn Morris <rgm@gnu.org>
parents:
94662
diff
changeset
|
1059 (autoload 'imap-error-text "imap") |
645fb33380d6
Remove unnecessary eval-and-compile of autoloads.
Glenn Morris <rgm@gnu.org>
parents:
94662
diff
changeset
|
1060 (autoload 'imap-message-flags-add "imap") |
645fb33380d6
Remove unnecessary eval-and-compile of autoloads.
Glenn Morris <rgm@gnu.org>
parents:
94662
diff
changeset
|
1061 (autoload 'imap-list-to-message-set "imap") |
645fb33380d6
Remove unnecessary eval-and-compile of autoloads.
Glenn Morris <rgm@gnu.org>
parents:
94662
diff
changeset
|
1062 (autoload 'imap-range-to-message-set "imap") |
645fb33380d6
Remove unnecessary eval-and-compile of autoloads.
Glenn Morris <rgm@gnu.org>
parents:
94662
diff
changeset
|
1063 (autoload 'nnheader-ms-strip-cr "nnheader") |
31717 | 1064 |
87246
977e07d44319
Add declare-function compatibility definition.
Glenn Morris <rgm@gnu.org>
parents:
87097
diff
changeset
|
1065 (autoload 'gnus-compress-sequence "gnus-range") |
977e07d44319
Add declare-function compatibility definition.
Glenn Morris <rgm@gnu.org>
parents:
87097
diff
changeset
|
1066 |
32102 | 1067 (defvar mail-source-imap-file-coding-system 'binary |
1068 "Coding system for the crashbox made by `mail-source-fetch-imap'.") | |
1069 | |
87246
977e07d44319
Add declare-function compatibility definition.
Glenn Morris <rgm@gnu.org>
parents:
87097
diff
changeset
|
1070 ;; Autoloads will bring in imap before this is called. |
977e07d44319
Add declare-function compatibility definition.
Glenn Morris <rgm@gnu.org>
parents:
87097
diff
changeset
|
1071 (declare-function imap-capability "imap" (&optional identifier buffer)) |
977e07d44319
Add declare-function compatibility definition.
Glenn Morris <rgm@gnu.org>
parents:
87097
diff
changeset
|
1072 |
31717 | 1073 (defun mail-source-fetch-imap (source callback) |
1074 "Fetcher for imap sources." | |
1075 (mail-source-bind (imap source) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
1076 (mail-source-run-script |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
1077 prescript (format-spec-make ?p password ?t mail-source-crash-box |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
1078 ?s server ?P port ?u user) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
1079 prescript-delay) |
31717 | 1080 (let ((from (format "%s:%s:%s" server user port)) |
1081 (found 0) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
1082 (buf (generate-new-buffer " *imap source*")) |
31717 | 1083 (mail-source-string (format "imap:%s:%s" server mailbox)) |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
1084 (imap-shell-program (or (list program) imap-shell-program)) |
31717 | 1085 remove) |
1086 (if (and (imap-open server port stream authentication buf) | |
1087 (imap-authenticate | |
1088 user (or (cdr (assoc from mail-source-password-cache)) | |
1089 password) buf) | |
1090 (imap-mailbox-select mailbox nil buf)) | |
32918 | 1091 (let ((coding-system-for-write mail-source-imap-file-coding-system) |
32333 | 1092 str) |
31717 | 1093 (with-temp-file mail-source-crash-box |
32918 | 1094 ;; Avoid converting 8-bit chars from inserted strings to |
1095 ;; multibyte. | |
1096 (mm-disable-multibyte) | |
31717 | 1097 ;; remember password |
1098 (with-current-buffer buf | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
1099 (when (and imap-password |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
1100 (not (assoc from mail-source-password-cache))) |
31717 | 1101 (push (cons from imap-password) mail-source-password-cache))) |
1102 ;; if predicate is nil, use all uids | |
1103 (dolist (uid (imap-search (or predicate "1:*") buf)) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
1104 (when (setq str |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
1105 (if (imap-capability 'IMAP4rev1 buf) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
1106 (caddar (imap-fetch uid "BODY.PEEK[]" |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
1107 'BODYDETAIL nil buf)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
1108 (imap-fetch uid "RFC822.PEEK" 'RFC822 nil buf))) |
31717 | 1109 (push uid remove) |
1110 (insert "From imap " (current-time-string) "\n") | |
1111 (save-excursion | |
1112 (insert str "\n\n")) | |
85712
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
1113 (while (let ((case-fold-search nil)) |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
1114 (re-search-forward "^From " nil t)) |
31717 | 1115 (replace-match ">From ")) |
1116 (goto-char (point-max)))) | |
1117 (nnheader-ms-strip-cr)) | |
1118 (incf found (mail-source-callback callback server)) | |
85712
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
1119 (mail-source-delete-crash-box) |
31717 | 1120 (when (and remove fetchflag) |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
1121 (setq remove (nreverse remove)) |
31717 | 1122 (imap-message-flags-add |
32102 | 1123 (imap-range-to-message-set (gnus-compress-sequence remove)) |
1124 fetchflag nil buf)) | |
31717 | 1125 (if dontexpunge |
1126 (imap-mailbox-unselect buf) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
1127 (imap-mailbox-close nil buf)) |
31717 | 1128 (imap-close buf)) |
1129 (imap-close buf) | |
1130 ;; We nix out the password in case the error | |
1131 ;; was because of a wrong password being given. | |
1132 (setq mail-source-password-cache | |
1133 (delq (assoc from mail-source-password-cache) | |
1134 mail-source-password-cache)) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
1135 (error "IMAP error: %s" (imap-error-text buf))) |
31717 | 1136 (kill-buffer buf) |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
1137 (mail-source-run-script |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
1138 postscript |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
1139 (format-spec-make ?p password ?t mail-source-crash-box |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
1140 ?s server ?P port ?u user)) |
31717 | 1141 found))) |
1142 | |
95820
645fb33380d6
Remove unnecessary eval-and-compile of autoloads.
Glenn Morris <rgm@gnu.org>
parents:
94662
diff
changeset
|
1143 (autoload 'webmail-fetch "webmail") |
31717 | 1144 |
1145 (defun mail-source-fetch-webmail (source callback) | |
1146 "Fetch for webmail source." | |
1147 (mail-source-bind (webmail source) | |
1148 (let ((mail-source-string (format "webmail:%s:%s" subtype user)) | |
1149 (webmail-newmail-only dontexpunge) | |
1150 (webmail-move-to-trash-can (not dontexpunge))) | |
1151 (when (eq authentication 'password) | |
1152 (setq password | |
1153 (or password | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44075
diff
changeset
|
1154 (cdr (assoc (format "webmail:%s:%s" subtype user) |
31717 | 1155 mail-source-password-cache)) |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
1156 (read-passwd |
31717 | 1157 (format "Password for %s at %s: " user subtype)))) |
1158 (when (and password | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44075
diff
changeset
|
1159 (not (assoc (format "webmail:%s:%s" subtype user) |
31717 | 1160 mail-source-password-cache))) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44075
diff
changeset
|
1161 (push (cons (format "webmail:%s:%s" subtype user) password) |
31717 | 1162 mail-source-password-cache))) |
1163 (webmail-fetch mail-source-crash-box subtype user password) | |
85712
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
1164 (mail-source-callback callback (symbol-name subtype)) |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
1165 (mail-source-delete-crash-box)))) |
31717 | 1166 |
1167 (provide 'mail-source) | |
1168 | |
1169 ;;; mail-source.el ends here |