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