Add arch taglines
[bpt/emacs.git] / lisp / gnus / gnus-mlspl.el
CommitLineData
c113de23 1;;; gnus-mlspl.el --- a group params-based mail splitting mechanism
10b3dd25
DL
2;; Copyright (C) 1998, 1999, 2000
3;; Free Software Foundation, Inc.
c113de23
GM
4
5;; Author: Alexandre Oliva <oliva@lsd.ic.unicamp.br>
6;; Keywords: news, mail
7
2be7dabc
GM
8;; This file is part of GNU Emacs.
9
10;; GNU Emacs is free software; you can redistribute it and/or modify
c113de23
GM
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)
13;; any later version.
14
2be7dabc 15;; GNU Emacs is distributed in the hope that it will be useful,
c113de23 16;; but WITHOUT ANY WARRANTY; without even the implied warranty of
2be7dabc 17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
c113de23
GM
18;; GNU General Public License for more details.
19
20;; You should have received a copy of the GNU General Public License
2be7dabc
GM
21;; along with GNU Emacs; see the file COPYING. If not, write to the
22;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
c113de23
GM
23;; Boston, MA 02111-1307, USA.
24
715a2ca2
PJ
25;;; Commentary:
26
27;;; Code:
28
d8cc10e1 29(eval-when-compile (require 'cl))
c113de23
GM
30(require 'gnus)
31(require 'gnus-sum)
32(require 'gnus-group)
33(require 'nnmail)
34
35(defvar gnus-group-split-updated-hook nil
10b3dd25
DL
36 "Hook called just after nnmail-split-fancy is updated by
37gnus-group-split-update.")
c113de23
GM
38
39(defvar gnus-group-split-default-catch-all-group "mail.misc"
10b3dd25
DL
40 "Group name (or arbitrary fancy split) with default splitting rules.
41Used by gnus-group-split and gnus-group-split-update as a fallback
42split, in case none of the group-based splits matches.")
c113de23
GM
43
44;;;###autoload
45(defun gnus-group-split-setup (&optional auto-update catch-all)
46 "Set up the split for nnmail-split-fancy.
47Sets things up so that nnmail-split-fancy is used for mail
48splitting, and defines the variable nnmail-split-fancy according with
49group parameters.
50
51If AUTO-UPDATE is non-nil (prefix argument accepted, if called
52interactively), it makes sure nnmail-split-fancy is re-computed before
53getting new mail, by adding gnus-group-split-update to
10b3dd25
DL
54nnmail-pre-get-new-mail-hook.
55
56A non-nil CATCH-ALL replaces the current value of
57gnus-group-split-default-catch-all-group. This variable is only used
58by gnus-group-split-update, and only when its CATCH-ALL argument is
59nil. This argument may contain any fancy split, that will be added as
60the last split in a `|' split produced by gnus-group-split-fancy,
61unless overridden by any group marked as a catch-all group. Typical
62uses are as simple as the name of a default mail group, but more
63elaborate fancy splits may also be useful to split mail that doesn't
64match any of the group-specified splitting rules. See
65gnus-group-split-fancy for details."
c113de23
GM
66 (interactive "P")
67 (setq nnmail-split-methods 'nnmail-split-fancy)
68 (when catch-all
69 (setq gnus-group-split-default-catch-all-group catch-all))
70 (gnus-group-split-update)
71 (when auto-update
72 (add-hook 'nnmail-pre-get-new-mail-hook 'gnus-group-split-update)))
73
74;;;###autoload
75(defun gnus-group-split-update (&optional catch-all)
10b3dd25
DL
76 "Computes nnmail-split-fancy from group params and CATCH-ALL, by
77calling (gnus-group-split-fancy nil nil CATCH-ALL).
78
79If CATCH-ALL is nil, gnus-group-split-default-catch-all-group is used
80instead. This variable is set by gnus-group-split-setup."
c113de23
GM
81 (interactive)
82 (setq nnmail-split-fancy
83 (gnus-group-split-fancy
d8cc10e1
DL
84 nil (null nnmail-crosspost)
85 (or catch-all gnus-group-split-default-catch-all-group)))
c113de23
GM
86 (run-hooks 'gnus-group-split-updated-hook))
87
88;;;###autoload
89(defun gnus-group-split ()
90 "Uses information from group parameters in order to split mail.
91See gnus-group-split-fancy for more information.
92
c113de23
GM
93gnus-group-split is a valid value for nnmail-split-methods."
94 (let (nnmail-split-fancy)
10b3dd25 95 (gnus-group-split-update)
c113de23
GM
96 (nnmail-split-fancy)))
97
98;;;###autoload
99(defun gnus-group-split-fancy
100 (&optional groups no-crosspost catch-all)
11f6edcc
PJ
101 "Uses information from group parameters in order to split mail.
102It can be embedded into `nnmail-split-fancy' lists with the SPLIT
c113de23
GM
103
104\(: gnus-group-split-fancy GROUPS NO-CROSSPOST CATCH-ALL\)
105
106GROUPS may be a regular expression or a list of group names, that will
8f688cb0 107be used to select candidate groups. If it is omitted or nil, all
c113de23
GM
108existing groups are considered.
109
8f688cb0 110if NO-CROSSPOST is omitted or nil, a & split will be returned,
c113de23
GM
111otherwise, a | split, that does not allow crossposting, will be
112returned.
113
c113de23
GM
114For each selected group, a SPLIT is composed like this: if SPLIT-SPEC
115is specified, this split is returned as-is (unless it is nil: in this
116case, the group is ignored). Otherwise, if TO-ADDRESS, TO-LIST and/or
117EXTRA-ALIASES are specified, a regexp that matches any of them is
118constructed (extra-aliases may be a list). Additionally, if
119SPLIT-REGEXP is specified, the regexp will be extended so that it
120matches this regexp too, and if SPLIT-EXCLUDE is specified, RESTRICT
121clauses will be generated.
122
10b3dd25
DL
123If CATCH-ALL is nil, no catch-all handling is performed, regardless of
124catch-all marks in group parameters. Otherwise, if there is no
125selected group whose SPLIT-REGEXP matches the empty string, nor is
126there a selected group whose SPLIT-SPEC is 'catch-all, this fancy
127split (say, a group name) will be appended to the returned SPLIT list,
128as the last element of a '| SPLIT.
129
c113de23
GM
130For example, given the following group parameters:
131
132nnml:mail.bar:
133\((to-address . \"bar@femail.com\")
134 (split-regexp . \".*@femail\\\\.com\"))
135nnml:mail.foo:
136\((to-list . \"foo@nowhere.gov\")
137 (extra-aliases \"foo@localhost\" \"foo-redist@home\")
138 (split-exclude \"bugs-foo\" \"rambling-foo\")
139 (admin-address . \"foo-request@nowhere.gov\"))
140nnml:mail.others:
141\((split-spec . catch-all))
142
143Calling (gnus-group-split-fancy nil nil \"mail.misc\") returns:
144
145\(| (& (any \"\\\\(bar@femail\\\\.com\\\\|.*@femail\\\\.com\\\\)\"
146 \"mail.bar\")
147 (any \"\\\\(foo@nowhere\\\\.gov\\\\|foo@localhost\\\\|foo-redist@home\\\\)\"
148 - \"bugs-foo\" - \"rambling-foo\" \"mail.foo\"))
149 \"mail.others\")"
150 (let* ((newsrc (cdr gnus-newsrc-alist))
151 split)
152 (dolist (info newsrc)
153 (let ((group (gnus-info-group info))
154 (params (gnus-info-params info)))
155 ;; For all GROUPs that match the specified GROUPS
156 (when (or (not groups)
157 (and (listp groups)
158 (memq group groups))
159 (and (stringp groups)
160 (string-match groups group)))
161 (let ((split-spec (assoc 'split-spec params)) group-clean)
162 ;; Remove backend from group name
163 (setq group-clean (string-match ":" group))
164 (setq group-clean
165 (if group-clean
166 (substring group (1+ group-clean))
167 group))
168 (if split-spec
169 (when (setq split-spec (cdr split-spec))
170 (if (eq split-spec 'catch-all)
171 ;; Emit catch-all only when requested
172 (when catch-all
173 (setq catch-all group-clean))
174 ;; Append split-spec to the main split
175 (push split-spec split)))
176 ;; Let's deduce split-spec from other params
177 (let ((to-address (cdr (assoc 'to-address params)))
178 (to-list (cdr (assoc 'to-list params)))
179 (extra-aliases (cdr (assoc 'extra-aliases params)))
180 (split-regexp (cdr (assoc 'split-regexp params)))
181 (split-exclude (cdr (assoc 'split-exclude params))))
182 (when (or to-address to-list extra-aliases split-regexp)
183 ;; regexp-quote to-address, to-list and extra-aliases
184 ;; and add them all to split-regexp
185 (setq split-regexp
186 (concat
187 "\\("
188 (mapconcat
189 'identity
190 (append
191 (and to-address (list (regexp-quote to-address)))
192 (and to-list (list (regexp-quote to-list)))
193 (and extra-aliases
194 (if (listp extra-aliases)
195 (mapcar 'regexp-quote extra-aliases)
196 (list extra-aliases)))
197 (and split-regexp (list split-regexp)))
198 "\\|")
199 "\\)"))
200 ;; Now create the new SPLIT
201 (push (append
202 (list 'any split-regexp)
203 ;; Generate RESTRICTs for SPLIT-EXCLUDEs.
204 (if (listp split-exclude)
205 (let ((seq split-exclude)
206 res)
207 (while seq
208 (push (cons '- (pop seq))
209 res))
210 (apply #'nconc (nreverse res)))
211 (list '- split-exclude))
212 (list group-clean))
213 split)
214 ;; If it matches the empty string, it is a catch-all
215 (when (string-match split-regexp "")
216 (setq catch-all nil)))))))))
217 ;; Add catch-all if not crossposting
218 (if (and catch-all no-crosspost)
d8cc10e1 219 (push catch-all split))
c113de23
GM
220 ;; Move it to the tail, while arranging that SPLITs appear in the
221 ;; same order as groups.
222 (setq split (reverse split))
223 ;; Decide whether to accept cross-postings or not.
224 (push (if no-crosspost '| '&) split)
225 ;; Even if we can cross-post, catch-all should not get
226 ;; cross-posts.
227 (if (and catch-all (not no-crosspost))
228 (setq split (list '| split catch-all)))
229 split))
230
231(provide 'gnus-mlspl)
715a2ca2 232
ab5796a9 233;;; arch-tag: 62b3381f-1e45-4b61-be1a-29fb27703322
715a2ca2 234;;; gnus-mlspl.el ends here