1 ;;; nnmail.el --- mail support functions for the Gnus mail backends
2 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
3 ;; 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 2, or (at your option)
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; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
29 (eval-when-compile (require 'cl
))
31 (require 'gnus
) ; for macro gnus-kill-buffer, at least
36 (require 'mail-source
)
40 (autoload 'gnus-add-buffer
"gnus")
41 (autoload 'gnus-kill-buffer
"gnus"))
44 "Reading mail with Gnus."
47 (defgroup nnmail-retrieve nil
48 "Retrieving new mail."
51 (defgroup nnmail-prepare nil
52 "Preparing (or mangling) new mail after retrival."
55 (defgroup nnmail-duplicate nil
56 "Handling of duplicate mail messages."
59 (defgroup nnmail-split nil
60 "Organizing the incoming mail in folders."
63 (defgroup nnmail-files nil
68 (defgroup nnmail-expire nil
72 (defgroup nnmail-procmail nil
73 "Interfacing with procmail and other mail agents."
76 (defgroup nnmail-various nil
77 "Various mail options."
80 (defcustom nnmail-split-methods
'(("mail.misc" ""))
81 "*Incoming mail will be split according to this variable.
83 If you'd like, for instance, one mail group for mail from the
84 \"4ad-l\" mailing list, one group for junk mail and one for everything
85 else, you could do something like this:
87 (setq nnmail-split-methods
88 '((\"mail.4ad\" \"From:.*4ad\")
89 (\"mail.junk\" \"From:.*Lars\\\\|Subject:.*buy\")
90 (\"mail.misc\" \"\")))
92 As you can see, this variable is a list of lists, where the first
93 element in each \"rule\" is the name of the group (which, by the way,
94 does not have to be called anything beginning with \"mail\",
95 \"yonka.zow\" is a fine, fine name), and the second is a regexp that
96 nnmail will try to match on the header to find a fit.
98 The second element can also be a function. In that case, it will be
99 called narrowed to the headers with the first element of the rule as
100 the argument. It should return a non-nil value if it thinks that the
101 mail belongs in that group.
103 The last element should always have \"\" as the regexp.
105 This variable can also have a function as its value."
107 :type
'(choice (repeat :tag
"Alist" (group (string :tag
"Name")
108 (choice regexp function
)))
109 (function-item nnmail-split-fancy
)
110 (function :tag
"Other")))
112 ;; Suggested by Erik Selberg <speed@cs.washington.edu>.
113 (defcustom nnmail-crosspost t
114 "If non-nil, do crossposting if several split methods match the mail.
115 If nil, the first match found will be used."
119 (defcustom nnmail-split-fancy-with-parent-ignore-groups nil
120 "Regexp that matches group names to be ignored when applying `nnmail-split-fancy-with-parent'.
121 This can also be a list of regexps."
124 :type
'(choice (const :tag
"none" nil
)
126 (repeat :value
(".*") regexp
)))
128 (defcustom nnmail-cache-ignore-groups nil
129 "Regexp that matches group names to be ignored when inserting message ids into the cache (`nnmail-cache-insert').
130 This can also be a list of regexps."
133 :type
'(choice (const :tag
"none" nil
)
135 (repeat :value
(".*") regexp
)))
137 ;; Added by gord@enci.ucalgary.ca (Gordon Matzigkeit).
138 (defcustom nnmail-keep-last-article nil
139 "If non-nil, nnmail will never delete/move a group's last article.
140 It can be marked expirable, so it will be deleted when it is no longer last.
142 You may need to set this variable if other programs are putting
143 new mail into folder numbers that Gnus has marked as expired."
144 :group
'nnmail-procmail
145 :group
'nnmail-various
148 (defcustom nnmail-use-long-file-names nil
149 "If non-nil the mail backends will use long file and directory names.
150 If nil, groups like \"mail.misc\" will end up in directories like
155 (defcustom nnmail-default-file-modes
384
156 "Set the mode bits of all new mail files to this integer."
160 (defcustom nnmail-expiry-wait
7
161 "*Expirable articles that are older than this will be expired.
162 This variable can either be a number (which will be interpreted as a
163 number of days) -- this doesn't have to be an integer. This variable
164 can also be `immediate' and `never'."
165 :group
'nnmail-expire
166 :type
'(choice (const immediate
)
170 (defcustom nnmail-expiry-wait-function nil
171 "Variable that holds function to specify how old articles should be before they are expired.
172 The function will be called with the name of the group that the expiry
173 is to be performed in, and it should return an integer that says how
174 many days an article can be stored before it is considered \"old\".
175 It can also return the values `never' and `immediate'.
179 \(setq nnmail-expiry-wait-function
181 (cond ((string-match \"private\" newsgroup) 31)
182 ((string-match \"junk\" newsgroup) 1)
183 ((string-match \"important\" newsgroup) 'never)
185 :group
'nnmail-expire
186 :type
'(choice (const :tag
"nnmail-expiry-wait" nil
)
187 (function :format
"%v" nnmail-
)))
189 (defcustom nnmail-expiry-target
'delete
190 "*Variable that says where expired messages should end up.
191 The default value is `delete' (which says to delete the messages),
192 but it can also be a string or a function. If it is a string, expired
193 messages end up in that group. If it is a function, the function is
194 called in a buffer narrowed to the message in question. The function
195 receives one argument, the name of the group the message comes from.
196 The return value should be `delete' or a group name (a string)."
198 :group
'nnmail-expire
199 :type
'(choice (const delete
)
200 (function :format
"%v" nnmail-
)
203 (defcustom nnmail-fancy-expiry-targets nil
204 "Determine expiry target based on articles using fancy techniques.
206 This is a list of (\"HEADER\" \"REGEXP\" \"TARGET\") entries. If
207 `nnmail-expiry-target' is set to the function
208 `nnmail-fancy-expiry-target' and HEADER of the article matches REGEXP,
209 the message will be expired to a group determined by invoking
210 `format-time-string' with TARGET used as the format string and the
211 time extracted from the articles' Date header (if missing the current
214 In the special cases that HEADER is the symbol `to-from', the regexp
215 will try to match against both the From and the To header.
219 \(setq nnmail-fancy-expiry-targets
220 '((to-from \"boss\" \"nnfolder:Work\")
221 (\"Subject\" \"IMPORTANT\" \"nnfolder:IMPORTANT.%Y.%b\")
222 (\"from\" \".*\" \"nnfolder:Archive-%Y\")))
224 In this case, articles containing the string \"boss\" in the To or the
225 From header will be expired to the group \"nnfolder:Work\";
226 articles containing the sting \"IMPORTANT\" in the Subject header will
227 be expired to the group \"nnfolder:IMPORTANT.YYYY.MMM\"; and
228 everything else will be expired to \"nnfolder:Archive-YYYY\"."
230 :group
'nnmail-expire
231 :type
'(repeat (list (choice :tag
"Match against"
232 (string :tag
"Header")
235 (string :tag
"Target group format string"))))
237 (defcustom nnmail-cache-accepted-message-ids nil
238 "If non-nil, put Message-IDs of Gcc'd articles into the duplicate cache.
239 If non-nil, also update the cache when copy or move articles."
243 (defcustom nnmail-spool-file
'((file))
244 "*Where the mail backends will look for incoming mail.
245 This variable is a list of mail source specifiers.
246 This variable is obsolete; `mail-sources' should be used instead."
250 (defcustom nnmail-resplit-incoming nil
251 "*If non-nil, re-split incoming procmail sorted mail."
252 :group
'nnmail-procmail
255 (defcustom nnmail-scan-directory-mail-source-once nil
256 "*If non-nil, scan all incoming procmail sorted mails once.
257 It scans low-level sorted spools even when not required."
259 :group
'nnmail-procmail
262 (defcustom nnmail-delete-file-function
'delete-file
263 "Function called to delete files in some mail backends."
267 (defcustom nnmail-crosspost-link-function
268 (if (string-match "windows-nt\\|emx" (symbol-name system-type
))
271 "*Function called to create a copy of a file.
272 This is `add-name-to-file' by default, which means that crossposts
273 will use hard links. If your file system doesn't allow hard
274 links, you could set this variable to `copy-file' instead."
276 :type
'(radio (function-item add-name-to-file
)
277 (function-item copy-file
)
278 (function :tag
"Other")))
280 (defcustom nnmail-read-incoming-hook
281 (if (eq system-type
'windows-nt
)
282 '(nnheader-ms-strip-cr)
284 "*Hook that will be run after the incoming mail has been transferred.
285 The incoming mail is moved from the specified spool file (which normally is
286 something like \"/usr/spool/mail/$user\") to the user's home
287 directory. This hook is called after the incoming mail box has been
288 emptied, and can be used to call any mail box programs you have
289 running (\"xwatch\", etc.)
293 \(add-hook 'nnmail-read-incoming-hook
295 (call-process \"/local/bin/mailsend\" nil nil nil
296 \"read\" nnmail-spool-file)))
298 If you have xwatch running, this will alert it that mail has been
301 If you use `display-time', you could use something like this:
303 \(add-hook 'nnmail-read-incoming-hook
305 ;; Update the displayed time, since that will clear out
306 ;; the flag that says you have mail.
307 (when (eq (process-status \"display-time\") 'run)
308 (display-time-filter display-time-process \"\"))))"
309 :group
'nnmail-prepare
312 (defcustom nnmail-prepare-incoming-hook nil
313 "Hook called before treating incoming mail.
314 The hook is run in a buffer with all the new, incoming mail."
315 :group
'nnmail-prepare
318 (defcustom nnmail-prepare-incoming-header-hook nil
319 "Hook called narrowed to the headers of each message.
320 This can be used to remove excessive spaces (and stuff like
321 that) from the headers before splitting and saving the messages."
322 :group
'nnmail-prepare
325 (defcustom nnmail-prepare-incoming-message-hook nil
326 "Hook called narrowed to each message."
327 :group
'nnmail-prepare
330 (defcustom nnmail-list-identifiers nil
331 "Regexp that matches list identifiers to be removed.
332 This can also be a list of regexps."
333 :group
'nnmail-prepare
334 :type
'(choice (const :tag
"none" nil
)
336 (repeat :value
(".*") regexp
)))
338 (defcustom nnmail-pre-get-new-mail-hook nil
339 "Hook called just before starting to handle new incoming mail."
340 :group
'nnmail-retrieve
343 (defcustom nnmail-post-get-new-mail-hook nil
344 "Hook called just after finishing handling new incoming mail."
345 :group
'nnmail-retrieve
348 (defcustom nnmail-split-hook nil
349 "Hook called before deciding where to split an article.
350 The functions in this hook are free to modify the buffer
351 contents in any way they choose -- the buffer contents are
352 discarded after running the split process."
356 (defcustom nnmail-spool-hook nil
357 "*A hook called when a new article is spooled."
362 (defcustom nnmail-large-newsgroup
50
363 "*The number of articles which indicates a large newsgroup or nil.
364 If the number of articles is greater than the value, verbose
365 messages will be shown to indicate the current status."
366 :group
'nnmail-various
367 :type
'(choice (const :tag
"infinite" nil
)
368 (number :tag
"count")))
370 (define-widget 'nnmail-lazy
'default
371 "Base widget for recursive datastructures.
373 This is copy of the `lazy' widget in Emacs 22.1 provided for compatibility."
375 :convert-widget
'widget-value-convert-widget
376 :value-create
(lambda (widget)
377 (let ((value (widget-get widget
:value
))
378 (type (widget-get widget
:type
)))
379 (widget-put widget
:children
380 (list (widget-create-child-value
381 widget
(widget-convert type
) value
)))))
382 :value-delete
'widget-children-value-delete
383 :value-get
(lambda (widget)
384 (widget-value (car (widget-get widget
:children
))))
385 :value-inline
(lambda (widget)
386 (widget-apply (car (widget-get widget
:children
))
388 :default-get
(lambda (widget)
390 (widget-convert (widget-get widget
:type
))))
391 :match
(lambda (widget value
)
392 (widget-apply (widget-convert (widget-get widget
:type
))
394 :validate
(lambda (widget)
395 (widget-apply (car (widget-get widget
:children
)) :validate
)))
397 (define-widget 'nnmail-split-fancy
'nnmail-lazy
398 "Widget for customizing splits in the variable of the same name."
400 :type
'(menu-choice :value
(any ".*value.*" "misc")
402 (string :tag
"Destination")
403 (list :tag
"Use first match (|)" :value
(|
)
405 (editable-list :inline t nnmail-split-fancy
))
406 (list :tag
"Use all matches (&)" :value
(&)
408 (editable-list :inline t nnmail-split-fancy
))
409 (list :tag
"Function with fixed arguments (:)"
411 (const :format
"" :value
:)
413 (editable-list :inline t
(sexp :tag
"Arg"))
415 (list :tag
"Function with split arguments (!)"
419 (editable-list :inline t nnmail-split-fancy
))
420 (list :tag
"Field match"
425 (symbol :value mail
))
432 (const :tag
"Junk (delete mail)" junk
)))
434 (defcustom nnmail-split-fancy
"mail.misc"
435 "Incoming mail can be split according to this fancy variable.
436 To enable this, set `nnmail-split-methods' to `nnmail-split-fancy'.
438 The format of this variable is SPLIT, where SPLIT can be one of
441 GROUP: Mail will be stored in GROUP (a string).
443 \(FIELD VALUE [- RESTRICT [- RESTRICT [...]]] SPLIT): If the message
444 field FIELD (a regexp) contains VALUE (a regexp), store the messages
445 as specified by SPLIT. If RESTRICT (a regexp) matches some string
446 after FIELD and before the end of the matched VALUE, return nil,
447 otherwise process SPLIT. Multiple RESTRICTs add up, further
448 restricting the possibility of processing SPLIT.
450 \(| SPLIT...): Process each SPLIT expression until one of them matches.
451 A SPLIT expression is said to match if it will cause the mail
452 message to be stored in one or more groups.
454 \(& SPLIT...): Process each SPLIT expression.
456 \(: FUNCTION optional args): Call FUNCTION with the optional args, in
457 the buffer containing the message headers. The return value FUNCTION
458 should be a split, which is then recursively processed.
460 \(! FUNCTION SPLIT): Call FUNCTION with the result of SPLIT. The
461 return value FUNCTION should be a split, which is then recursively
464 junk: Mail will be deleted. Use with care! Do not submerge in water!
466 (setq nnmail-split-fancy
467 '(| (\"Subject\" \"MAKE MONEY FAST\" junk)
468 ...other.rules.omitted...))
470 FIELD must match a complete field name. VALUE must match a complete
471 word according to the `nnmail-split-fancy-syntax-table' syntax table.
472 You can use \".*\" in the regexps to match partial field names or words.
474 FIELD and VALUE can also be lisp symbols, in that case they are expanded
475 as specified in `nnmail-split-abbrev-alist'.
477 GROUP can contain \\& and \\N which will substitute from matching
478 \\(\\) patterns in the previous VALUE.
482 \(setq nnmail-split-methods 'nnmail-split-fancy
484 ;; Messages from the mailer daemon are not crossposted to any of
485 ;; the ordinary groups. Warnings are put in a separate group
487 '(| (\"from\" mail (| (\"subject\" \"warn.*\" \"mail.warning\")
489 ;; Non-error messages are crossposted to all relevant
490 ;; groups, but we don't crosspost between the group for the
491 ;; (ding) list and the group for other (ding) related mail.
492 (& (| (any \"ding@ifi\\\\.uio\\\\.no\" \"ding.list\")
493 (\"subject\" \"ding\" \"ding.misc\"))
494 ;; Other mailing lists...
495 (any \"procmail@informatik\\\\.rwth-aachen\\\\.de\" \"procmail.list\")
496 (any \"SmartList@informatik\\\\.rwth-aachen\\\\.de\" \"SmartList.list\")
497 ;; Both lists below have the same suffix, so prevent
498 ;; cross-posting to mkpkg.list of messages posted only to
499 ;; the bugs- list, but allow cross-posting when the
500 ;; message was really cross-posted.
501 (any \"bugs-mypackage@somewhere\" \"mypkg.bugs\")
502 (any \"mypackage@somewhere\" - \"bugs-mypackage\" \"mypkg.list\")
505 (any \"larsi@ifi\\\\.uio\\\\.no\" \"people.Lars Magne Ingebrigtsen\"))
506 ;; Unmatched mail goes to the catch all group.
509 :type
'nnmail-split-fancy
)
511 (defcustom nnmail-split-abbrev-alist
512 '((any .
"from\\|to\\|cc\\|sender\\|apparently-to\\|resent-from\\|resent-to\\|resent-cc")
513 (mail .
"mailer-daemon\\|postmaster\\|uucp")
514 (to .
"to\\|cc\\|apparently-to\\|resent-to\\|resent-cc")
515 (from .
"from\\|sender\\|resent-from")
516 (nato .
"to\\|cc\\|resent-to\\|resent-cc")
517 (naany .
"from\\|to\\|cc\\|sender\\|resent-from\\|resent-to\\|resent-cc"))
518 "*Alist of abbreviations allowed in `nnmail-split-fancy'."
520 :type
'(repeat (cons :format
"%v" symbol regexp
)))
522 (defcustom nnmail-message-id-cache-length
1000
523 "*The approximate number of Message-IDs nnmail will keep in its cache.
524 If this variable is nil, no checking on duplicate messages will be
526 :group
'nnmail-duplicate
527 :type
'(choice (const :tag
"disable" nil
)
528 (integer :format
"%v")))
530 (defcustom nnmail-message-id-cache-file
"~/.nnmail-cache"
531 "*The file name of the nnmail Message-ID cache."
532 :group
'nnmail-duplicate
536 (defcustom nnmail-treat-duplicates
'warn
537 "*If non-nil, nnmail keep a cache of Message-IDs to discover mail duplicates.
538 Three values are valid: nil, which means that nnmail is not to keep a
539 Message-ID cache; `warn', which means that nnmail should insert extra
540 headers to warn the user about the duplication (this is the default);
541 and `delete', which means that nnmail will delete duplicated mails.
543 This variable can also be a function. It will be called from a buffer
544 narrowed to the article in question with the Message-ID as a
545 parameter. It should return nil, `warn' or `delete'."
546 :group
'nnmail-duplicate
547 :type
'(choice (const :tag
"off" nil
)
551 (defcustom nnmail-extra-headers
'(To Newsgroups
)
552 "*Extra headers to parse."
555 :type
'(repeat symbol
))
557 (defcustom nnmail-split-header-length-limit
2048
558 "Header lines longer than this limit are excluded from the split function."
563 (defcustom nnmail-mail-splitting-charset nil
564 "Default charset to be used when splitting incoming mail."
569 (defcustom nnmail-mail-splitting-decodes nil
570 "Whether the nnmail splitting functionality should MIME decode headers."
575 (defcustom nnmail-split-fancy-match-partial-words nil
576 "Whether to match partial words when fancy splitting.
577 Normally, regexes given in `nnmail-split-fancy' are implicitly surrounded
578 by \"\\=\\<...\\>\". If this variable is true, they are not implicitly\
585 (defcustom nnmail-split-lowercase-expanded t
586 "Whether to lowercase expanded entries (i.e. \\N) when splitting mails.
587 This avoids the creation of multiple groups when users send to an address
588 using different case (i.e. mailing-list@domain vs Mailing-List@Domain)."
593 ;;; Internal variables.
595 (defvar nnmail-article-buffer
" *nnmail incoming*"
596 "The buffer used for splitting incoming mails.")
598 (defvar nnmail-split-history nil
599 "List of group/article elements that say where the previous split put messages.")
601 (defvar nnmail-split-fancy-syntax-table
602 (let ((table (make-syntax-table)))
603 ;; support the %-hack
604 (modify-syntax-entry ?\%
"." table
)
606 "Syntax table used by `nnmail-split-fancy'.")
608 (defvar nnmail-prepare-save-mail-hook nil
609 "Hook called before saving mail.")
611 (defvar nnmail-split-tracing nil
)
612 (defvar nnmail-split-trace nil
)
616 (defun nnmail-request-post (&optional server
)
617 (mail-send-and-exit nil
))
619 (defvar nnmail-file-coding-system
'raw-text
620 "Coding system used in nnmail.")
622 (defvar nnmail-incoming-coding-system
623 mm-text-coding-system
624 "Coding system used in reading inbox")
626 (defvar nnmail-pathname-coding-system nil
627 "*Coding system for file name.")
629 (defun nnmail-find-file (file)
630 "Insert FILE in server buffer safely."
631 (set-buffer nntp-server-buffer
)
632 (delete-region (point-min) (point-max))
633 (let ((format-alist nil
)
634 (after-insert-file-functions nil
))
636 (let ((coding-system-for-read nnmail-file-coding-system
)
637 (auto-mode-alist (mm-auto-mode-alist))
638 (file-name-coding-system nnmail-pathname-coding-system
))
639 (insert-file-contents file
)
643 (defun nnmail-group-pathname (group dir
&optional file
)
644 "Make file name for GROUP."
646 (let ((dir (file-name-as-directory (expand-file-name dir
))))
647 (setq group
(nnheader-replace-duplicate-chars-in-string
648 (nnheader-replace-chars-in-string group ?
/ ?_
)
650 (setq group
(nnheader-translate-file-chars group
))
651 ;; If this directory exists, we use it directly.
652 (file-name-as-directory
653 (if (or nnmail-use-long-file-names
654 (file-directory-p (concat dir group
)))
655 (expand-file-name group dir
)
656 ;; If not, we translate dots into slashes.
658 (mm-encode-coding-string
659 (nnheader-replace-chars-in-string group ?. ?
/)
660 nnmail-pathname-coding-system
)
664 (defun nnmail-get-active ()
665 "Returns an assoc of group names and active ranges.
666 nn*-request-list should have been called before calling this function."
667 ;; Go through all groups from the active list.
669 (set-buffer nntp-server-buffer
)
670 (nnmail-parse-active)))
672 (defun nnmail-parse-active ()
673 "Parse the active file in the current buffer and return an alist."
674 (goto-char (point-min))
675 (unless (re-search-forward "[\\\"]" nil t
)
676 (goto-char (point-max))
677 (while (re-search-backward "[][';?()#]" nil t
)
679 (goto-char (point-min))
680 (let ((buffer (current-buffer))
681 group-assoc group max min
)
685 (narrow-to-region (point) (gnus-point-at-eol))
686 (setq group
(read buffer
))
687 (unless (stringp group
)
688 (setq group
(symbol-name group
)))
689 (if (and (numberp (setq max
(read buffer
)))
690 (numberp (setq min
(read buffer
))))
691 (push (list group
(cons min max
))
698 (defvar nnmail-active-file-coding-system
'raw-text
699 "*Coding system for active file.")
701 (defun nnmail-save-active (group-assoc file-name
)
702 "Save GROUP-ASSOC in ACTIVE-FILE."
703 (let ((coding-system-for-write nnmail-active-file-coding-system
))
705 (with-temp-file file-name
706 (nnmail-generate-active group-assoc
)))))
708 (defun nnmail-generate-active (alist)
709 "Generate an active file from group-alist ALIST."
712 (while (setq group
(pop alist
))
713 (insert (format "%S %d %d y\n" (intern (car group
)) (cdadr group
)
715 (goto-char (point-max))
716 (while (search-backward "\\." nil t
)
719 (defun nnmail-get-split-group (file source
)
720 "Find out whether this FILE is to be split into GROUP only.
721 If SOURCE is a directory spec, try to return the group name component."
722 (if (eq (car source
) 'directory
)
723 (let ((file (file-name-nondirectory file
)))
724 (mail-source-bind (directory source
)
725 (if (string-match (concat (regexp-quote suffix
) "$") file
)
726 (substring file
0 (match-beginning 0))
730 (defun nnmail-process-babyl-mail-format (func artnum-func
)
731 (let ((case-fold-search t
)
733 start message-id content-length do-search end
)
735 (goto-char (point-min))
737 "\f\n0, *unseen,+\n\\(\\*\\*\\* EOOH \\*\\*\\*\n\\)?" nil t
)
738 (goto-char (match-end 0))
739 (delete-region (match-beginning 0) (match-end 0))
743 ;; Skip all the headers in case there are more "From "s...
744 (or (search-forward "\n\n" nil t
)
745 (search-forward-regexp "^[^:]*\\( .*\\|\\)$" nil t
)
746 (search-forward "\x1f\f"))
748 ;; Unquote the ">From " line, if any.
749 (goto-char (point-min))
750 (when (looking-at ">From ")
751 (replace-match "X-From-Line: ") )
752 (run-hooks 'nnmail-prepare-incoming-header-hook
)
753 (goto-char (point-max))
754 ;; Find the Message-ID header.
756 (if (re-search-backward
757 "^Message-ID[ \t]*:[ \n\t]*\\(<[^>]*>\\)" nil t
)
758 (setq message-id
(buffer-substring (match-beginning 1)
760 ;; There is no Message-ID here, so we create one.
762 (when (re-search-backward "^Message-ID[ \t]*:" nil t
)
764 (insert "Original-")))
766 (insert "Message-ID: " (setq message-id
(nnmail-message-id))
768 ;; Look for a Content-Length header.
769 (if (not (save-excursion
770 (and (re-search-backward
771 "^Content-Length:[ \t]*\\([0-9]+\\)" start t
)
772 (setq content-length
(string-to-int
776 ;; We destroy the header, since none of
777 ;; the backends ever use it, and we do not
778 ;; want to confuse other mailers by having
779 ;; a (possibly) faulty header.
780 (progn (insert "X-") t
))))
783 (if (or (= (+ (point) content-length
) (point-max))
785 (goto-char (+ (point) content-length
))
786 (looking-at "\x1f")))
788 (goto-char (+ (point) content-length
))
789 (setq do-search nil
))
792 ;; Go to the beginning of the next article - or to the end
795 (if (re-search-forward "^\x1f" nil t
)
796 (goto-char (match-beginning 0))
797 (goto-char (1- (point-max)))))
798 (delete-char 1) ; delete ^_
801 (narrow-to-region start
(point))
802 (goto-char (point-min))
803 (nnmail-check-duplication message-id func artnum-func
)
805 (setq end
(point-max))))
809 (defsubst nnmail-search-unix-mail-delim
()
810 "Put point at the beginning of the next Unix mbox message."
811 ;; Algorithm used to find the next article in the
812 ;; brain-dead Unix mbox format:
814 ;; 1) Search for "^From ".
815 ;; 2) If we find it, then see whether the previous
816 ;; line is blank and the next line looks like a header.
817 ;; Then it's possible that this is a mail delim, and we use it.
818 (let ((case-fold-search nil
)
821 (if (not (re-search-forward "^From " nil t
))
825 (when (and (or (bobp)
828 (eq (char-after) ?
\n)))
831 (while (looking-at ">From \\|From ")
833 (looking-at "[^ \n\t:]+[ \n\t]*:")))
834 (setq found
'yes
)))))
838 (defun nnmail-search-unix-mail-delim-backward ()
839 "Put point at the beginning of the current Unix mbox message."
840 ;; Algorithm used to find the next article in the
841 ;; brain-dead Unix mbox format:
843 ;; 1) Search for "^From ".
844 ;; 2) If we find it, then see whether the previous
845 ;; line is blank and the next line looks like a header.
846 ;; Then it's possible that this is a mail delim, and we use it.
847 (let ((case-fold-search nil
)
850 (if (not (re-search-backward "^From " nil t
))
854 (when (and (or (bobp)
857 (eq (char-after) ?
\n)))
860 (while (looking-at ">From \\|From ")
862 (looking-at "[^ \n\t:]+[ \n\t]*:")))
863 (setq found
'yes
)))))
867 (defun nnmail-process-unix-mail-format (func artnum-func
)
868 (let ((case-fold-search t
)
870 start message-id content-length end skip head-end
)
871 (goto-char (point-min))
872 (if (not (and (re-search-forward "^From " nil t
)
873 (goto-char (match-beginning 0))))
874 ;; Possibly wrong format?
875 (error "Error, unknown mail format! (Possibly corrupted %s `%s'.)"
876 (if (buffer-file-name) "file" "buffer")
877 (or (buffer-file-name) (buffer-name)))
878 ;; Carry on until the bitter end.
882 ;; Find the end of the head.
885 (if (search-forward "\n\n" nil t
)
887 ;; This will never happen, but just to be on the safe side --
888 ;; if there is no head-body delimiter, we search a bit manually.
889 (while (and (looking-at "From \\|[^ \t]+:")
893 ;; Find the Message-ID header.
894 (goto-char (point-min))
895 (if (re-search-forward "^Message-ID[ \t]*:[ \n\t]*\\(<[^>]+>\\)" nil t
)
896 (setq message-id
(match-string 1))
898 (when (re-search-forward "^Message-ID[ \t]*:" nil t
)
900 (insert "Original-")))
901 ;; There is no Message-ID here, so we create one.
903 (insert "Message-ID: " (setq message-id
(nnmail-message-id)) "\n"))
904 ;; Look for a Content-Length header.
905 (goto-char (point-min))
906 (if (not (re-search-forward
907 "^Content-Length:[ \t]*\\([0-9]+\\)" nil t
))
908 (setq content-length nil
)
909 (setq content-length
(string-to-int (match-string 1)))
910 ;; We destroy the header, since none of the backends ever
911 ;; use it, and we do not want to confuse other mailers by
912 ;; having a (possibly) faulty header.
915 (run-hooks 'nnmail-prepare-incoming-header-hook
)
916 ;; Find the end of this article.
917 (goto-char (point-max))
919 (setq head-end
(point))
920 ;; We try the Content-Length value. The idea: skip over the header
921 ;; separator, then check what happens content-length bytes into the
922 ;; message body. This should be either the end of the buffer, the
923 ;; message separator or a blank line followed by the separator.
924 ;; The blank line should probably be deleted. If neither of the
925 ;; three is met, the content-length header is probably invalid.
928 (setq skip
(+ (point) content-length
))
930 (cond ((or (= skip
(point-max))
931 (= (1+ skip
) (point-max)))
932 (setq end
(point-max)))
933 ((looking-at "From ")
935 ((looking-at "[ \t]*\n\\(From \\)")
936 (setq end
(match-beginning 1)))
940 ;; No Content-Length, so we find the beginning of the next
941 ;; article or the end of the buffer.
943 (or (nnmail-search-unix-mail-delim)
944 (goto-char (point-max))))
945 ;; Allow the backend to save the article.
948 (narrow-to-region start
(point))
949 (goto-char (point-min))
951 (nnmail-check-duplication message-id func artnum-func
)
952 (setq end
(point-max))))
956 (defun nnmail-process-mmdf-mail-format (func artnum-func
)
957 (let ((delim "^\^A\^A\^A\^A$")
960 start message-id end
)
961 (goto-char (point-min))
962 (if (not (and (re-search-forward delim nil t
)
964 ;; Possibly wrong format?
965 (error "Error, unknown mail format! (Possibly corrupted.)")
966 ;; Carry on until the bitter end.
969 ;; Find the end of the head.
972 (if (search-forward "\n\n" nil t
)
974 ;; This will never happen, but just to be on the safe side --
975 ;; if there is no head-body delimiter, we search a bit manually.
976 (while (and (looking-at "From \\|[^ \t]+:")
980 ;; Find the Message-ID header.
981 (goto-char (point-min))
982 (if (re-search-forward "^Message-ID[ \t]*:[ \n\t]*\\(<[^>]+>\\)" nil t
)
983 (setq message-id
(match-string 1))
984 ;; There is no Message-ID here, so we create one.
986 (when (re-search-backward "^Message-ID[ \t]*:" nil t
)
988 (insert "Original-")))
990 (insert "Message-ID: " (setq message-id
(nnmail-message-id)) "\n"))
991 (run-hooks 'nnmail-prepare-incoming-header-hook
)
992 ;; Find the end of this article.
993 (goto-char (point-max))
995 (if (re-search-forward delim nil t
)
997 (goto-char (point-max)))
998 ;; Allow the backend to save the article.
1001 (narrow-to-region start
(point))
1002 (goto-char (point-min))
1004 (nnmail-check-duplication message-id func artnum-func
)
1005 (setq end
(point-max))))
1010 (defun nnmail-process-maildir-mail-format (func artnum-func
)
1011 ;; In a maildir, every file contains exactly one mail.
1012 (let ((case-fold-search t
)
1014 (goto-char (point-min))
1015 ;; Find the end of the head.
1018 (if (search-forward "\n\n" nil t
)
1020 ;; This will never happen, but just to be on the safe side --
1021 ;; if there is no head-body delimiter, we search a bit manually.
1022 (while (and (looking-at "From \\|[^ \t]+:")
1026 ;; Find the Message-ID header.
1027 (goto-char (point-min))
1028 (if (re-search-forward "^Message-ID:[ \t]*\\(<[^>]+>\\)" nil t
)
1029 (setq message-id
(match-string 1))
1030 ;; There is no Message-ID here, so we create one.
1032 (when (re-search-backward "^Message-ID[ \t]*:" nil t
)
1034 (insert "Original-")))
1036 (insert "Message-ID: " (setq message-id
(nnmail-message-id)) "\n"))
1037 (run-hooks 'nnmail-prepare-incoming-header-hook
)
1038 ;; Allow the backend to save the article.
1041 (goto-char (point-min))
1042 (nnmail-check-duplication message-id func artnum-func
))
1045 (defun nnmail-split-incoming (incoming func
&optional exit-func
1047 "Go through the entire INCOMING file and pick out each individual mail.
1048 FUNC will be called with the buffer narrowed to each mail."
1049 (let ( ;; If this is a group-specific split, we bind the split
1050 ;; methods to just this group.
1051 (nnmail-split-methods (if (and group
1052 (not nnmail-resplit-incoming
))
1053 (list (list group
""))
1054 nnmail-split-methods
)))
1056 ;; Insert the incoming file.
1057 (set-buffer (get-buffer-create nnmail-article-buffer
))
1059 (let ((coding-system-for-read nnmail-incoming-coding-system
))
1060 (mm-insert-file-contents incoming
))
1062 (if (zerop (buffer-size))
1064 (goto-char (point-min))
1065 (save-excursion (run-hooks 'nnmail-prepare-incoming-hook
))
1066 ;; Handle both babyl, MMDF and unix mail formats, since
1067 ;; movemail will use the former when fetching from a
1068 ;; mailbox, the latter when fetching from a file.
1069 (cond ((or (looking-at "\^L")
1070 (looking-at "BABYL OPTIONS:"))
1071 (nnmail-process-babyl-mail-format func artnum-func
))
1072 ((looking-at "\^A\^A\^A\^A")
1073 (nnmail-process-mmdf-mail-format func artnum-func
))
1074 ((looking-at "Return-Path:")
1075 (nnmail-process-maildir-mail-format func artnum-func
))
1077 (nnmail-process-unix-mail-format func artnum-func
))))
1079 (funcall exit-func
))
1080 (kill-buffer (current-buffer))))))
1082 (defun nnmail-article-group (func &optional trace
)
1083 "Look at the headers and return an alist of groups that match.
1084 FUNC will be called with the group name to determine the article number."
1085 (let ((methods (or nnmail-split-methods
'(("bogus" ""))))
1086 (obuf (current-buffer))
1087 group-art method grp
)
1088 (if (and (sequencep methods
)
1089 (= (length methods
) 1))
1090 ;; If there is only just one group to put everything in, we
1091 ;; just return a list with just this one method in.
1093 (list (cons (caar methods
) (funcall func
(caar methods
)))))
1094 ;; We do actual comparison.
1096 ;; Copy the article into the work buffer.
1097 (set-buffer nntp-server-buffer
)
1099 (insert-buffer-substring obuf
)
1100 ;; Narrow to headers.
1102 (goto-char (point-min))
1103 (if (search-forward "\n\n" nil t
)
1106 (goto-char (point-min))
1107 ;; Decode MIME headers and charsets.
1108 (when nnmail-mail-splitting-decodes
1109 (let ((mail-parse-charset nnmail-mail-splitting-charset
))
1110 (mail-decode-encoded-word-region (point-min) (point-max))))
1111 ;; Fold continuation lines.
1112 (goto-char (point-min))
1113 (while (re-search-forward "\\(\r?\n[ \t]+\\)+" nil t
)
1114 (replace-match " " t t
))
1115 ;; Nuke pathologically long headers. Since Gnus applies
1116 ;; pathologically complex regexps to the buffer, lines
1117 ;; that are looong will take longer than the Universe's
1118 ;; existence to process.
1119 (goto-char (point-min))
1121 (unless (< (move-to-column nnmail-split-header-length-limit
)
1122 nnmail-split-header-length-limit
)
1123 (delete-region (point) (gnus-point-at-eol)))
1126 (goto-char (point-min))
1127 (run-hooks 'nnmail-split-hook
)
1128 (when (setq nnmail-split-tracing trace
)
1129 (setq nnmail-split-trace nil
))
1130 (if (and (symbolp nnmail-split-methods
)
1131 (fboundp nnmail-split-methods
))
1134 ;; `nnmail-split-methods' is a function, so we
1135 ;; just call this function here and use the
1137 (or (funcall nnmail-split-methods
)
1141 5 "Error in `nnmail-split-methods'; using `bogus' mail group")
1144 (setq split
(gnus-remove-duplicates split
))
1145 ;; The article may be "cross-posted" to `junk'. What
1146 ;; to do? Just remove the `junk' spec. Don't really
1147 ;; see anything else to do...
1149 (while (setq elem
(car (memq 'junk split
)))
1150 (setq split
(delq elem split
))))
1154 (lambda (group) (cons group
(funcall func group
)))
1156 ;; Go through the split methods to find a match.
1158 (or nnmail-crosspost
1160 (goto-char (point-max))
1161 (setq method
(pop methods
)
1164 (not (equal "" (nth 1 method
))))
1167 (if (stringp (nth 1 method
))
1168 (let ((expand (string-match "\\\\[0-9&]" grp
))
1169 (pos (re-search-backward (cadr method
)
1172 (setq grp
(nnmail-expand-newtext grp
)))
1174 ;; Function to say whether this is a match.
1175 (funcall (nth 1 method
) grp
)))
1176 ;; Don't enter the article into the same
1178 (not (assoc grp group-art
)))
1179 (push (cons grp
(funcall func grp
))
1181 ;; This is the final group, which is used as a
1185 (list (cons (car method
)
1186 (funcall func
(car method
))))))))
1187 ;; Fall back on "bogus" if all else fails.
1189 (setq group-art
(list (cons "bogus" (funcall func
"bogus"))))))
1190 ;; Produce a trace if non-empty.
1191 (when (and trace nnmail-split-trace
)
1192 (let ((restore (current-buffer)))
1193 (nnheader-set-temp-buffer "*Split Trace*")
1195 (dolist (trace (nreverse nnmail-split-trace
))
1196 (prin1 trace
(current-buffer))
1198 (goto-char (point-min))
1199 (gnus-configure-windows 'split-trace
)
1200 (set-buffer restore
)))
1202 ;; See whether the split methods returned `junk'.
1203 (if (equal group-art
'(junk))
1205 ;; The article may be "cross-posted" to `junk'. What
1206 ;; to do? Just remove the `junk' spec. Don't really
1207 ;; see anything else to do...
1209 (while (setq elem
(car (memq 'junk group-art
)))
1210 (setq group-art
(delq elem group-art
)))
1211 (nreverse group-art
)))))))
1213 (defun nnmail-insert-lines ()
1214 "Insert how many lines there are in the body of the mail.
1215 Return the number of characters in the body."
1218 (goto-char (point-min))
1219 (unless (search-forward "\n\n" nil t
)
1220 (goto-char (point-max))
1222 (setq chars
(- (point-max) (point)))
1223 (setq lines
(count-lines (point) (point-max)))
1226 (when (re-search-backward "^Lines: " nil t
)
1227 (delete-region (point) (progn (forward-line 1) (point)))))
1229 (insert (format "Lines: %d\n" (max lines
0)))
1232 (defun nnmail-insert-xref (group-alist)
1233 "Insert an Xref line based on the (group . article) alist."
1235 (goto-char (point-min))
1236 (unless (search-forward "\n\n" nil t
)
1237 (goto-char (point-max))
1240 (when (re-search-backward "^Xref: " nil t
)
1241 (delete-region (match-beginning 0)
1242 (progn (forward-line 1) (point))))
1243 (insert (format "Xref: %s" (system-name)))
1245 (insert (format " %s:%d"
1246 (mm-encode-coding-string
1248 nnmail-pathname-coding-system
)
1249 (cdar group-alist
)))
1250 (setq group-alist
(cdr group-alist
)))
1253 ;;; Message washing functions
1255 (defun nnmail-remove-leading-whitespace ()
1256 "Remove excessive whitespace from all headers."
1257 (goto-char (point-min))
1258 (while (re-search-forward "^\\([^ :]+: \\) +" nil t
)
1259 (replace-match "\\1" t
)))
1261 (defun nnmail-remove-list-identifiers ()
1262 "Remove list identifiers from Subject headers."
1264 (if (consp nnmail-list-identifiers
)
1265 (mapconcat 'identity nnmail-list-identifiers
" *\\|")
1266 nnmail-list-identifiers
)))
1268 (goto-char (point-min))
1269 (while (re-search-forward
1270 (concat "^Subject: +\\(R[Ee]: +\\)*\\(" regexp
" *\\)")
1272 (delete-region (match-beginning 2) (match-end 0))
1273 (beginning-of-line))
1274 (when (re-search-forward "^Subject: +\\(\\(R[Ee]: +\\)+\\)R[Ee]: +"
1276 (delete-region (match-beginning 1) (match-end 1))
1277 (beginning-of-line)))))
1279 (defun nnmail-remove-tabs ()
1280 "Translate TAB characters into SPACE characters."
1281 (subst-char-in-region (point-min) (point-max) ?
\t ? t
))
1283 (defun nnmail-fix-eudora-headers ()
1284 "Eudora has a broken References line, but an OK In-Reply-To."
1285 (goto-char (point-min))
1286 (when (re-search-forward "^X-Mailer:.*Eudora" nil t
)
1287 (goto-char (point-min))
1288 (when (re-search-forward "^References:" nil t
)
1290 (insert "X-Gnus-Broken-Eudora-"))
1291 (goto-char (point-min))
1292 (when (re-search-forward "^\\(In-Reply-To:[^\n]+\\)\n[ \t]+" nil t
)
1293 (replace-match "\\1" t
))))
1295 (custom-add-option 'nnmail-prepare-incoming-header-hook
1296 'nnmail-fix-eudora-headers
)
1298 ;;; Utility functions
1300 (defun nnmail-do-request-post (accept-func &optional server
)
1301 "Utility function to directly post a message to an nnmail-derived group.
1302 Calls ACCEPT-FUNC (which should be `nnchoke-request-accept-article')
1303 to actually put the message in the right group."
1305 (dolist (mbx (message-unquote-tokens
1306 (message-tokenize-header
1307 (message-fetch-field "Newsgroups") ", ")) success
)
1308 (let ((to-newsgroup (gnus-group-prefixed-name mbx gnus-command-method
)))
1309 (or (gnus-active to-newsgroup
)
1310 (gnus-activate-group to-newsgroup
)
1311 (if (gnus-y-or-n-p (format "No such group: %s. Create it? "
1313 (or (and (gnus-request-create-group
1314 to-newsgroup gnus-command-method
)
1315 (gnus-activate-group to-newsgroup nil nil
1316 gnus-command-method
))
1317 (error "Couldn't create group %s" to-newsgroup
)))
1318 (error "No such group: %s" to-newsgroup
))
1319 (unless (funcall accept-func mbx
(nth 1 gnus-command-method
))
1320 (setq success nil
))))))
1322 (defun nnmail-split-fancy ()
1323 "Fancy splitting method.
1324 See the documentation for the variable `nnmail-split-fancy' for details."
1325 (let ((syntab (syntax-table)))
1328 (set-syntax-table nnmail-split-fancy-syntax-table
)
1329 (nnmail-split-it nnmail-split-fancy
))
1330 (set-syntax-table syntab
))))
1332 (defvar nnmail-split-cache nil
)
1333 ;; Alist of split expressions their equivalent regexps.
1335 (defun nnmail-split-it (split)
1336 ;; Return a list of groups matching SPLIT.
1343 ;; A group name. Do the \& and \N subs into the string.
1345 (when nnmail-split-tracing
1346 (push split nnmail-split-trace
))
1347 (list (nnmail-expand-newtext split
)))
1349 ;; Junk the message.
1351 (when nnmail-split-tracing
1352 (push "junk" nnmail-split-trace
))
1355 ;; Builtin & operation.
1356 ((eq (car split
) '&)
1357 (apply 'nconc
(mapcar 'nnmail-split-it
(cdr split
))))
1359 ;; Builtin | operation.
1360 ((eq (car split
) '|
)
1362 (while (and (not done
) (cdr split
))
1363 (setq split
(cdr split
)
1364 done
(nnmail-split-it (car split
))))
1367 ;; Builtin : operation.
1368 ((eq (car split
) ':)
1369 (when nnmail-split-tracing
1370 (push split nnmail-split-trace
))
1371 (nnmail-split-it (save-excursion (eval (cdr split
)))))
1373 ;; Builtin ! operation.
1374 ((eq (car split
) '!)
1375 (funcall (cadr split
) (nnmail-split-it (caddr split
))))
1377 ;; Check the cache for the regexp for this split.
1378 ((setq cached-pair
(assq split nnmail-split-cache
))
1380 (end-point (point-max))
1381 (value (nth 1 split
)))
1383 (setq value
(cdr (assq value nnmail-split-abbrev-alist
))))
1384 (while (and (goto-char end-point
)
1385 (re-search-backward (cdr cached-pair
) nil t
))
1386 (when nnmail-split-tracing
1387 (push split nnmail-split-trace
))
1388 (let ((split-rest (cddr split
))
1390 ;; The searched regexp is \(\(FIELD\).*\)\(VALUE\).
1391 ;; So, start-of-value is the point just before the
1392 ;; beginning of the value, whereas after-header-name
1393 ;; is the point just after the field name.
1394 (start-of-value (match-end 1))
1395 (after-header-name (match-end 2)))
1396 ;; Start the next search just before the beginning of the
1398 (setq end-point
(1- start-of-value
))
1399 ;; Handle - RESTRICTs
1400 (while (eq (car split-rest
) '-
)
1401 ;; RESTRICT must start after-header-name and
1402 ;; end after start-of-value, so that, for
1403 ;; (any "foo" - "x-foo" "foo.list")
1404 ;; we do not exclude foo.list just because
1405 ;; the header is: ``To: x-foo, foo''
1407 (if (and (re-search-backward (cadr split-rest
)
1408 after-header-name t
)
1409 (> (match-end 0) start-of-value
))
1410 (setq split-rest nil
)
1411 (setq split-rest
(cddr split-rest
))))
1414 (let ((value (nth 1 split
)))
1416 (setq value
(cdr (assq value nnmail-split-abbrev-alist
))))
1417 ;; Someone might want to do a \N sub on this match, so get the
1418 ;; correct match positions.
1419 (re-search-backward value start-of-value
))
1420 (dolist (sp (nnmail-split-it (car split-rest
)))
1421 (unless (member sp split-result
)
1422 (push sp split-result
))))))
1425 ;; Not in cache, compute a regexp for the field/value pair.
1427 (let* ((field (nth 0 split
))
1428 (value (nth 1 split
))
1433 (setq value
(cdr (assq value nnmail-split-abbrev-alist
))))
1434 (if (and (>= (length value
) 2)
1435 (string= ".*" (substring value
0 2)))
1436 (setq value
(substring value
2)
1438 ;; Same trick for the rear of the regexp
1439 (if (and (>= (length value
) 2)
1440 (string= ".*" (substring value -
2)))
1441 (setq value
(substring value
0 -
2)
1443 (when nnmail-split-fancy-match-partial-words
1444 (setq partial-front
""
1446 (setq regexp
(concat "^\\(\\("
1448 (cdr (assq field nnmail-split-abbrev-alist
))
1451 (or partial-front
"\\<")
1455 (or partial-rear
"\\>")))
1456 (push (cons split regexp
) nnmail-split-cache
)
1457 ;; Now that it's in the cache, just call nnmail-split-it again
1458 ;; on the same split, which will find it immediately in the cache.
1459 (nnmail-split-it split
))))))
1461 (defun nnmail-expand-newtext (newtext)
1462 (let ((len (length newtext
))
1464 c expanded beg N did-expand
)
1467 (while (and (< pos len
)
1468 (not (= (aref newtext pos
) ?
\\)))
1469 (setq pos
(1+ pos
)))
1471 (push (substring newtext beg pos
) expanded
))
1473 ;; We hit a \; expand it.
1476 c
(aref newtext pos
))
1477 (if (not (or (= c ?\
&)
1480 ;; \ followed by some character we don't expand.
1481 (push (char-to-string c
) expanded
)
1486 (when (match-beginning N
)
1487 (push (if nnmail-split-lowercase-expanded
1488 (downcase (buffer-substring (match-beginning N
)
1490 (buffer-substring (match-beginning N
) (match-end N
)))
1492 (setq pos
(1+ pos
)))
1494 (apply 'concat
(nreverse expanded
))
1497 ;; Activate a backend only if it isn't already activated.
1498 ;; If FORCE, re-read the active file even if the backend is
1499 ;; already activated.
1500 (defun nnmail-activate (backend &optional force
)
1501 (nnheader-init-server-buffer)
1502 (let (file timestamp file-time
)
1503 (if (or (not (symbol-value (intern (format "%s-group-alist" backend
))))
1505 (and (setq file
(ignore-errors
1506 (symbol-value (intern (format "%s-active-file"
1508 (setq file-time
(nth 5 (file-attributes file
)))
1512 (symbol-value (intern
1513 (format "%s-active-timestamp"
1516 (not (consp timestamp
))
1517 (equal timestamp
'(0 0))
1518 (> (nth 0 file-time
) (nth 0 timestamp
))
1519 (and (= (nth 0 file-time
) (nth 0 timestamp
))
1520 (> (nth 1 file-time
) (nth 1 timestamp
))))))
1522 (or (eq timestamp
'none
)
1523 (set (intern (format "%s-active-timestamp" backend
))
1525 (funcall (intern (format "%s-request-list" backend
)))))
1528 (defun nnmail-message-id ()
1529 (concat "<" (message-unique-id) "@totally-fudged-out-message-id>"))
1532 ;;; nnmail duplicate handling
1535 (defvar nnmail-cache-buffer nil
)
1537 (defun nnmail-cache-open ()
1538 (if (or (not nnmail-treat-duplicates
)
1539 (and nnmail-cache-buffer
1540 (buffer-name nnmail-cache-buffer
)))
1541 () ; The buffer is open.
1544 (setq nnmail-cache-buffer
1545 (get-buffer-create " *nnmail message-id cache*")))
1547 (when (file-exists-p nnmail-message-id-cache-file
)
1548 (nnheader-insert-file-contents nnmail-message-id-cache-file
))
1549 (set-buffer-modified-p nil
)
1552 (defun nnmail-cache-close ()
1553 (when (and nnmail-cache-buffer
1554 nnmail-treat-duplicates
1555 (buffer-name nnmail-cache-buffer
)
1556 (buffer-modified-p nnmail-cache-buffer
))
1558 (set-buffer nnmail-cache-buffer
)
1559 ;; Weed out the excess number of Message-IDs.
1560 (goto-char (point-max))
1561 (when (search-backward "\n" nil t nnmail-message-id-cache-length
)
1564 (delete-region (point-min) (point))))
1566 (or (file-exists-p (file-name-directory nnmail-message-id-cache-file
))
1567 (make-directory (file-name-directory nnmail-message-id-cache-file
)
1569 (nnmail-write-region (point-min) (point-max)
1570 nnmail-message-id-cache-file nil
'silent
)
1571 (set-buffer-modified-p nil
)
1572 (setq nnmail-cache-buffer nil
)
1573 (gnus-kill-buffer (current-buffer)))))
1575 ;; Compiler directives.
1577 (defvar group-art-list
)
1579 (defun nnmail-cache-insert (id grp
&optional subject sender
)
1581 ;; this will handle cases like `B r' where the group is nil
1582 (let ((grp (or grp gnus-newsgroup-name
"UNKNOWN")))
1583 (run-hook-with-args 'nnmail-spool-hook
1584 id grp subject sender
))
1585 (when nnmail-treat-duplicates
1586 ;; Store some information about the group this message is written
1587 ;; to. This is passed in as the grp argument -- all locations this
1588 ;; has been called from have been checked and the group is available.
1589 ;; The only ambiguous case is nnmail-check-duplication which will only
1590 ;; pass the first (of possibly >1) group which matches. -Josh
1591 (unless (gnus-buffer-live-p nnmail-cache-buffer
)
1592 (nnmail-cache-open))
1594 (set-buffer nnmail-cache-buffer
)
1595 (goto-char (point-max))
1596 (if (and grp
(not (string= "" grp
))
1597 (gnus-methods-equal-p gnus-command-method
1598 (nnmail-cache-primary-mail-backend)))
1599 (let ((regexp (if (consp nnmail-cache-ignore-groups
)
1600 (mapconcat 'identity nnmail-cache-ignore-groups
1602 nnmail-cache-ignore-groups
)))
1603 (unless (and regexp
(string-match regexp grp
))
1604 (insert id
"\t" grp
"\n")))
1605 (insert id
"\n"))))))
1607 (defun nnmail-cache-primary-mail-backend ()
1608 (let ((be-list (cons gnus-select-method gnus-secondary-select-methods
))
1612 (while (and (null res
) be-list
)
1613 (setq be
(car be-list
))
1614 (setq be-list
(cdr be-list
))
1615 (when (and (gnus-method-option-p be
'respool
)
1617 (intern (format "%s-get-new-mail" (car be
))))
1618 (boundp get-new-mail
)
1619 (symbol-value get-new-mail
))
1623 ;; Fetch the group name corresponding to the message id stored in the
1625 (defun nnmail-cache-fetch-group (id)
1626 (when (and nnmail-treat-duplicates nnmail-cache-buffer
)
1628 (set-buffer nnmail-cache-buffer
)
1629 (goto-char (point-max))
1630 (when (search-backward id nil t
)
1632 (skip-chars-forward "^\n\r\t")
1633 (unless (looking-at "[\r\n]")
1635 (buffer-substring (point) (gnus-point-at-eol)))))))
1637 ;; Function for nnmail-split-fancy: look up all references in the
1638 ;; cache and if a match is found, return that group.
1639 (defun nnmail-split-fancy-with-parent ()
1640 "Split this message into the same group as its parent.
1641 This function can be used as an entry in `nnmail-split-fancy', for
1642 example like this: (: nnmail-split-fancy-with-parent)
1643 For a message to be split, it looks for the parent message in the
1644 References or In-Reply-To header and then looks in the message id
1645 cache file (given by the variable `nnmail-message-id-cache-file') to
1646 see which group that message was put in. This group is returned.
1648 See the Info node `(gnus)Fancy Mail Splitting' for more details."
1649 (let* ((refstr (or (message-fetch-field "references")
1650 (message-fetch-field "in-reply-to")))
1653 (regexp (if (consp nnmail-split-fancy-with-parent-ignore-groups
)
1655 (lambda (x) (format "\\(%s\\)" x
))
1656 nnmail-split-fancy-with-parent-ignore-groups
1658 nnmail-split-fancy-with-parent-ignore-groups
)))
1660 (setq references
(nreverse (gnus-split-references refstr
)))
1661 (unless (gnus-buffer-live-p nnmail-cache-buffer
)
1662 (nnmail-cache-open))
1664 (setq res
(or (nnmail-cache-fetch-group x
) res
))
1665 (when (or (member res
'("delayed" "drafts" "queue"))
1666 (and regexp res
(string-match regexp res
)))
1671 (defun nnmail-cache-id-exists-p (id)
1672 (when nnmail-treat-duplicates
1674 (set-buffer nnmail-cache-buffer
)
1675 (goto-char (point-max))
1676 (search-backward id nil t
))))
1678 (defun nnmail-fetch-field (header)
1681 (message-narrow-to-head)
1682 (message-fetch-field header
))))
1684 (defun nnmail-check-duplication (message-id func artnum-func
)
1685 (run-hooks 'nnmail-prepare-incoming-message-hook
)
1686 ;; If this is a duplicate message, then we do not save it.
1687 (let* ((duplication (nnmail-cache-id-exists-p message-id
))
1688 (case-fold-search t
)
1689 (action (when duplication
1691 ((memq nnmail-treat-duplicates
'(warn delete
))
1692 nnmail-treat-duplicates
)
1693 ((functionp nnmail-treat-duplicates
)
1694 (funcall nnmail-treat-duplicates message-id
))
1696 nnmail-treat-duplicates
))))
1698 ;; We insert a line that says what the mail source is.
1699 (let ((case-fold-search t
))
1700 (goto-char (point-min))
1701 (re-search-forward "^message-id[ \t]*:" nil t
)
1703 (insert (format "X-Gnus-Mail-Source: %s\n" mail-source-string
)))
1705 ;; Let the backend save the article (or not).
1708 (funcall func
(setq group-art
1709 (nreverse (nnmail-article-group artnum-func
))))
1710 (nnmail-cache-insert message-id
(caar group-art
)))
1711 ((eq action
'delete
)
1712 (setq group-art nil
))
1714 ;; We insert a warning.
1715 (let ((case-fold-search t
))
1716 (goto-char (point-min))
1717 (re-search-forward "^message-id[ \t]*:" nil t
)
1720 "Gnus-Warning: This is a duplicate of message " message-id
"\n")
1721 (funcall func
(setq group-art
1722 (nreverse (nnmail-article-group artnum-func
))))))
1724 (funcall func
(setq group-art
1725 (nreverse (nnmail-article-group artnum-func
))))))
1726 ;; Add the group-art list to the history list.
1728 (push group-art nnmail-split-history
)
1729 (delete-region (point-min) (point-max)))))
1733 (defvar nnmail-fetched-sources nil
)
1735 (defun nnmail-get-value (&rest args
)
1736 (let ((sym (intern (apply 'format args
))))
1738 (symbol-value sym
))))
1740 (defun nnmail-get-new-mail (method exit-func temp
1741 &optional group spool-func
)
1742 "Read new incoming mail."
1743 (let* ((sources (or mail-sources
1744 (if (listp nnmail-spool-file
) nnmail-spool-file
1745 (list nnmail-spool-file
))))
1751 incoming incomings source
)
1752 (when (and (nnmail-get-value "%s-get-new-mail" method
)
1754 (while (setq source
(pop sources
))
1755 ;; Be compatible with old values.
1760 ((string-match "^po:" source
)
1761 (list 'pop
:user
(substring source
(match-end 0))))
1762 ((file-directory-p source
)
1763 (list 'directory
:path source
))
1765 (list 'file
:path source
)))))
1766 ((eq source
'procmail
)
1767 (message "Invalid value for nnmail-spool-file: `procmail'")
1769 ;; Hack to only fetch the contents of a single group's spool file.
1770 (when (and (eq (car source
) 'directory
)
1771 (null nnmail-scan-directory-mail-source-once
)
1773 (mail-source-bind (directory source
)
1774 (setq source
(append source
1780 ,(concat group suffix
)
1781 (file-name-nondirectory file
)))))))))
1782 (when nnmail-fetched-sources
1783 (if (member source nnmail-fetched-sources
)
1785 (push source nnmail-fetched-sources
)
1786 (push source fetching-sources
)))))
1787 (when fetching-sources
1788 ;; We first activate all the groups.
1789 (nnmail-activate method
)
1790 ;; Allow the user to hook.
1791 (run-hooks 'nnmail-pre-get-new-mail-hook
)
1792 ;; Open the message-id cache.
1794 ;; The we go through all the existing mail source specification
1795 ;; and fetch the mail from each.
1796 (while (setq source
(pop fetching-sources
))
1797 (nnheader-message 4 "%s: Reading incoming mail from %s..."
1798 method
(car source
))
1803 `(lambda (file orig-file
)
1804 (nnmail-split-incoming
1805 file
',(intern (format "%s-save-mail" method
))
1807 (if (equal file orig-file
)
1809 (nnmail-get-split-group orig-file
',source
))
1810 ',(intern (format "%s-active-number" method
)))))))
1813 ;; If we did indeed read any incoming spools, we save all info.
1815 (nnheader-message 4 "%s: Reading incoming mail (no new mail)...done"
1816 method
(car source
))
1818 (nnmail-get-value "%s-group-alist" method
)
1819 (nnmail-get-value "%s-active-file" method
))
1821 (funcall exit-func
))
1822 (run-hooks 'nnmail-read-incoming-hook
)
1823 (nnheader-message 4 "%s: Reading incoming mail (%d new)...done" method
1825 ;; Close the message-id cache.
1826 (nnmail-cache-close)
1827 ;; Allow the user to hook.
1828 (run-hooks 'nnmail-post-get-new-mail-hook
))))
1830 (defun nnmail-expired-article-p (group time force
&optional inhibit
)
1831 "Say whether an article that is TIME old in GROUP should be expired."
1834 (let ((days (or (and nnmail-expiry-wait-function
1835 (funcall nnmail-expiry-wait-function group
))
1836 nnmail-expiry-wait
)))
1837 (cond ((or (eq days
'never
)
1840 ;; This isn't an expirable group.
1842 ((eq days
'immediate
)
1843 ;; We expire all articles on sight.
1845 ((equal time
'(0 0))
1846 ;; This is an ange-ftp group, and we don't have any dates.
1849 (setq days
(days-to-time days
))
1850 ;; Compare the time with the current time.
1851 (ignore-errors (time-less-p days
(time-since time
))))))))
1853 (defun nnmail-expiry-target-group (target group
)
1854 ;; Do not invoke this from nntp-server-buffer! At least nnfolder clears
1855 ;; that buffer if the nnfolder group isn't selected.
1856 (let (nnmail-cache-accepted-message-ids)
1857 ;; Don't enter Message-IDs into cache.
1858 ;; Let users hack it in TARGET function.
1859 (when (functionp target
)
1860 (setq target
(funcall target group
)))
1861 (unless (eq target
'delete
)
1862 (when (or (gnus-request-group target
)
1863 (gnus-request-create-group target
))
1864 (let ((group-art (gnus-request-accept-article target nil nil t
)))
1865 (when (consp group-art
)
1866 (gnus-group-mark-article-read target
(cdr group-art
))))))))
1868 (defun nnmail-fancy-expiry-target (group)
1869 "Returns a target expiry group determined by `nnmail-fancy-expiry-targets'."
1871 (case-fold-search nil
)
1872 (from (or (message-fetch-field "from") ""))
1873 (to (or (message-fetch-field "to") ""))
1875 (or (message-fetch-field "date") (current-time-string))))
1877 (dolist (regexp-target-pair (reverse nnmail-fancy-expiry-targets
) target
)
1878 (setq header
(car regexp-target-pair
))
1880 ;; If the header is to-from then match against the
1881 ;; To or From header
1882 ((and (equal header
'to-from
)
1883 (or (string-match (cadr regexp-target-pair
) from
)
1884 (and (string-match message-dont-reply-to-names from
)
1885 (string-match (cadr regexp-target-pair
) to
))))
1886 (setq target
(format-time-string (caddr regexp-target-pair
) date
)))
1887 ((and (not (equal header
'to-from
))
1888 (string-match (cadr regexp-target-pair
)
1890 (message-fetch-field header
)
1893 (format-time-string (caddr regexp-target-pair
) date
)))))))
1895 (defun nnmail-check-syntax ()
1896 "Check (and modify) the syntax of the message in the current buffer."
1898 (message-narrow-to-head)
1899 (let ((case-fold-search t
))
1900 (unless (re-search-forward "^Message-ID[ \t]*:" nil t
)
1901 (insert "Message-ID: " (nnmail-message-id) "\n")))))
1903 (defun nnmail-write-region (start end filename
&optional append visit lockname
)
1904 "Do a `write-region', and then set the file modes."
1905 (let ((coding-system-for-write nnmail-file-coding-system
)
1906 (file-name-coding-system nnmail-pathname-coding-system
))
1907 (write-region start end filename append visit lockname
)
1908 (set-file-modes filename nnmail-default-file-modes
)))
1911 ;;; Status functions
1914 (defun nnmail-replace-status (name value
)
1915 "Make status NAME and VALUE part of the current status line."
1917 (message-narrow-to-head)
1918 (let ((status (nnmail-decode-status)))
1919 (setq status
(delq (member name status
) status
))
1921 (push (cons name value
) status
))
1922 (message-remove-header "status")
1923 (goto-char (point-max))
1924 (insert "Status: " (nnmail-encode-status status
) "\n"))))
1926 (defun nnmail-decode-status ()
1927 "Return a status-value alist from STATUS."
1928 (goto-char (point-min))
1929 (when (re-search-forward "^Status: " nil t
)
1930 (let (name value status
)
1932 ;; Narrow to the status.
1935 (if (re-search-forward "^[^ \t]" nil t
)
1938 ;; Go through all elements and add them to the list.
1939 (goto-char (point-min))
1940 (while (re-search-forward "[^ \t=]+" nil t
)
1941 (setq name
(match-string 0))
1942 (if (not (eq (char-after) ?
=))
1946 (if (not (eq (char-after) ?
\"))
1947 (if (not (looking-at "[^ \t]"))
1951 (setq value
(match-string 0))
1952 (goto-char (match-end 0)))
1954 (setq value
(read (current-buffer)))))
1955 (push (cons name value
) status
)))
1958 (defun nnmail-encode-status (status)
1959 "Return a status string from STATUS."
1964 (if (string-match "[ \t]" (cdr elem
))
1965 (prin1-to-string (cdr elem
))
1969 (defun nnmail-split-history ()
1970 "Generate an overview of where the last mail split put articles."
1972 (unless nnmail-split-history
1973 (error "No current split history"))
1974 (with-output-to-temp-buffer "*nnmail split history*"
1975 (with-current-buffer standard-output
1976 (fundamental-mode)) ; for Emacs 20.4+
1977 (let ((history nnmail-split-history
)
1979 (while (setq elem
(pop history
))
1980 (princ (mapconcat (lambda (ga)
1981 (concat (car ga
) ":" (int-to-string (cdr ga
))))
1986 (defun nnmail-purge-split-history (group)
1987 "Remove all instances of GROUP from `nnmail-split-history'."
1988 (let ((history nnmail-split-history
))
1990 (setcar history
(gnus-remove-if (lambda (e) (string= (car e
) group
))
1993 (setq nnmail-split-history
(delq nil nnmail-split-history
))))
1995 (defun nnmail-new-mail-p (group)
1996 "Say whether GROUP has new mail."
1997 (let ((his nnmail-split-history
)
2000 (when (assoc group
(pop his
))
2005 (defun nnmail-within-headers-p ()
2006 "Check to see if point is within the headers of a unix mail message.
2007 Doesn't change point."
2008 (let ((pos (point)))
2010 (and (nnmail-search-unix-mail-delim-backward)
2011 (not (search-forward "\n\n" pos t
))))))
2013 (run-hooks 'nnmail-load-hook
)
2017 ;;; arch-tag: fe8f671a-50db-428a-bb5d-f00462f72ed7
2018 ;;; nnmail.el ends here