1 ;;; mail-source.el --- functions for fetching mail
3 ;; Copyright (C) 1999-2012 Free Software Foundation, Inc.
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
6 ;; Keywords: news, mail
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
27 ;; For Emacs <22.2 and XEmacs.
29 (unless (fboundp 'declare-function
) (defmacro declare-function
(&rest r
))))
31 (require 'format-spec
)
35 (autoload 'auth-source-search
"auth-source")
36 (autoload 'pop3-movemail
"pop3")
37 (autoload 'pop3-get-message-count
"pop3")
38 (autoload 'nnheader-cancel-timer
"nnheader")
40 (require 'message
) ;; for `message-directory'
42 (defvar display-time-mail-function
)
44 (defgroup mail-source nil
45 "The mail-fetching library."
49 ;; Define these at compile time to avoid dragging in imap always.
50 (defconst mail-source-imap-authenticators
53 (list 'const
(car a
)))
54 imap-authenticator-alist
)))
55 (defconst mail-source-imap-streams
58 (list 'const
(car a
)))
61 (defcustom mail-sources
'((file))
62 "Where the mail backends will look for incoming mail.
63 This variable is a list of mail source specifiers.
64 See Info node `(gnus)Mail Source Specifiers'."
66 :version
"23.1" ;; No Gnus
67 :link
'(custom-manual "(gnus)Mail Source Specifiers")
69 (const :tag
"None" nil
)
71 (choice :format
"%[Value Menu%] %v"
73 (cons :tag
"Group parameter `mail-source'"
74 (const :format
"" group
))
75 (cons :tag
"Spool file"
76 (const :format
"" file
)
77 (checklist :tag
"Options" :greedy t
79 (const :format
"" :value
:path
)
81 (cons :tag
"Several files in a directory"
82 (const :format
"" directory
)
83 (checklist :tag
"Options" :greedy t
85 (const :format
"" :value
:path
)
86 (directory :tag
"Path"))
88 (const :format
"" :value
:suffix
)
89 (string :tag
"Suffix"))
91 (const :format
"" :value
:predicate
)
92 (function :tag
"Predicate"))
94 (const :format
"" :value
:prescript
)
95 (choice :tag
"Prescript"
98 (function :format
"%v")))
100 (const :format
"" :value
:postscript
)
101 (choice :tag
"Postscript"
103 (string :format
"%v")
104 (function :format
"%v")))
106 (const :format
"" :value
:plugged
)
107 (boolean :tag
"Plugged"))))
108 (cons :tag
"POP3 server"
109 (const :format
"" pop
)
110 (checklist :tag
"Options" :greedy t
112 (const :format
"" :value
:server
)
113 (string :tag
"Server"))
115 (const :format
"" :value
:port
)
118 (integer :format
"%v")
119 (string :format
"%v")))
121 (const :format
"" :value
:user
)
122 (string :tag
"User"))
124 (const :format
"" :value
:password
)
125 (string :tag
"Password"))
127 (const :format
"" :value
:program
)
128 (string :tag
"Program"))
130 (const :format
"" :value
:prescript
)
131 (choice :tag
"Prescript"
133 (string :format
"%v")
134 (function :format
"%v")
135 (const :tag
"None" nil
)))
137 (const :format
"" :value
:postscript
)
138 (choice :tag
"Postscript"
140 (string :format
"%v")
141 (function :format
"%v")
142 (const :tag
"None" nil
)))
144 (const :format
"" :value
:function
)
145 (function :tag
"Function"))
148 :value
:authentication
)
149 (choice :tag
"Authentication"
154 (const :format
"" :value
:plugged
)
155 (boolean :tag
"Plugged"))
157 (const :format
"" :value
:stream
)
158 (choice :tag
"Stream"
160 (const :tag
"Clear" nil
)
162 (const :tag
"SSL/TLS" ssl
)))))
163 (cons :tag
"Maildir (qmail, postfix...)"
164 (const :format
"" maildir
)
165 (checklist :tag
"Options" :greedy t
167 (const :format
"" :value
:path
)
168 (directory :tag
"Path"))
170 (const :format
"" :value
:plugged
)
171 (boolean :tag
"Plugged"))))
172 (cons :tag
"IMAP server"
173 (const :format
"" imap
)
174 (checklist :tag
"Options" :greedy t
176 (const :format
"" :value
:server
)
177 (string :tag
"Server"))
179 (const :format
"" :value
:port
)
184 (const :format
"" :value
:user
)
185 (string :tag
"User"))
187 (const :format
"" :value
:password
)
188 (string :tag
"Password"))
190 (const :format
"" :value
:stream
)
191 (choice :tag
"Stream"
193 ,@mail-source-imap-streams
))
195 (const :format
"" :value
:program
)
196 (string :tag
"Program"))
199 :value
:authenticator
)
200 (choice :tag
"Authenticator"
202 ,@mail-source-imap-authenticators
))
204 (const :format
"" :value
:mailbox
)
205 (string :tag
"Mailbox"
208 (const :format
"" :value
:predicate
)
209 (string :tag
"Predicate"
210 :value
"UNSEEN UNDELETED"))
212 (const :format
"" :value
:fetchflag
)
213 (string :tag
"Fetchflag"
218 (boolean :tag
"Dontexpunge"))
220 (const :format
"" :value
:plugged
)
221 (boolean :tag
"Plugged"))))))))
223 (defcustom mail-source-ignore-errors nil
224 "*Ignore errors when querying mail sources.
225 If nil, the user will be prompted when an error occurs. If non-nil,
226 the error will be ignored."
231 (defcustom mail-source-primary-source nil
232 "*Primary source for incoming mail.
233 If non-nil, this maildrop will be checked periodically for new mail."
237 (defcustom mail-source-flash t
238 "*If non-nil, flash periodically when mail is available."
242 (defcustom mail-source-crash-box
"~/.emacs-mail-crash-box"
243 "File where mail will be stored while processing it."
247 (defcustom mail-source-directory message-directory
248 "Directory where incoming mail source files (if any) will be stored."
252 (defcustom mail-source-default-file-modes
384
253 "Set the mode bits of all new mail files to this integer."
257 (defcustom mail-source-delete-incoming
258 10 ;; development versions
259 ;; 2 ;; released versions
260 "If non-nil, delete incoming files after handling.
261 If t, delete immediately, if nil, never delete. If a positive number, delete
262 files older than number of days.
264 Removing of old files happens in `mail-source-callback', i.e. no
265 old incoming files will be deleted unless you receive new mail.
266 You may also set this variable to nil and call
267 `mail-source-delete-old-incoming' interactively."
269 :version
"22.2" ;; No Gnus / Gnus 5.10.10 (default changed)
270 :type
'(choice (const :tag
"immediately" t
)
271 (const :tag
"never" nil
)
272 (integer :tag
"days")))
274 (defcustom mail-source-delete-old-incoming-confirm nil
275 "If non-nil, ask for confirmation before deleting old incoming files.
276 This variable only applies when `mail-source-delete-incoming' is a positive
278 :version
"22.2" ;; No Gnus / Gnus 5.10.10 (default changed)
282 (defcustom mail-source-incoming-file-prefix
"Incoming"
283 "Prefix for file name for storing incoming mail"
287 (defcustom mail-source-report-new-mail-interval
5
288 "Interval in minutes between checks for new mail."
292 (defcustom mail-source-idle-time-delay
5
293 "Number of idle seconds to wait before checking for new mail."
297 (defcustom mail-source-movemail-program nil
298 "If non-nil, name of program for fetching new mail."
301 :type
'(choice (const nil
) string
))
303 ;;; Internal variables.
305 (defvar mail-source-string
""
306 "A dynamically bound string that says what the current mail source is.")
308 (defvar mail-source-new-mail-available nil
309 "Flag indicating when new mail is available.")
312 (defvar mail-source-common-keyword-map
314 "Mapping from keywords to default values.
315 Common keywords should be listed here.")
317 (defvar mail-source-keyword-map
322 (:path
(or (getenv "MAIL")
323 (expand-file-name (user-login-name) rmail-spool-directory
))))
330 (:predicate identity
))
335 ;; note server and port need to come before user and password
336 (:server
(getenv "MAILHOST"))
338 (:user
(or (user-login-name) (getenv "LOGNAME") (getenv "USER")))
342 (:authentication password
)
345 (:path
(or (getenv "MAILDIR") "~/Maildir/"))
346 (:subdirs
("cur" "new"))
349 ;; note server and port need to come before user and password
350 (:server
(getenv "MAILHOST"))
355 (:user
(or (user-login-name) (getenv "LOGNAME") (getenv "USER")))
358 (:predicate
"UNSEEN UNDELETED")
359 (:fetchflag
"\\Deleted")
364 "Mapping from keywords to default values.
365 All keywords that can be used must be listed here."))
367 (defvar mail-source-fetcher-alist
368 '((file mail-source-fetch-file
)
369 (directory mail-source-fetch-directory
)
370 (pop mail-source-fetch-pop
)
371 (maildir mail-source-fetch-maildir
)
372 (imap mail-source-fetch-imap
))
373 "A mapping from source type to fetcher function.")
375 (defvar mail-source-password-cache nil
)
377 (defvar mail-source-plugged t
)
382 (defun mail-source-strip-keyword (keyword)
383 "Strip the leading colon off the KEYWORD."
384 (intern (substring (symbol-name keyword
) 1))))
386 ;; generate a list of variable names paired with nil values
387 ;; suitable for usage in a `let' form
389 (defun mail-source-bind-1 (type)
390 (let* ((defaults (cdr (assq type mail-source-keyword-map
)))
392 (while (setq default
(pop defaults
))
393 (push (list (mail-source-strip-keyword (car default
))
398 (defmacro mail-source-bind
(type-source &rest body
)
399 "Return a `let' form that binds all variables in source TYPE.
400 TYPE-SOURCE is a list where the first element is the TYPE, and
401 the second variable is the SOURCE.
402 At run time, the mail source specifier SOURCE will be inspected,
403 and the variables will be set according to it. Variables not
404 specified will be given default values.
406 The user and password will be loaded from the auth-source values
407 if those are available. They override the original user and
408 password in a second `let' form.
410 After this is done, BODY will be executed in the scope
411 of the second `let' form.
413 The variables bound and their default values are described by
414 the `mail-source-keyword-map' variable."
415 `(let* ,(mail-source-bind-1 (car type-source
))
416 (mail-source-set-1 ,(cadr type-source
))
419 (put 'mail-source-bind
'lisp-indent-function
1)
420 (put 'mail-source-bind
'edebug-form-spec
'(sexp body
))
422 (defun mail-source-set-1 (source)
423 (let* ((type (pop source
))
424 (defaults (cdr (assq type mail-source-keyword-map
)))
426 found default value keyword auth-info user-auth pass-auth
)
428 ;; append to the search the useful info from the source and the defaults:
429 ;; user, host, and port
431 ;; the msname is the mail-source parameter
432 (dolist (msname '(:server
:user
:port
))
433 ;; the asname is the auth-source parameter
434 (let* ((asname (case msname
435 (:server
:host
) ; auth-source uses :host
437 ;; this is the mail-source default
438 (msdef1 (or (plist-get source msname
)
439 (nth 1 (assoc msname defaults
))))
441 (msdef (mail-source-value msdef1
)))
442 (setq search
(append (list asname
445 ;; if the port is unknown yet, get it from the mail-source type
446 (unless (plist-get search
:port
)
447 (setq search
(append (list :port
(symbol-name type
)))))
449 (while (setq default
(pop defaults
))
450 ;; for each default :SYMBOL, set SYMBOL to the plist value for :SYMBOL
451 ;; using `mail-source-value' to evaluate the plist value
452 (set (mail-source-strip-keyword (setq keyword
(car default
)))
453 ;; note the following reasons for this structure:
454 ;; 1) the auth-sources user and password override everything
455 ;; 2) it avoids macros, so it's cleaner
456 ;; 3) it falls through to the mail-sources and then default values
460 (setq user-auth
(plist-get
461 ;; cache the search result in `found'
463 (setq found
(nth 0 (apply 'auth-source-search
468 (eq keyword
:password
)
469 (setq pass-auth
(plist-get
470 ;; cache the search result in `found'
472 (setq found
(nth 0 (apply 'auth-source-search
475 ;; maybe set the password to the return of the :secret function
476 (if (functionp pass-auth
)
477 (setq pass-auth
(funcall pass-auth
))
479 (t (if (setq value
(plist-get source keyword
))
480 (mail-source-value value
)
481 (mail-source-value (cadr default
)))))))))
484 (defun mail-source-bind-common-1 ()
485 (let* ((defaults mail-source-common-keyword-map
)
487 (while (setq default
(pop defaults
))
488 (push (list (mail-source-strip-keyword (car default
))
493 (defun mail-source-set-common-1 (source)
494 (let* ((type (pop source
))
495 (defaults mail-source-common-keyword-map
)
496 (defaults-1 (cdr (assq type mail-source-keyword-map
)))
497 default value keyword
)
498 (while (setq default
(pop defaults
))
499 (set (mail-source-strip-keyword (setq keyword
(car default
)))
500 (if (setq value
(plist-get source keyword
))
501 (mail-source-value value
)
502 (if (setq value
(assq keyword defaults-1
))
503 (mail-source-value (cadr value
))
504 (mail-source-value (cadr default
))))))))
506 (defmacro mail-source-bind-common
(source &rest body
)
507 "Return a `let' form that binds all common variables.
508 See `mail-source-bind'."
509 `(let ,(mail-source-bind-common-1)
510 (mail-source-set-common-1 source
)
513 (put 'mail-source-bind-common
'lisp-indent-function
1)
514 (put 'mail-source-bind-common
'edebug-form-spec
'(sexp body
))
516 (defun mail-source-value (value)
517 "Return the value of VALUE."
523 ((and (listp value
) (symbolp (car value
)) (fboundp (car value
)))
525 ;; Just return the value.
529 (autoload 'nnheader-message
"nnheader")
531 (defun mail-source-fetch (source callback
&optional method
)
532 "Fetch mail from SOURCE and call CALLBACK zero or more times.
533 CALLBACK will be called with the name of the file where (some of)
534 the mail from SOURCE is put.
535 Return the number of files that were found."
536 (mail-source-bind-common source
537 (if (or mail-source-plugged plugged
)
539 ;; Special-case the `file' handler since it's so common and
541 (when (or (not (eq (car source
) 'file
))
542 (mail-source-bind (file source
)
543 (file-exists-p path
)))
544 (nnheader-message 4 "%sReading incoming mail from %s..."
546 (format "%s: " method
)
549 (let ((function (cadr (assq (car source
) mail-source-fetcher-alist
)))
552 (error "%S is an invalid mail source specification" source
))
553 ;; If there's anything in the crash box, we do it first.
554 (when (file-exists-p mail-source-crash-box
)
555 (message "Processing mail from %s..." mail-source-crash-box
)
556 (setq found
(mail-source-callback
557 callback mail-source-crash-box
))
558 (mail-source-delete-crash-box))
560 (if (or debug-on-quit debug-on-error
)
561 (funcall function source callback
)
563 (funcall function source callback
)
565 (if (and (not mail-source-ignore-errors
)
568 (format "Mail source %s error (%s). Continue? "
569 (if (memq ':password source
)
570 (let ((s (copy-sequence source
)))
571 (setcar (cdr (memq ':password s
))
576 (error "Cannot get new mail"))
579 (declare-function gnus-message
"gnus-util" (level &rest args
))
581 (defun mail-source-delete-old-incoming (&optional age confirm
)
582 "Remove incoming files older than AGE days.
583 If CONFIRM is non-nil, ask for confirmation before removing a file."
586 (let* ((high2days (/ 65536.0 60 60 24));; convert high bits to days
587 (low2days (/ 1.0 65536.0)) ;; convert low bits to days
588 (diff (if (natnump age
) age
30));; fallback, if no valid AGE given
590 (setq files
(directory-files
591 mail-source-directory t
593 (regexp-quote mail-source-incoming-file-prefix
)))
594 currday
(* (car (current-time)) high2days
)
595 currday
(+ currday
(* low2days
(nth 1 (current-time)))))
597 (let* ((ffile (car files
))
598 (bfile (gnus-replace-in-string
599 ffile
"\\`.*/\\([^/]+\\)\\'" "\\1"))
600 (filetime (nth 5 (file-attributes ffile
)))
601 (fileday (* (car filetime
) high2days
))
602 (fileday (+ fileday
(* low2days
(nth 1 filetime
)))))
603 (setq files
(cdr files
))
604 (when (and (> (- currday fileday
) diff
)
608 Delete old (> %s day(s)) incoming mail file `%s'? " diff bfile
))
610 Deleting old (> %s day(s)) incoming mail file `%s'." diff bfile
)
612 (delete-file ffile
))))))
614 (defun mail-source-callback (callback info
)
615 "Call CALLBACK on the mail file. Pass INFO on to CALLBACK."
616 (if (or (not (file-exists-p mail-source-crash-box
))
617 (zerop (nth 7 (file-attributes mail-source-crash-box
))))
619 (when (file-exists-p mail-source-crash-box
)
620 (delete-file mail-source-crash-box
))
622 (funcall callback mail-source-crash-box info
)))
624 (autoload 'gnus-float-time
"gnus-util")
626 (defvar mail-source-incoming-last-checked-time nil
)
628 (defun mail-source-delete-crash-box ()
629 (when (file-exists-p mail-source-crash-box
)
630 ;; Delete or move the incoming mail out of the way.
631 (if (eq mail-source-delete-incoming t
)
632 (delete-file mail-source-crash-box
)
636 mail-source-incoming-file-prefix
637 mail-source-directory
))))
638 (unless (file-exists-p (file-name-directory incoming
))
639 (make-directory (file-name-directory incoming
) t
))
640 (rename-file mail-source-crash-box incoming t
)
641 ;; remove old incoming files?
642 (when (natnump mail-source-delete-incoming
)
643 ;; Don't check for old incoming files more than once per day to
644 ;; save a lot of file accesses.
645 (when (or (null mail-source-incoming-last-checked-time
)
647 (time-since mail-source-incoming-last-checked-time
))
649 (setq mail-source-incoming-last-checked-time
(current-time))
650 (mail-source-delete-old-incoming
651 mail-source-delete-incoming
652 mail-source-delete-old-incoming-confirm
)))))))
654 (defun mail-source-movemail (from to
)
655 "Move FROM to TO using movemail."
656 (if (not (file-writable-p to
))
657 (error "Can't write to crash box %s. Not moving mail" to
)
658 (let ((to (file-truename (expand-file-name to
)))
660 (setq to
(file-truename to
)
661 from
(file-truename from
))
662 ;; Set TO if have not already done so, and rename or copy
663 ;; the file FROM to TO if and as appropriate.
666 ;; The crash box exists already.
668 ((not (file-exists-p from
))
669 ;; There is no inbox.
671 ((zerop (nth 7 (file-attributes from
)))
675 ;; If getting from mail spool directory, use movemail to move
676 ;; rather than just renaming, so as to interlock with the
680 (setq errors
(generate-new-buffer " *mail source loss*"))
681 (let ((default-directory "/"))
687 (or mail-source-movemail-program
688 (expand-file-name "movemail" exec-directory
))
689 nil errors nil from to
)))))
690 (when (file-exists-p to
)
691 (set-file-modes to mail-source-default-file-modes
))
692 (if (and (or (not (buffer-modified-p errors
))
693 (zerop (buffer-size errors
)))
694 (and (numberp result
)
696 ;; No output => movemail won.
699 ;; There may be a warning about older revisions. We
701 (goto-char (point-min))
702 (if (search-forward "older revision" nil t
)
704 ;; Probably a real error.
705 (subst-char-in-region (point-min) (point-max) ?
\n ?\
)
706 (goto-char (point-max))
707 (skip-chars-backward " \t")
708 (delete-region (point) (point-max))
709 (goto-char (point-min))
710 (when (looking-at "movemail: ")
711 (delete-region (point-min) (match-end 0)))
712 ;; Result may be a signal description string.
714 (format "movemail: %s (%s return). Continue? "
715 (buffer-string) result
))
716 (error "%s" (buffer-string)))
719 (buffer-name errors
))
720 (kill-buffer errors
))
721 ;; Return whether we moved successfully or not.
724 (defun mail-source-fetch-with-program (program)
725 (eq 0 (call-process shell-file-name nil nil nil
726 shell-command-switch program
)))
728 (defun mail-source-run-script (script spec
&optional delay
)
730 (if (functionp script
)
732 (mail-source-call-script
733 (format-spec script spec
))))
737 (defun mail-source-call-script (script)
738 (let ((background nil
)
739 (stderr (get-buffer-create " *mail-source-stderr*"))
741 (when (string-match "& *$" script
)
742 (setq script
(substring script
0 (match-beginning 0))
745 (call-process shell-file-name nil background nil
746 shell-command-switch script
))
748 (not (zerop result
)))
750 (message "Mail source error: %s" (buffer-string)))
751 (kill-buffer stderr
)))
754 ;;; Different fetchers
757 (defun mail-source-fetch-file (source callback
)
758 "Fetcher for single-file sources."
759 (mail-source-bind (file source
)
760 (mail-source-run-script
761 prescript
(format-spec-make ?t mail-source-crash-box
)
763 (let ((mail-source-string (format "file:%s" path
)))
764 (if (mail-source-movemail path mail-source-crash-box
)
766 (mail-source-callback callback path
)
767 (mail-source-run-script
768 postscript
(format-spec-make ?t mail-source-crash-box
))
769 (mail-source-delete-crash-box))
772 (defun mail-source-fetch-directory (source callback
)
773 "Fetcher for directory sources."
774 (mail-source-bind (directory source
)
775 (mail-source-run-script
776 prescript
(format-spec-make ?t path
) prescript-delay
)
778 (mail-source-string (format "directory:%s" path
)))
779 (dolist (file (directory-files
780 path t
(concat (regexp-quote suffix
) "$")))
781 (when (and (file-regular-p file
)
782 (funcall predicate file
)
783 (mail-source-movemail file mail-source-crash-box
))
784 (incf found
(mail-source-callback callback file
))
785 (mail-source-run-script postscript
(format-spec-make ?t path
))
786 (mail-source-delete-crash-box)))
789 (defun mail-source-fetch-pop (source callback
)
790 "Fetcher for single-file sources."
791 (mail-source-bind (pop source
)
792 ;; fixme: deal with stream type in format specs
793 (mail-source-run-script
795 (format-spec-make ?p password ?t mail-source-crash-box
796 ?s server ?P port ?u user
)
798 (let ((from (format "%s:%s:%s" server user port
))
799 (mail-source-string (format "pop:%s@%s" user server
))
801 (when (eq authentication
'password
)
804 (cdr (assoc from mail-source-password-cache
))
806 (format "Password for %s at %s: " user server
)))))
808 (setenv "MAILHOST" server
))
812 (mail-source-fetch-with-program
815 (format-spec-make ?p password ?t mail-source-crash-box
816 ?s server ?P port ?u user
))))
818 (funcall function mail-source-crash-box
))
819 ;; The default is to use pop3.el.
822 (let ((pop3-password password
)
824 (pop3-mailhost server
)
826 (pop3-authentication-scheme
827 (if (eq authentication
'apop
) 'apop
'pass
))
828 (pop3-stream-type stream
))
829 (if (or debug-on-quit debug-on-error
)
830 (save-excursion (pop3-movemail mail-source-crash-box
))
832 (save-excursion (pop3-movemail mail-source-crash-box
))
834 ;; We nix out the password in case the error
835 ;; was because of a wrong password being given.
836 (setq mail-source-password-cache
837 (delq (assoc from mail-source-password-cache
)
838 mail-source-password-cache
))
839 (signal (car err
) (cdr err
)))))))))
842 (when (eq authentication
'password
)
843 (unless (assoc from mail-source-password-cache
)
844 (push (cons from password
) mail-source-password-cache
)))
846 (mail-source-callback callback server
)
847 ;; Update display-time's mail flag, if relevant.
848 (if (equal source mail-source-primary-source
)
849 (setq mail-source-new-mail-available nil
))
850 (mail-source-run-script
852 (format-spec-make ?p password ?t mail-source-crash-box
853 ?s server ?P port ?u user
))
854 (mail-source-delete-crash-box)))
855 ;; We nix out the password in case the error
856 ;; was because of a wrong password being given.
857 (setq mail-source-password-cache
858 (delq (assoc from mail-source-password-cache
)
859 mail-source-password-cache
))
862 (defun mail-source-check-pop (source)
863 "Check whether there is new mail."
864 (mail-source-bind (pop source
)
865 (let ((from (format "%s:%s:%s" server user port
))
866 (mail-source-string (format "pop:%s@%s" user server
))
868 (when (eq authentication
'password
)
871 (cdr (assoc from mail-source-password-cache
))
873 (format "Password for %s at %s: " user server
))))
874 (unless (assoc from mail-source-password-cache
)
875 (push (cons from password
) mail-source-password-cache
)))
877 (setenv "MAILHOST" server
))
880 ;; No easy way to check whether mail is waiting for these.
883 ;; The default is to use pop3.el.
886 (let ((pop3-password password
)
888 (pop3-mailhost server
)
890 (pop3-authentication-scheme
891 (if (eq authentication
'apop
) 'apop
'pass
)))
892 (if (or debug-on-quit debug-on-error
)
893 (save-excursion (pop3-get-message-count))
895 (save-excursion (pop3-get-message-count))
897 ;; We nix out the password in case the error
898 ;; was because of a wrong password being given.
899 (setq mail-source-password-cache
900 (delq (assoc from mail-source-password-cache
)
901 mail-source-password-cache
))
902 (signal (car err
) (cdr err
)))))))))
904 ;; Inform display-time that we have new mail.
905 (setq mail-source-new-mail-available
(> result
0))
906 ;; We nix out the password in case the error
907 ;; was because of a wrong password being given.
908 (setq mail-source-password-cache
909 (delq (assoc from mail-source-password-cache
)
910 mail-source-password-cache
)))
913 (defun mail-source-touch-pop ()
914 "Open and close a POP connection shortly.
915 POP server should be defined in `mail-source-primary-source' (which is
916 preferred) or `mail-sources'. You may use it for the POP-before-SMTP
917 authentication. To do that, you need to set the
918 `message-send-mail-function' variable as `message-smtpmail-send-it'
919 and put the following line in your ~/.gnus.el file:
921 \(add-hook 'message-send-mail-hook 'mail-source-touch-pop)
923 See the Gnus manual for details."
924 (let ((sources (if mail-source-primary-source
925 (list mail-source-primary-source
)
928 (if (eq 'pop
(car (car sources
)))
929 (mail-source-check-pop (car sources
)))
930 (setq sources
(cdr sources
)))))
932 (defun mail-source-new-mail-p ()
933 "Handler for `display-time' to indicate when new mail is available."
934 ;; Flash (ie. ring the visible bell) if mail is available.
935 (if (and mail-source-flash mail-source-new-mail-available
)
936 (let ((visible-bell t
))
938 ;; Only report flag setting; flag is updated on a different schedule.
939 mail-source-new-mail-available
)
942 (defvar mail-source-report-new-mail nil
)
943 (defvar mail-source-report-new-mail-timer nil
)
944 (defvar mail-source-report-new-mail-idle-timer nil
)
946 (defun mail-source-start-idle-timer ()
947 ;; Start our idle timer if necessary, so we delay the check until the
948 ;; user isn't typing.
949 (unless mail-source-report-new-mail-idle-timer
950 (setq mail-source-report-new-mail-idle-timer
952 mail-source-idle-time-delay
956 (mail-source-check-pop mail-source-primary-source
)
957 (setq mail-source-report-new-mail-idle-timer nil
)))))
958 ;; Since idle timers created when Emacs is already in the idle
959 ;; state don't get activated until Emacs _next_ becomes idle, we
960 ;; need to force our timer to be considered active now. We do
961 ;; this by being naughty and poking the timer internals directly
962 ;; (element 0 of the vector is nil if the timer is active).
963 (aset mail-source-report-new-mail-idle-timer
0 nil
)))
965 (defun mail-source-report-new-mail (arg)
966 "Toggle whether to report when new mail is available.
967 This only works when `display-time' is enabled."
969 (if (not mail-source-primary-source
)
970 (error "Need to set `mail-source-primary-source' to check for new mail"))
971 (let ((on (if (null arg
)
972 (not mail-source-report-new-mail
)
973 (> (prefix-numeric-value arg
) 0))))
974 (setq mail-source-report-new-mail on
)
975 (and mail-source-report-new-mail-timer
976 (nnheader-cancel-timer mail-source-report-new-mail-timer
))
977 (and mail-source-report-new-mail-idle-timer
978 (nnheader-cancel-timer mail-source-report-new-mail-idle-timer
))
979 (setq mail-source-report-new-mail-timer nil
)
980 (setq mail-source-report-new-mail-idle-timer nil
)
984 ;; display-time-mail-function is an Emacs feature.
985 (setq display-time-mail-function
#'mail-source-new-mail-p
)
986 ;; Set up the main timer.
987 (setq mail-source-report-new-mail-timer
989 (* 60 mail-source-report-new-mail-interval
)
990 (* 60 mail-source-report-new-mail-interval
)
991 #'mail-source-start-idle-timer
))
992 ;; When you get new mail, clear "Mail" from the mode line.
993 (add-hook 'nnmail-post-get-new-mail-hook
994 'display-time-event-handler
)
995 (message "Mail check enabled"))
996 (setq display-time-mail-function nil
)
997 (remove-hook 'nnmail-post-get-new-mail-hook
998 'display-time-event-handler
)
999 (message "Mail check disabled"))))
1001 (defun mail-source-fetch-maildir (source callback
)
1002 "Fetcher for maildir sources."
1003 (mail-source-bind (maildir source
)
1006 (unless (string-match "/$" path
)
1007 (setq path
(concat path
"/")))
1008 (dolist (subdir subdirs
)
1009 (when (file-directory-p (concat path subdir
))
1010 (setq mail-source-string
(format "maildir:%s%s" path subdir
))
1011 (dolist (file (directory-files (concat path subdir
) t
))
1012 (when (and (not (file-directory-p file
))
1014 ;; `function' should return nil if successful.
1015 (funcall function file mail-source-crash-box
)
1016 (let ((coding-system-for-write
1017 mm-text-coding-system
)
1018 (coding-system-for-read
1019 mm-text-coding-system
))
1020 (with-temp-file mail-source-crash-box
1021 (insert-file-contents file
)
1022 (goto-char (point-min))
1023 ;;; ;; Unix mail format
1024 ;;; (unless (looking-at "\n*From ")
1025 ;;; (insert "From maildir "
1026 ;;; (current-time-string) "\n"))
1027 ;;; (while (re-search-forward "^From " nil t)
1028 ;;; (replace-match ">From "))
1029 ;;; (goto-char (point-max))
1032 (insert "\001\001\001\001\n"))
1035 (incf found
(mail-source-callback callback file
))
1036 (mail-source-delete-crash-box)))))
1039 (autoload 'imap-open
"imap")
1040 (autoload 'imap-authenticate
"imap")
1041 (autoload 'imap-mailbox-select
"imap")
1042 (autoload 'imap-mailbox-unselect
"imap")
1043 (autoload 'imap-mailbox-close
"imap")
1044 (autoload 'imap-search
"imap")
1045 (autoload 'imap-fetch
"imap")
1046 (autoload 'imap-close
"imap")
1047 (autoload 'imap-error-text
"imap")
1048 (autoload 'imap-message-flags-add
"imap")
1049 (autoload 'imap-list-to-message-set
"imap")
1050 (autoload 'imap-range-to-message-set
"imap")
1051 (autoload 'nnheader-ms-strip-cr
"nnheader")
1053 (autoload 'gnus-compress-sequence
"gnus-range")
1055 (defvar mail-source-imap-file-coding-system
'binary
1056 "Coding system for the crashbox made by `mail-source-fetch-imap'.")
1058 ;; Autoloads will bring in imap before this is called.
1059 (declare-function imap-capability
"imap" (&optional identifier buffer
))
1061 (defun mail-source-fetch-imap (source callback
)
1062 "Fetcher for imap sources."
1063 (mail-source-bind (imap source
)
1064 (mail-source-run-script
1065 prescript
(format-spec-make ?p password ?t mail-source-crash-box
1066 ?s server ?P port ?u user
)
1068 (let ((from (format "%s:%s:%s" server user port
))
1070 (buf (generate-new-buffer " *imap source*"))
1071 (mail-source-string (format "imap:%s:%s" server mailbox
))
1072 (imap-shell-program (or (list program
) imap-shell-program
))
1074 (if (and (imap-open server port stream authentication buf
)
1076 user
(or (cdr (assoc from mail-source-password-cache
))
1078 (imap-mailbox-select mailbox nil buf
))
1079 (let ((coding-system-for-write mail-source-imap-file-coding-system
)
1081 (with-temp-file mail-source-crash-box
1082 ;; Avoid converting 8-bit chars from inserted strings to
1084 (mm-disable-multibyte)
1085 ;; remember password
1086 (with-current-buffer buf
1087 (when (and imap-password
1088 (not (assoc from mail-source-password-cache
)))
1089 (push (cons from imap-password
) mail-source-password-cache
)))
1090 ;; if predicate is nil, use all uids
1091 (dolist (uid (imap-search (or predicate
"1:*") buf
))
1093 (if (imap-capability 'IMAP4rev1 buf
)
1094 (caddar (imap-fetch uid
"BODY.PEEK[]"
1095 'BODYDETAIL nil buf
))
1096 (imap-fetch uid
"RFC822.PEEK" 'RFC822 nil buf
)))
1098 (insert "From imap " (current-time-string) "\n")
1100 (insert str
"\n\n"))
1101 (while (let ((case-fold-search nil
))
1102 (re-search-forward "^From " nil t
))
1103 (replace-match ">From "))
1104 (goto-char (point-max))))
1105 (nnheader-ms-strip-cr))
1106 (incf found
(mail-source-callback callback server
))
1107 (mail-source-delete-crash-box)
1108 (when (and remove fetchflag
)
1109 (setq remove
(nreverse remove
))
1110 (imap-message-flags-add
1111 (imap-range-to-message-set (gnus-compress-sequence remove
))
1114 (imap-mailbox-unselect buf
)
1115 (imap-mailbox-close nil buf
))
1118 ;; We nix out the password in case the error
1119 ;; was because of a wrong password being given.
1120 (setq mail-source-password-cache
1121 (delq (assoc from mail-source-password-cache
)
1122 mail-source-password-cache
))
1123 (error "IMAP error: %s" (imap-error-text buf
)))
1125 (mail-source-run-script
1127 (format-spec-make ?p password ?t mail-source-crash-box
1128 ?s server ?P port ?u user
))
1131 (provide 'mail-source
)
1133 ;;; mail-source.el ends here