1 ;;; gnus-sieve.el --- Utilities to manage sieve scripts for Gnus
2 ;; Copyright (C) 2001, 2003 Free Software Foundation, Inc.
4 ;; Author: NAGY Andras <nagya@inf.elte.hu>,
5 ;; Simon Josefsson <simon@josefsson.org>
7 ;; This file is part of GNU Emacs.
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;; GNU General Public License for more details.
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING. If not, write to the
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 ;; Boston, MA 02111-1307, USA.
26 ;; Gnus glue to generate complete Sieve scripts from Gnus Group
27 ;; Parameters with "if" test predicates.
33 (require 'format-spec
)
34 (autoload 'sieve-mode
"sieve-mode")
40 (defgroup gnus-sieve nil
41 "Manage sieve scripts in Gnus."
44 (defcustom gnus-sieve-file
"~/.sieve"
45 "Path to your Sieve script."
49 (defcustom gnus-sieve-region-start
"\n## Begin Gnus Sieve Script\n"
50 "Line indicating the start of the autogenerated region in
55 (defcustom gnus-sieve-region-end
"\n## End Gnus Sieve Script\n"
56 "Line indicating the end of the autogenerated region in
61 (defcustom gnus-sieve-select-method nil
62 "Which select method we generate the Sieve script for.
64 For example: \"nnimap:mailbox\""
67 (defcustom gnus-sieve-crosspost t
68 "Whether the generated Sieve script should do crossposting."
72 (defcustom gnus-sieve-update-shell-command
"echo put %f | sieveshell %s"
73 "Shell command to execute after updating your Sieve script. The following
74 formatting characters are recognized:
76 %f Script's file name (gnus-sieve-file)
77 %s Server name (from gnus-sieve-select-method)"
82 (defun gnus-sieve-update ()
83 "Update the Sieve script in gnus-sieve-file, by replacing the region
84 between gnus-sieve-region-start and gnus-sieve-region-end with
85 \(gnus-sieve-script gnus-sieve-select-method gnus-sieve-crosspost\), then
86 execute gnus-sieve-update-shell-command.
87 See the documentation for these variables and functions for details."
92 (format-spec gnus-sieve-update-shell-command
93 (format-spec-make ?f gnus-sieve-file
94 ?s
(or (cadr (gnus-server-get-method
95 nil gnus-sieve-select-method
))
99 (defun gnus-sieve-generate ()
100 "Generate the Sieve script in gnus-sieve-file, by replacing the region
101 between gnus-sieve-region-start and gnus-sieve-region-end with
102 \(gnus-sieve-script gnus-sieve-select-method gnus-sieve-crosspost\).
103 See the documentation for these variables and functions for details."
106 (find-file gnus-sieve-file
)
107 (goto-char (point-min))
108 (if (re-search-forward (regexp-quote gnus-sieve-region-start
) nil t
)
109 (delete-region (match-end 0)
110 (or (re-search-forward (regexp-quote
111 gnus-sieve-region-end
) nil t
)
113 (insert sieve-template
))
114 (insert gnus-sieve-region-start
115 (gnus-sieve-script gnus-sieve-select-method gnus-sieve-crosspost
)
116 gnus-sieve-region-end
))
118 (defun gnus-sieve-guess-rule-for-article ()
119 "Guess a sieve rule based on RFC822 article in buffer.
120 Return nil if no rule could be guessed."
121 (when (message-fetch-field "sender")
122 `(sieve address
"sender" ,(message-fetch-field "sender"))))
125 (defun gnus-sieve-article-add-rule ()
127 (gnus-summary-select-article nil
'force
)
128 (with-current-buffer gnus-original-article-buffer
129 (let ((rule (gnus-sieve-guess-rule-for-article))
130 (info (gnus-get-info gnus-newsgroup-name
)))
132 (error "Could not guess rule for article.")
133 (gnus-info-set-params info
(cons rule
(gnus-info-params info
)))
134 (message "Added rule in group %s for article: %s" gnus-newsgroup-name
139 ;; FIXME: do proper quoting of " etc
140 (defun gnus-sieve-string-list (list)
141 "Convert an elisp string list to a Sieve string list.
144 \(gnus-sieve-string-list '(\"to\" \"cc\"))
145 => \"[\\\"to\\\", \\\"cc\\\"]\"
147 (concat "[\"" (mapconcat 'identity list
"\", \"") "\"]"))
149 (defun gnus-sieve-test-list (list)
150 "Convert an elisp test list to a Sieve test list.
153 \(gnus-sieve-test-list '((address \"sender\" \"boss@company.com\") (size :over 4K)))
154 => \"(address \\\"sender\\\" \\\"boss@company.com\\\", size :over 4K)\""
155 (concat "(" (mapconcat 'gnus-sieve-test list
", ") ")"))
157 ;; FIXME: do proper quoting
158 (defun gnus-sieve-test-token (token)
159 "Convert an elisp test token to a Sieve test token.
162 \(gnus-sieve-test-token 'address)
165 \(gnus-sieve-test-token \"sender\")
166 => \"\\\"sender\\\"\"
168 \(gnus-sieve-test-token '(\"to\" \"cc\"))
169 => \"[\\\"to\\\", \\\"cc\\\"]\""
171 ((symbolp token
) ;; Keyword
174 ((stringp token
) ;; String
175 (concat "\"" token
"\""))
177 ((and (listp token
) ;; String list
178 (stringp (car token
)))
179 (gnus-sieve-string-list token
))
181 ((and (listp token
) ;; Test list
183 (gnus-sieve-test-list token
))))
185 (defun gnus-sieve-test (test)
186 "Convert an elisp test to a Sieve test.
189 \(gnus-sieve-test '(address \"sender\" \"sieve-admin@extundo.com\"))
190 => \"address \\\"sender\\\" \\\"sieve-admin@extundo.com\\\"\"
192 \(gnus-sieve-test '(anyof ((header :contains (\"to\" \"cc\") \"my@address.com\")
194 => \"anyof (header :contains [\\\"to\\\", \\\"cc\\\"] \\\"my@address.com\\\",
196 (mapconcat 'gnus-sieve-test-token test
" "))
198 (defun gnus-sieve-script (&optional method crosspost
)
199 "Generate a Sieve script based on groups with select method METHOD
200 \(or all groups if nil\). Only groups having a `sieve' parameter are
201 considered. This parameter should contain an elisp test
202 \(see the documentation of gnus-sieve-test for details\). For each
203 such group, a Sieve IF control structure is generated, having the
204 test as the condition and { fileinto \"group.name\"; } as the body.
206 If CROSSPOST is nil, each conditional body contains a \"stop\" command
207 which stops execution after a match is found.
209 For example: If the INBOX.list.sieve group has the
211 (sieve address \"sender\" \"sieve-admin@extundo.com\")
213 group parameter, (gnus-sieve-script) results in:
215 if address \"sender\" \"sieve-admin@extundo.com\" {
216 fileinto \"INBOX.list.sieve\";
219 This is returned as a string."
220 (let* ((newsrc (cdr gnus-newsrc-alist
))
222 (dolist (info newsrc
)
223 (when (or (not method
)
224 (gnus-server-equal method
(gnus-info-method info
)))
225 (let* ((group (gnus-info-group info
))
226 (spec (gnus-group-find-parameter group
'sieve t
)))
228 (push (concat "if " (gnus-sieve-test spec
) " {\n"
229 "\tfileinto \"" (gnus-group-real-name group
) "\";\n"
235 (mapconcat 'identity script
"\n")))
237 (provide 'gnus-sieve
)
239 ;;; arch-tag: 3b906527-c7f3-4c86-9e82-62e2697998a3
240 ;;; gnus-sieve.el ends here