1 ;;; mail-source.el --- functions for fetching mail
3 ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;; Keywords: news, mail
9 ;; This file is part of GNU Emacs.
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 of the License, or
14 ;; (at your option) any later version.
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.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
30 (unless (fboundp 'declare-function
) (defmacro declare-function
(&rest r
))))
32 (require 'format-spec
)
36 (autoload 'auth-source-user-or-password
"auth-source")
37 (autoload 'pop3-movemail
"pop3")
38 (autoload 'pop3-get-message-count
"pop3")
39 (autoload 'nnheader-cancel-timer
"nnheader")
41 (require 'message
) ;; for `message-directory'
43 (defvar display-time-mail-function
)
45 (defgroup mail-source nil
46 "The mail-fetching library."
50 ;; Define these at compile time to avoid dragging in imap always.
51 (defconst mail-source-imap-authenticators
54 (list 'const
(car a
)))
55 imap-authenticator-alist
)))
56 (defconst mail-source-imap-streams
59 (list 'const
(car a
)))
62 (defcustom mail-sources
'((file))
63 "Where the mail backends will look for incoming mail.
64 This variable is a list of mail source specifiers.
65 See Info node `(gnus)Mail Source Specifiers'."
67 :version
"23.1" ;; No Gnus
68 :link
'(custom-manual "(gnus)Mail Source Specifiers")
70 (const :tag
"None" nil
)
72 (choice :format
"%[Value Menu%] %v"
74 (cons :tag
"Group parameter `mail-source'"
75 (const :format
"" group
))
76 (cons :tag
"Spool file"
77 (const :format
"" file
)
78 (checklist :tag
"Options" :greedy t
80 (const :format
"" :value
:path
)
82 (cons :tag
"Several files in a directory"
83 (const :format
"" directory
)
84 (checklist :tag
"Options" :greedy t
86 (const :format
"" :value
:path
)
87 (directory :tag
"Path"))
89 (const :format
"" :value
:suffix
)
90 (string :tag
"Suffix"))
92 (const :format
"" :value
:predicate
)
93 (function :tag
"Predicate"))
95 (const :format
"" :value
:prescript
)
96 (choice :tag
"Prescript"
99 (function :format
"%v")))
101 (const :format
"" :value
:postscript
)
102 (choice :tag
"Postscript"
104 (string :format
"%v")
105 (function :format
"%v")))
107 (const :format
"" :value
:plugged
)
108 (boolean :tag
"Plugged"))))
109 (cons :tag
"POP3 server"
110 (const :format
"" pop
)
111 (checklist :tag
"Options" :greedy t
113 (const :format
"" :value
:server
)
114 (string :tag
"Server"))
116 (const :format
"" :value
:port
)
119 (integer :format
"%v")
120 (string :format
"%v")))
122 (const :format
"" :value
:user
)
123 (string :tag
"User"))
125 (const :format
"" :value
:password
)
126 (string :tag
"Password"))
128 (const :format
"" :value
:program
)
129 (string :tag
"Program"))
131 (const :format
"" :value
:prescript
)
132 (choice :tag
"Prescript"
134 (string :format
"%v")
135 (function :format
"%v")
136 (const :tag
"None" nil
)))
138 (const :format
"" :value
:postscript
)
139 (choice :tag
"Postscript"
141 (string :format
"%v")
142 (function :format
"%v")
143 (const :tag
"None" nil
)))
145 (const :format
"" :value
:function
)
146 (function :tag
"Function"))
149 :value
:authentication
)
150 (choice :tag
"Authentication"
155 (const :format
"" :value
:plugged
)
156 (boolean :tag
"Plugged"))
158 (const :format
"" :value
:stream
)
159 (choice :tag
"Stream"
161 (const :tag
"Clear" nil
)
163 (const :tag
"SSL/TLS" ssl
)))))
164 (cons :tag
"Maildir (qmail, postfix...)"
165 (const :format
"" maildir
)
166 (checklist :tag
"Options" :greedy t
168 (const :format
"" :value
:path
)
169 (directory :tag
"Path"))
171 (const :format
"" :value
:plugged
)
172 (boolean :tag
"Plugged"))))
173 (cons :tag
"IMAP server"
174 (const :format
"" imap
)
175 (checklist :tag
"Options" :greedy t
177 (const :format
"" :value
:server
)
178 (string :tag
"Server"))
180 (const :format
"" :value
:port
)
185 (const :format
"" :value
:user
)
186 (string :tag
"User"))
188 (const :format
"" :value
:password
)
189 (string :tag
"Password"))
191 (const :format
"" :value
:stream
)
192 (choice :tag
"Stream"
194 ,@mail-source-imap-streams
))
196 (const :format
"" :value
:program
)
197 (string :tag
"Program"))
200 :value
:authenticator
)
201 (choice :tag
"Authenticator"
203 ,@mail-source-imap-authenticators
))
205 (const :format
"" :value
:mailbox
)
206 (string :tag
"Mailbox"
209 (const :format
"" :value
:predicate
)
210 (string :tag
"Predicate"
211 :value
"UNSEEN UNDELETED"))
213 (const :format
"" :value
:fetchflag
)
214 (string :tag
"Fetchflag"
219 (boolean :tag
"Dontexpunge"))
221 (const :format
"" :value
:plugged
)
222 (boolean :tag
"Plugged"))))
223 (cons :tag
"Webmail server"
224 (const :format
"" webmail
)
225 (checklist :tag
"Options" :greedy t
227 (const :format
"" :value
:subtype
)
228 ;; Should be generated from
229 ;; `webmail-type-definition', but we
230 ;; can't require webmail without W3.
231 (choice :tag
"Subtype"
239 (const :format
"" :value
:user
)
240 (string :tag
"User"))
242 (const :format
"" :value
:password
)
243 (string :tag
"Password"))
247 (boolean :tag
"Dontexpunge"))
249 (const :format
"" :value
:plugged
)
250 (boolean :tag
"Plugged"))))))))
252 (defcustom mail-source-ignore-errors nil
253 "*Ignore errors when querying mail sources.
254 If nil, the user will be prompted when an error occurs. If non-nil,
255 the error will be ignored."
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."
266 (defcustom mail-source-flash t
267 "*If non-nil, flash periodically when mail is available."
271 (defcustom mail-source-crash-box
"~/.emacs-mail-crash-box"
272 "File where mail will be stored while processing it."
276 (defcustom mail-source-directory message-directory
277 "Directory where incoming mail source files (if any) will be stored."
281 (defcustom mail-source-default-file-modes
384
282 "Set the mode bits of all new mail files to this integer."
286 (defcustom mail-source-delete-incoming
287 10 ;; development versions
288 ;; 2 ;; released versions
289 "If non-nil, delete incoming files after handling.
290 If t, delete immediately, if nil, never delete. If a positive number, delete
291 files older than number of days.
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."
298 :version
"22.2" ;; No Gnus / Gnus 5.10.10 (default changed)
299 :type
'(choice (const :tag
"immediately" t
)
300 (const :tag
"never" nil
)
301 (integer :tag
"days")))
303 (defcustom mail-source-delete-old-incoming-confirm nil
304 "If non-nil, ask for confirmation before deleting old incoming files.
305 This variable only applies when `mail-source-delete-incoming' is a positive
307 :version
"22.2" ;; No Gnus / Gnus 5.10.10 (default changed)
311 (defcustom mail-source-incoming-file-prefix
"Incoming"
312 "Prefix for file name for storing incoming mail"
316 (defcustom mail-source-report-new-mail-interval
5
317 "Interval in minutes between checks for new mail."
321 (defcustom mail-source-idle-time-delay
5
322 "Number of idle seconds to wait before checking for new mail."
326 (defcustom mail-source-movemail-program nil
327 "If non-nil, name of program for fetching new mail."
330 :type
'(choice (const nil
) string
))
332 ;;; Internal variables.
334 (defvar mail-source-string
""
335 "A dynamically bound string that says what the current mail source is.")
337 (defvar mail-source-new-mail-available nil
338 "Flag indicating when new mail is available.")
341 (defvar mail-source-common-keyword-map
343 "Mapping from keywords to default values.
344 Common keywords should be listed here.")
346 (defvar mail-source-keyword-map
351 (:path
(or (getenv "MAIL")
352 (expand-file-name (user-login-name) rmail-spool-directory
))))
359 (:predicate identity
))
364 (:server
(getenv "MAILHOST"))
366 (:user
(or (user-login-name) (getenv "LOGNAME") (getenv "USER")))
370 (:authentication password
)
373 (:path
(or (getenv "MAILDIR") "~/Maildir/"))
374 (:subdirs
("cur" "new"))
377 (:server
(getenv "MAILHOST"))
382 (:user
(or (user-login-name) (getenv "LOGNAME") (getenv "USER")))
385 (:predicate
"UNSEEN UNDELETED")
386 (:fetchflag
"\\Deleted")
393 (:user
(or (user-login-name) (getenv "LOGNAME") (getenv "USER")))
396 (:authentication password
)))
397 "Mapping from keywords to default values.
398 All keywords that can be used must be listed here."))
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.")
409 (defvar mail-source-password-cache nil
)
411 (defvar mail-source-plugged t
)
416 (defun mail-source-strip-keyword (keyword)
417 "Strip the leading colon off the KEYWORD."
418 (intern (substring (symbol-name keyword
) 1))))
420 ;; generate a list of variable names paired with nil values
421 ;; suitable for usage in a `let' form
423 (defun mail-source-bind-1 (type)
424 (let* ((defaults (cdr (assq type mail-source-keyword-map
)))
426 (while (setq default
(pop defaults
))
427 (push (list (mail-source-strip-keyword (car default
))
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.
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.
444 After this is done, BODY will be executed in the scope
445 of the second `let' form.
447 The variables bound and their default values are described by
448 the `mail-source-keyword-map' variable."
449 `(let* ,(mail-source-bind-1 (car type-source
))
450 (mail-source-set-1 ,(cadr type-source
))
453 (put 'mail-source-bind
'lisp-indent-function
1)
454 (put 'mail-source-bind
'edebug-form-spec
'(sexp body
))
456 (defun mail-source-set-1 (source)
457 (let* ((type (pop source
))
458 (defaults (cdr (assq type mail-source-keyword-map
)))
459 default value keyword user-auth pass-auth
)
460 (while (setq default
(pop defaults
))
461 ;; for each default :SYMBOL, set SYMBOL to the plist value for :SYMBOL
462 ;; using `mail-source-value' to evaluate the plist value
463 (set (mail-source-strip-keyword (setq keyword
(car default
)))
464 ;; note the following reasons for this structure:
465 ;; 1) the auth-sources user and password override everything
466 ;; 2) it avoids macros, so it's cleaner
467 ;; 3) it falls through to the mail-sources and then default values
472 (auth-source-user-or-password
474 ;; this is "host" in auth-sources
475 (if (boundp 'server
) (symbol-value 'server
) "")
479 (eq keyword
:password
)
481 (auth-source-user-or-password
483 ;; this is "host" in auth-sources
484 (if (boundp 'server
) (symbol-value 'server
) "")
487 (t (if (setq value
(plist-get source keyword
))
488 (mail-source-value value
)
489 (mail-source-value (cadr default
)))))))))
492 (defun mail-source-bind-common-1 ()
493 (let* ((defaults mail-source-common-keyword-map
)
495 (while (setq default
(pop defaults
))
496 (push (list (mail-source-strip-keyword (car default
))
501 (defun mail-source-set-common-1 (source)
502 (let* ((type (pop source
))
503 (defaults mail-source-common-keyword-map
)
504 (defaults-1 (cdr (assq type mail-source-keyword-map
)))
505 default value keyword
)
506 (while (setq default
(pop defaults
))
507 (set (mail-source-strip-keyword (setq keyword
(car default
)))
508 (if (setq value
(plist-get source keyword
))
509 (mail-source-value value
)
510 (if (setq value
(assq keyword defaults-1
))
511 (mail-source-value (cadr value
))
512 (mail-source-value (cadr default
))))))))
514 (defmacro mail-source-bind-common
(source &rest body
)
515 "Return a `let' form that binds all common variables.
516 See `mail-source-bind'."
517 `(let ,(mail-source-bind-common-1)
518 (mail-source-set-common-1 source
)
521 (put 'mail-source-bind-common
'lisp-indent-function
1)
522 (put 'mail-source-bind-common
'edebug-form-spec
'(sexp body
))
524 (defun mail-source-value (value)
525 "Return the value of VALUE."
531 ((and (listp value
) (symbolp (car value
)) (fboundp (car value
)))
533 ;; Just return the value.
537 (defun mail-source-fetch (source callback
)
538 "Fetch mail from SOURCE and call CALLBACK zero or more times.
539 CALLBACK will be called with the name of the file where (some of)
540 the mail from SOURCE is put.
541 Return the number of files that were found."
542 (mail-source-bind-common source
543 (if (or mail-source-plugged plugged
)
545 (let ((function (cadr (assq (car source
) mail-source-fetcher-alist
)))
548 (error "%S is an invalid mail source specification" source
))
549 ;; If there's anything in the crash box, we do it first.
550 (when (file-exists-p mail-source-crash-box
)
551 (message "Processing mail from %s..." mail-source-crash-box
)
552 (setq found
(mail-source-callback
553 callback mail-source-crash-box
))
554 (mail-source-delete-crash-box))
556 (if (or debug-on-quit debug-on-error
)
557 (funcall function source callback
)
559 (funcall function source callback
)
561 (if (and (not mail-source-ignore-errors
)
564 (format "Mail source %s error (%s). Continue? "
565 (if (memq ':password source
)
566 (let ((s (copy-sequence source
)))
567 (setcar (cdr (memq ':password s
))
572 (error "Cannot get new mail"))
575 (defun mail-source-delete-old-incoming (&optional age confirm
)
576 "Remove incoming files older than AGE days.
577 If CONFIRM is non-nil, ask for confirmation before removing a file."
579 (let* ((high2days (/ 65536.0 60 60 24));; convert high bits to days
580 (low2days (/ 1.0 65536.0)) ;; convert low bits to days
581 (diff (if (natnump age
) age
30));; fallback, if no valid AGE given
583 (setq files
(directory-files
584 mail-source-directory t
586 (regexp-quote mail-source-incoming-file-prefix
)))
587 currday
(* (car (current-time)) high2days
)
588 currday
(+ currday
(* low2days
(nth 1 (current-time)))))
590 (let* ((ffile (car files
))
591 (bfile (gnus-replace-in-string
592 ffile
"\\`.*/\\([^/]+\\)\\'" "\\1"))
593 (filetime (nth 5 (file-attributes ffile
)))
594 (fileday (* (car filetime
) high2days
))
595 (fileday (+ fileday
(* low2days
(nth 1 filetime
)))))
596 (setq files
(cdr files
))
597 (when (and (> (- currday fileday
) diff
)
601 Delete old (> %s day(s)) incoming mail file `%s'? " diff bfile
))
603 Deleting old (> %s day(s)) incoming mail file `%s'." diff bfile
)
605 (delete-file ffile
))))))
607 (defun mail-source-callback (callback info
)
608 "Call CALLBACK on the mail file. Pass INFO on to CALLBACK."
609 (if (or (not (file-exists-p mail-source-crash-box
))
610 (zerop (nth 7 (file-attributes mail-source-crash-box
))))
612 (when (file-exists-p mail-source-crash-box
)
613 (delete-file mail-source-crash-box
))
615 (funcall callback mail-source-crash-box info
)))
617 (defun mail-source-delete-crash-box ()
618 (when (file-exists-p mail-source-crash-box
)
619 ;; Delete or move the incoming mail out of the way.
620 (if (eq mail-source-delete-incoming t
)
621 (delete-file mail-source-crash-box
)
625 mail-source-incoming-file-prefix
626 mail-source-directory
))))
627 (unless (file-exists-p (file-name-directory incoming
))
628 (make-directory (file-name-directory incoming
) t
))
629 (rename-file mail-source-crash-box incoming t
)
630 ;; remove old incoming files?
631 (when (natnump mail-source-delete-incoming
)
632 (mail-source-delete-old-incoming
633 mail-source-delete-incoming
634 mail-source-delete-old-incoming-confirm
))))))
636 (defun mail-source-movemail (from to
)
637 "Move FROM to TO using movemail."
638 (if (not (file-writable-p to
))
639 (error "Can't write to crash box %s. Not moving mail" to
)
640 (let ((to (file-truename (expand-file-name to
)))
642 (setq to
(file-truename to
)
643 from
(file-truename from
))
644 ;; Set TO if have not already done so, and rename or copy
645 ;; the file FROM to TO if and as appropriate.
648 ;; The crash box exists already.
650 ((not (file-exists-p from
))
651 ;; There is no inbox.
653 ((zerop (nth 7 (file-attributes from
)))
657 ;; If getting from mail spool directory, use movemail to move
658 ;; rather than just renaming, so as to interlock with the
662 (setq errors
(generate-new-buffer " *mail source loss*"))
663 (let ((default-directory "/"))
669 (or mail-source-movemail-program
670 (expand-file-name "movemail" exec-directory
))
671 nil errors nil from to
)))))
672 (when (file-exists-p to
)
673 (set-file-modes to mail-source-default-file-modes
))
674 (if (and (or (not (buffer-modified-p errors
))
675 (zerop (buffer-size errors
)))
676 (and (numberp result
)
678 ;; No output => movemail won.
681 ;; There may be a warning about older revisions. We
683 (goto-char (point-min))
684 (if (search-forward "older revision" nil t
)
686 ;; Probably a real error.
687 (subst-char-in-region (point-min) (point-max) ?
\n ?\
)
688 (goto-char (point-max))
689 (skip-chars-backward " \t")
690 (delete-region (point) (point-max))
691 (goto-char (point-min))
692 (when (looking-at "movemail: ")
693 (delete-region (point-min) (match-end 0)))
694 ;; Result may be a signal description string.
696 (format "movemail: %s (%s return). Continue? "
697 (buffer-string) result
))
698 (error "%s" (buffer-string)))
701 (buffer-name errors
))
702 (kill-buffer errors
))
703 ;; Return whether we moved successfully or not.
706 (defun mail-source-movemail-and-remove (from to
)
707 "Move FROM to TO using movemail, then remove FROM if empty."
708 (or (not (mail-source-movemail from to
))
709 (not (zerop (nth 7 (file-attributes from
))))
712 (defun mail-source-fetch-with-program (program)
713 (eq 0 (call-process shell-file-name nil nil nil
714 shell-command-switch program
)))
716 (defun mail-source-run-script (script spec
&optional delay
)
718 (if (functionp script
)
720 (mail-source-call-script
721 (format-spec script spec
))))
725 (defun mail-source-call-script (script)
726 (let ((background nil
)
727 (stderr (get-buffer-create " *mail-source-stderr*"))
729 (when (string-match "& *$" script
)
730 (setq script
(substring script
0 (match-beginning 0))
733 (call-process shell-file-name nil background nil
734 shell-command-switch script
))
736 (not (zerop result
)))
738 (message "Mail source error: %s" (buffer-string)))
739 (kill-buffer stderr
)))
742 ;;; Different fetchers
745 (defun mail-source-fetch-file (source callback
)
746 "Fetcher for single-file sources."
747 (mail-source-bind (file source
)
748 (mail-source-run-script
749 prescript
(format-spec-make ?t mail-source-crash-box
)
751 (let ((mail-source-string (format "file:%s" path
)))
752 (if (mail-source-movemail path mail-source-crash-box
)
754 (mail-source-callback callback path
)
755 (mail-source-run-script
756 postscript
(format-spec-make ?t mail-source-crash-box
))
757 (mail-source-delete-crash-box))
760 (defun mail-source-fetch-directory (source callback
)
761 "Fetcher for directory sources."
762 (mail-source-bind (directory source
)
763 (mail-source-run-script
764 prescript
(format-spec-make ?t path
) prescript-delay
)
766 (mail-source-string (format "directory:%s" path
)))
767 (dolist (file (directory-files
768 path t
(concat (regexp-quote suffix
) "$")))
769 (when (and (file-regular-p file
)
770 (funcall predicate file
)
771 (mail-source-movemail file mail-source-crash-box
))
772 (incf found
(mail-source-callback callback file
))
773 (mail-source-run-script postscript
(format-spec-make ?t path
))
774 (mail-source-delete-crash-box)))
777 (defun mail-source-fetch-pop (source callback
)
778 "Fetcher for single-file sources."
779 (mail-source-bind (pop source
)
780 ;; fixme: deal with stream type in format specs
781 (mail-source-run-script
783 (format-spec-make ?p password ?t mail-source-crash-box
784 ?s server ?P port ?u user
)
786 (let ((from (format "%s:%s:%s" server user port
))
787 (mail-source-string (format "pop:%s@%s" user server
))
789 (when (eq authentication
'password
)
792 (cdr (assoc from mail-source-password-cache
))
794 (format "Password for %s at %s: " user server
)))))
796 (setenv "MAILHOST" server
))
800 (mail-source-fetch-with-program
803 (format-spec-make ?p password ?t mail-source-crash-box
804 ?s server ?P port ?u user
))))
806 (funcall function mail-source-crash-box
))
807 ;; The default is to use pop3.el.
810 (let ((pop3-password password
)
812 (pop3-mailhost server
)
814 (pop3-authentication-scheme
815 (if (eq authentication
'apop
) 'apop
'pass
))
816 (pop3-stream-type stream
))
817 (if (or debug-on-quit debug-on-error
)
818 (save-excursion (pop3-movemail mail-source-crash-box
))
820 (save-excursion (pop3-movemail mail-source-crash-box
))
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
)))))))))
830 (when (eq authentication
'password
)
831 (unless (assoc from mail-source-password-cache
)
832 (push (cons from password
) mail-source-password-cache
)))
834 (mail-source-callback callback server
)
835 ;; Update display-time's mail flag, if relevant.
836 (if (equal source mail-source-primary-source
)
837 (setq mail-source-new-mail-available nil
))
838 (mail-source-run-script
840 (format-spec-make ?p password ?t mail-source-crash-box
841 ?s server ?P port ?u user
))
842 (mail-source-delete-crash-box)))
843 ;; We nix out the password in case the error
844 ;; was because of a wrong password being given.
845 (setq mail-source-password-cache
846 (delq (assoc from mail-source-password-cache
)
847 mail-source-password-cache
))
850 (defun mail-source-check-pop (source)
851 "Check whether there is new mail."
852 (mail-source-bind (pop source
)
853 (let ((from (format "%s:%s:%s" server user port
))
854 (mail-source-string (format "pop:%s@%s" user server
))
856 (when (eq authentication
'password
)
859 (cdr (assoc from mail-source-password-cache
))
861 (format "Password for %s at %s: " user server
))))
862 (unless (assoc from mail-source-password-cache
)
863 (push (cons from password
) mail-source-password-cache
)))
865 (setenv "MAILHOST" server
))
868 ;; No easy way to check whether mail is waiting for these.
871 ;; The default is to use pop3.el.
874 (let ((pop3-password password
)
876 (pop3-mailhost server
)
878 (pop3-authentication-scheme
879 (if (eq authentication
'apop
) 'apop
'pass
)))
880 (if (or debug-on-quit debug-on-error
)
881 (save-excursion (pop3-get-message-count))
883 (save-excursion (pop3-get-message-count))
885 ;; We nix out the password in case the error
886 ;; was because of a wrong password being given.
887 (setq mail-source-password-cache
888 (delq (assoc from mail-source-password-cache
)
889 mail-source-password-cache
))
890 (signal (car err
) (cdr err
)))))))))
892 ;; Inform display-time that we have new mail.
893 (setq mail-source-new-mail-available
(> result
0))
894 ;; We nix out the password in case the error
895 ;; was because of a wrong password being given.
896 (setq mail-source-password-cache
897 (delq (assoc from mail-source-password-cache
)
898 mail-source-password-cache
)))
901 (defun mail-source-touch-pop ()
902 "Open and close a POP connection shortly.
903 POP server should be defined in `mail-source-primary-source' (which is
904 preferred) or `mail-sources'. You may use it for the POP-before-SMTP
905 authentication. To do that, you need to set the
906 `message-send-mail-function' variable as `message-smtpmail-send-it'
907 and put the following line in your ~/.gnus.el file:
909 \(add-hook 'message-send-mail-hook 'mail-source-touch-pop)
911 See the Gnus manual for details."
912 (let ((sources (if mail-source-primary-source
913 (list mail-source-primary-source
)
916 (if (eq 'pop
(car (car sources
)))
917 (mail-source-check-pop (car sources
)))
918 (setq sources
(cdr sources
)))))
920 (defun mail-source-new-mail-p ()
921 "Handler for `display-time' to indicate when new mail is available."
922 ;; Flash (ie. ring the visible bell) if mail is available.
923 (if (and mail-source-flash mail-source-new-mail-available
)
924 (let ((visible-bell t
))
926 ;; Only report flag setting; flag is updated on a different schedule.
927 mail-source-new-mail-available
)
930 (defvar mail-source-report-new-mail nil
)
931 (defvar mail-source-report-new-mail-timer nil
)
932 (defvar mail-source-report-new-mail-idle-timer nil
)
934 (defun mail-source-start-idle-timer ()
935 ;; Start our idle timer if necessary, so we delay the check until the
936 ;; user isn't typing.
937 (unless mail-source-report-new-mail-idle-timer
938 (setq mail-source-report-new-mail-idle-timer
940 mail-source-idle-time-delay
944 (mail-source-check-pop mail-source-primary-source
)
945 (setq mail-source-report-new-mail-idle-timer nil
)))))
946 ;; Since idle timers created when Emacs is already in the idle
947 ;; state don't get activated until Emacs _next_ becomes idle, we
948 ;; need to force our timer to be considered active now. We do
949 ;; this by being naughty and poking the timer internals directly
950 ;; (element 0 of the vector is nil if the timer is active).
951 (aset mail-source-report-new-mail-idle-timer
0 nil
)))
953 (defun mail-source-report-new-mail (arg)
954 "Toggle whether to report when new mail is available.
955 This only works when `display-time' is enabled."
957 (if (not mail-source-primary-source
)
958 (error "Need to set `mail-source-primary-source' to check for new mail"))
959 (let ((on (if (null arg
)
960 (not mail-source-report-new-mail
)
961 (> (prefix-numeric-value arg
) 0))))
962 (setq mail-source-report-new-mail on
)
963 (and mail-source-report-new-mail-timer
964 (nnheader-cancel-timer mail-source-report-new-mail-timer
))
965 (and mail-source-report-new-mail-idle-timer
966 (nnheader-cancel-timer mail-source-report-new-mail-idle-timer
))
967 (setq mail-source-report-new-mail-timer nil
)
968 (setq mail-source-report-new-mail-idle-timer nil
)
972 ;; display-time-mail-function is an Emacs 21 feature.
973 (setq display-time-mail-function
#'mail-source-new-mail-p
)
974 ;; Set up the main timer.
975 (setq mail-source-report-new-mail-timer
977 (* 60 mail-source-report-new-mail-interval
)
978 (* 60 mail-source-report-new-mail-interval
)
979 #'mail-source-start-idle-timer
))
980 ;; When you get new mail, clear "Mail" from the mode line.
981 (add-hook 'nnmail-post-get-new-mail-hook
982 'display-time-event-handler
)
983 (message "Mail check enabled"))
984 (setq display-time-mail-function nil
)
985 (remove-hook 'nnmail-post-get-new-mail-hook
986 'display-time-event-handler
)
987 (message "Mail check disabled"))))
989 (defun mail-source-fetch-maildir (source callback
)
990 "Fetcher for maildir sources."
991 (mail-source-bind (maildir source
)
994 (unless (string-match "/$" path
)
995 (setq path
(concat path
"/")))
996 (dolist (subdir subdirs
)
997 (when (file-directory-p (concat path subdir
))
998 (setq mail-source-string
(format "maildir:%s%s" path subdir
))
999 (dolist (file (directory-files (concat path subdir
) t
))
1000 (when (and (not (file-directory-p file
))
1002 (funcall function file mail-source-crash-box
)
1003 (let ((coding-system-for-write
1004 mm-text-coding-system
)
1005 (coding-system-for-read
1006 mm-text-coding-system
))
1007 (with-temp-file mail-source-crash-box
1008 (insert-file-contents file
)
1009 (goto-char (point-min))
1010 ;;; ;; Unix mail format
1011 ;;; (unless (looking-at "\n*From ")
1012 ;;; (insert "From maildir "
1013 ;;; (current-time-string) "\n"))
1014 ;;; (while (re-search-forward "^From " nil t)
1015 ;;; (replace-match ">From "))
1016 ;;; (goto-char (point-max))
1019 (insert "\001\001\001\001\n"))
1020 (delete-file file
)))))
1021 (incf found
(mail-source-callback callback file
))
1022 (mail-source-delete-crash-box)))))
1025 (autoload 'imap-open
"imap")
1026 (autoload 'imap-authenticate
"imap")
1027 (autoload 'imap-mailbox-select
"imap")
1028 (autoload 'imap-mailbox-unselect
"imap")
1029 (autoload 'imap-mailbox-close
"imap")
1030 (autoload 'imap-search
"imap")
1031 (autoload 'imap-fetch
"imap")
1032 (autoload 'imap-close
"imap")
1033 (autoload 'imap-error-text
"imap")
1034 (autoload 'imap-message-flags-add
"imap")
1035 (autoload 'imap-list-to-message-set
"imap")
1036 (autoload 'imap-range-to-message-set
"imap")
1037 (autoload 'nnheader-ms-strip-cr
"nnheader")
1039 (autoload 'gnus-compress-sequence
"gnus-range")
1041 (defvar mail-source-imap-file-coding-system
'binary
1042 "Coding system for the crashbox made by `mail-source-fetch-imap'.")
1044 ;; Autoloads will bring in imap before this is called.
1045 (declare-function imap-capability
"imap" (&optional identifier buffer
))
1047 (defun mail-source-fetch-imap (source callback
)
1048 "Fetcher for imap sources."
1049 (mail-source-bind (imap source
)
1050 (mail-source-run-script
1051 prescript
(format-spec-make ?p password ?t mail-source-crash-box
1052 ?s server ?P port ?u user
)
1054 (let ((from (format "%s:%s:%s" server user port
))
1056 (buf (generate-new-buffer " *imap source*"))
1057 (mail-source-string (format "imap:%s:%s" server mailbox
))
1058 (imap-shell-program (or (list program
) imap-shell-program
))
1060 (if (and (imap-open server port stream authentication buf
)
1062 user
(or (cdr (assoc from mail-source-password-cache
))
1064 (imap-mailbox-select mailbox nil buf
))
1065 (let ((coding-system-for-write mail-source-imap-file-coding-system
)
1067 (with-temp-file mail-source-crash-box
1068 ;; Avoid converting 8-bit chars from inserted strings to
1070 (mm-disable-multibyte)
1071 ;; remember password
1072 (with-current-buffer buf
1073 (when (and imap-password
1074 (not (assoc from mail-source-password-cache
)))
1075 (push (cons from imap-password
) mail-source-password-cache
)))
1076 ;; if predicate is nil, use all uids
1077 (dolist (uid (imap-search (or predicate
"1:*") buf
))
1079 (if (imap-capability 'IMAP4rev1 buf
)
1080 (caddar (imap-fetch uid
"BODY.PEEK[]"
1081 'BODYDETAIL nil buf
))
1082 (imap-fetch uid
"RFC822.PEEK" 'RFC822 nil buf
)))
1084 (insert "From imap " (current-time-string) "\n")
1086 (insert str
"\n\n"))
1087 (while (let ((case-fold-search nil
))
1088 (re-search-forward "^From " nil t
))
1089 (replace-match ">From "))
1090 (goto-char (point-max))))
1091 (nnheader-ms-strip-cr))
1092 (incf found
(mail-source-callback callback server
))
1093 (mail-source-delete-crash-box)
1094 (when (and remove fetchflag
)
1095 (setq remove
(nreverse remove
))
1096 (imap-message-flags-add
1097 (imap-range-to-message-set (gnus-compress-sequence remove
))
1100 (imap-mailbox-unselect buf
)
1101 (imap-mailbox-close nil buf
))
1104 ;; We nix out the password in case the error
1105 ;; was because of a wrong password being given.
1106 (setq mail-source-password-cache
1107 (delq (assoc from mail-source-password-cache
)
1108 mail-source-password-cache
))
1109 (error "IMAP error: %s" (imap-error-text buf
)))
1111 (mail-source-run-script
1113 (format-spec-make ?p password ?t mail-source-crash-box
1114 ?s server ?P port ?u user
))
1117 (autoload 'webmail-fetch
"webmail")
1119 (defun mail-source-fetch-webmail (source callback
)
1120 "Fetch for webmail source."
1121 (mail-source-bind (webmail source
)
1122 (let ((mail-source-string (format "webmail:%s:%s" subtype user
))
1123 (webmail-newmail-only dontexpunge
)
1124 (webmail-move-to-trash-can (not dontexpunge
)))
1125 (when (eq authentication
'password
)
1128 (cdr (assoc (format "webmail:%s:%s" subtype user
)
1129 mail-source-password-cache
))
1131 (format "Password for %s at %s: " user subtype
))))
1133 (not (assoc (format "webmail:%s:%s" subtype user
)
1134 mail-source-password-cache
)))
1135 (push (cons (format "webmail:%s:%s" subtype user
) password
)
1136 mail-source-password-cache
)))
1137 (webmail-fetch mail-source-crash-box subtype user password
)
1138 (mail-source-callback callback
(symbol-name subtype
))
1139 (mail-source-delete-crash-box))))
1141 (provide 'mail-source
)
1143 ;; arch-tag: 72948025-1d17-4d6c-bb12-ef1aa2c490fd
1144 ;;; mail-source.el ends here