Mercurial > emacs
annotate lisp/gnus/gnus-nocem.el @ 68682:23eaa0d773ea
Added more autoload cookies.
author | Mathias Dahl <mathias.dahl@gmail.com> |
---|---|
date | Tue, 07 Feb 2006 21:24:22 +0000 |
parents | 1077b8039c32 |
children | 29fe34ec2296 c5406394f567 |
rev | line source |
---|---|
17493 | 1 ;;; gnus-nocem.el --- NoCeM pseudo-cancellation treatment |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2 |
64754
fafd692d1e40
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64085
diff
changeset
|
3 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004, |
68633
1077b8039c32
Update copyright notices of all files in the gnus directory.
Romain Francoise <romain@orebokech.com>
parents:
64754
diff
changeset
|
4 ;; 2005, 2006 Free Software Foundation, Inc. |
17493 | 5 |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org> |
17493 | 7 ;; Keywords: news |
8 | |
9 ;; This file is part of GNU Emacs. | |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
64085 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
17493 | 25 |
26 ;;; Commentary: | |
27 | |
28 ;;; Code: | |
29 | |
19539
0f90eb270fc7
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17493
diff
changeset
|
30 (eval-when-compile (require 'cl)) |
0f90eb270fc7
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17493
diff
changeset
|
31 |
17493 | 32 (require 'gnus) |
33 (require 'nnmail) | |
34 (require 'gnus-art) | |
35 (require 'gnus-sum) | |
36 (require 'gnus-range) | |
37 | |
38 (defgroup gnus-nocem nil | |
63976
0629e50e00f6
(gnus-nocem): Finish `defgroup' description with period.
Juanma Barranquero <lekktu@gmail.com>
parents:
63868
diff
changeset
|
39 "NoCeM pseudo-cancellation treatment." |
17493 | 40 :group 'gnus-score) |
41 | |
42 (defcustom gnus-nocem-groups | |
43 '("news.lists.filters" "news.admin.net-abuse.bulletins" | |
44 "alt.nocem.misc" "news.admin.net-abuse.announce") | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
45 "*List of groups that will be searched for NoCeM messages." |
17493 | 46 :group 'gnus-nocem |
47 :type '(repeat (string :tag "Group"))) | |
48 | |
49 (defcustom gnus-nocem-issuers | |
32626 | 50 '("AutoMoose-1" ; CancelMoose[tm] |
51 "clewis@ferret.ocunix" ; Chris Lewis | |
52 "cosmo.roadkill" | |
53 "SpamHippo" | |
54 "hweede@snafu.de") | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
55 "*List of NoCeM issuers to pay attention to. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
56 |
32626 | 57 This can also be a list of `(ISSUER CONDITION ...)' elements. |
58 | |
59 See <URL:http://www.xs4all.nl/~rosalind/nocemreg/nocemreg.html> for an | |
60 issuer registry." | |
17493 | 61 :group 'gnus-nocem |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
62 :link '(url-link "http://www.xs4all.nl/~rosalind/nocemreg/nocemreg.html") |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
63 :type '(repeat (choice string sexp))) |
17493 | 64 |
65 (defcustom gnus-nocem-directory | |
66 (nnheader-concat gnus-article-save-directory "NoCeM/") | |
67 "*Directory where NoCeM files will be stored." | |
68 :group 'gnus-nocem | |
69 :type 'directory) | |
70 | |
71 (defcustom gnus-nocem-expiry-wait 15 | |
72 "*Number of days to keep NoCeM headers in the cache." | |
73 :group 'gnus-nocem | |
74 :type 'integer) | |
75 | |
63868
e903f947651d
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-458
Miles Bader <miles@gnu.org>
parents:
56927
diff
changeset
|
76 (defcustom gnus-nocem-verifyer 'pgg-verify |
17493 | 77 "*Function called to verify that the NoCeM message is valid. |
63868
e903f947651d
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-458
Miles Bader <miles@gnu.org>
parents:
56927
diff
changeset
|
78 One likely value is `pgg-verify'. If the function in this variable |
17493 | 79 isn't bound, the message will be used unconditionally." |
80 :group 'gnus-nocem | |
63868
e903f947651d
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-458
Miles Bader <miles@gnu.org>
parents:
56927
diff
changeset
|
81 :type '(radio (function-item pgg-verify) |
e903f947651d
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-458
Miles Bader <miles@gnu.org>
parents:
56927
diff
changeset
|
82 (function-item mc-verify) |
17493 | 83 (function :tag "other"))) |
84 | |
85 (defcustom gnus-nocem-liberal-fetch nil | |
86 "*If t try to fetch all messages which have @@NCM in the subject. | |
87 Otherwise don't fetch messages which have references or whose message-id | |
47936
54348dbd8b9c
(gnus-nocem-liberal-fetch): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
33178
diff
changeset
|
88 matches a previously scanned and verified nocem message." |
17493 | 89 :group 'gnus-nocem |
90 :type 'boolean) | |
91 | |
33178
23d4e36c09fc
(gnus-nocem-check-article-limit): Default to 500.
Dave Love <fx@gnu.org>
parents:
32626
diff
changeset
|
92 (defcustom gnus-nocem-check-article-limit 500 |
32599
0db9e380f3ec
(gnus-nocem-check-article-limit): New variable.
Miles Bader <miles@gnu.org>
parents:
31716
diff
changeset
|
93 "*If non-nil, the maximum number of articles to check in any NoCeM group." |
0db9e380f3ec
(gnus-nocem-check-article-limit): New variable.
Miles Bader <miles@gnu.org>
parents:
31716
diff
changeset
|
94 :group 'gnus-nocem |
32626 | 95 :version "21.1" |
32599
0db9e380f3ec
(gnus-nocem-check-article-limit): New variable.
Miles Bader <miles@gnu.org>
parents:
31716
diff
changeset
|
96 :type '(choice (const :tag "unlimited" nil) |
0db9e380f3ec
(gnus-nocem-check-article-limit): New variable.
Miles Bader <miles@gnu.org>
parents:
31716
diff
changeset
|
97 (integer 1000))) |
0db9e380f3ec
(gnus-nocem-check-article-limit): New variable.
Miles Bader <miles@gnu.org>
parents:
31716
diff
changeset
|
98 |
32626 | 99 (defcustom gnus-nocem-check-from t |
100 "Non-nil means check for valid issuers in message bodies. | |
101 Otherwise don't bother fetching articles unless their author matches a | |
102 valid issuer, which is much faster if you are selective about the issuers." | |
103 :group 'gnus-nocem | |
104 :version "21.1" | |
105 :type 'boolean) | |
106 | |
17493 | 107 ;;; Internal variables |
108 | |
109 (defvar gnus-nocem-active nil) | |
110 (defvar gnus-nocem-alist nil) | |
111 (defvar gnus-nocem-touched-alist nil) | |
112 (defvar gnus-nocem-hashtb nil) | |
113 (defvar gnus-nocem-seen-message-ids nil) | |
114 | |
115 ;;; Functions | |
116 | |
117 (defun gnus-nocem-active-file () | |
118 (concat (file-name-as-directory gnus-nocem-directory) "active")) | |
119 | |
120 (defun gnus-nocem-cache-file () | |
121 (concat (file-name-as-directory gnus-nocem-directory) "cache")) | |
122 | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19539
diff
changeset
|
123 ;; |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19539
diff
changeset
|
124 ;; faster lookups for group names: |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19539
diff
changeset
|
125 ;; |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19539
diff
changeset
|
126 |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19539
diff
changeset
|
127 (defvar gnus-nocem-real-group-hashtb nil |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19539
diff
changeset
|
128 "Real-name mappings of subscribed groups.") |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19539
diff
changeset
|
129 |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19539
diff
changeset
|
130 (defun gnus-fill-real-hashtb () |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
131 "Fill up a hash table with the real-name mappings from the user's active file." |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19539
diff
changeset
|
132 (setq gnus-nocem-real-group-hashtb (gnus-make-hashtable |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19539
diff
changeset
|
133 (length gnus-newsrc-alist))) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19539
diff
changeset
|
134 (mapcar (lambda (group) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19539
diff
changeset
|
135 (setq group (gnus-group-real-name (car group))) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19539
diff
changeset
|
136 (gnus-sethash group t gnus-nocem-real-group-hashtb)) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19539
diff
changeset
|
137 gnus-newsrc-alist)) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19539
diff
changeset
|
138 |
17493 | 139 (defun gnus-nocem-scan-groups () |
140 "Scan all NoCeM groups for new NoCeM messages." | |
141 (interactive) | |
142 (let ((groups gnus-nocem-groups) | |
143 (gnus-inhibit-demon t) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
144 group active gactive articles check-headers) |
17493 | 145 (gnus-make-directory gnus-nocem-directory) |
146 ;; Load any previous NoCeM headers. | |
147 (gnus-nocem-load-cache) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19539
diff
changeset
|
148 ;; Get the group name mappings: |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19539
diff
changeset
|
149 (gnus-fill-real-hashtb) |
17493 | 150 ;; Read the active file if it hasn't been read yet. |
151 (and (file-exists-p (gnus-nocem-active-file)) | |
152 (not gnus-nocem-active) | |
153 (ignore-errors | |
154 (load (gnus-nocem-active-file) t t t))) | |
155 ;; Go through all groups and see whether new articles have | |
156 ;; arrived. | |
157 (while (setq group (pop groups)) | |
158 (if (not (setq gactive (gnus-activate-group group))) | |
159 () ; This group doesn't exist. | |
160 (setq active (nth 1 (assoc group gnus-nocem-active))) | |
161 (when (and (not (< (cdr gactive) (car gactive))) ; Empty group. | |
162 (or (not active) | |
163 (< (cdr active) (cdr gactive)))) | |
164 ;; Ok, there are new articles in this group, se we fetch the | |
165 ;; headers. | |
166 (save-excursion | |
167 (let ((dependencies (make-vector 10 nil)) | |
168 headers header) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
169 (with-temp-buffer |
17493 | 170 (setq headers |
171 (if (eq 'nov | |
172 (gnus-retrieve-headers | |
173 (setq articles | |
174 (gnus-uncompress-range | |
175 (cons | |
176 (if active (1+ (cdr active)) | |
177 (car gactive)) | |
178 (cdr gactive)))) | |
179 group)) | |
180 (gnus-get-newsgroup-headers-xover | |
181 articles nil dependencies) | |
182 (gnus-get-newsgroup-headers dependencies))) | |
183 (while (setq header (pop headers)) | |
184 ;; We take a closer look on all articles that have | |
185 ;; "@@NCM" in the subject. Unless we already read | |
186 ;; this cross posted message. Nocem messages | |
187 ;; are not allowed to have references, so we can | |
188 ;; ignore scanning followups. | |
189 (and (string-match "@@NCM" (mail-header-subject header)) | |
32626 | 190 (and gnus-nocem-check-from |
191 (let ((case-fold-search t)) | |
192 (catch 'ok | |
193 (mapcar | |
194 (lambda (author) | |
195 (if (consp author) | |
196 (setq author (car author))) | |
197 (if (string-match | |
198 author (mail-header-from header)) | |
199 (throw 'ok t))) | |
200 gnus-nocem-issuers) | |
201 nil))) | |
17493 | 202 (or gnus-nocem-liberal-fetch |
203 (and (or (string= "" (mail-header-references | |
204 header)) | |
205 (null (mail-header-references header))) | |
206 (not (member (mail-header-message-id header) | |
207 gnus-nocem-seen-message-ids)))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
208 (push header check-headers))) |
32599
0db9e380f3ec
(gnus-nocem-check-article-limit): New variable.
Miles Bader <miles@gnu.org>
parents:
31716
diff
changeset
|
209 (let* ((i 0) |
0db9e380f3ec
(gnus-nocem-check-article-limit): New variable.
Miles Bader <miles@gnu.org>
parents:
31716
diff
changeset
|
210 (check-headers |
0db9e380f3ec
(gnus-nocem-check-article-limit): New variable.
Miles Bader <miles@gnu.org>
parents:
31716
diff
changeset
|
211 (last check-headers gnus-nocem-check-article-limit)) |
0db9e380f3ec
(gnus-nocem-check-article-limit): New variable.
Miles Bader <miles@gnu.org>
parents:
31716
diff
changeset
|
212 (len (length check-headers))) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
213 (dolist (h check-headers) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
214 (gnus-message |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
215 7 "Checking article %d in %s for NoCeM (%d of %d)..." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
216 (mail-header-number h) group (incf i) len) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
217 (gnus-nocem-check-article group h))))))) |
17493 | 218 (setq gnus-nocem-active |
219 (cons (list group gactive) | |
220 (delq (assoc group gnus-nocem-active) | |
221 gnus-nocem-active))))) | |
222 ;; Save the results, if any. | |
223 (gnus-nocem-save-cache) | |
224 (gnus-nocem-save-active))) | |
225 | |
226 (defun gnus-nocem-check-article (group header) | |
227 "Check whether the current article is an NCM article and that we want it." | |
228 ;; Get the article. | |
229 (let ((date (mail-header-date header)) | |
32626 | 230 (gnus-newsgroup-name group) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
231 issuer b e type) |
17493 | 232 (when (or (not date) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
233 (time-less-p |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
234 (time-since (date-to-time date)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
235 (days-to-time gnus-nocem-expiry-wait))) |
17493 | 236 (gnus-request-article-this-buffer (mail-header-number header) group) |
237 (goto-char (point-min)) | |
238 (when (re-search-forward "-----BEGIN PGP MESSAGE-----" nil t) | |
239 (delete-region (point-min) (match-beginning 0))) | |
240 (when (re-search-forward "-----END PGP MESSAGE-----\n?" nil t) | |
241 (delete-region (match-end 0) (point-max))) | |
242 (goto-char (point-min)) | |
243 ;; The article has to have proper NoCeM headers. | |
244 (when (and (setq b (search-forward "\n@@BEGIN NCM HEADERS\n" nil t)) | |
245 (setq e (search-forward "\n@@BEGIN NCM BODY\n" nil t))) | |
246 ;; We get the name of the issuer. | |
247 (narrow-to-region b e) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
248 (setq issuer (mail-fetch-field "issuer") |
63868
e903f947651d
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-458
Miles Bader <miles@gnu.org>
parents:
56927
diff
changeset
|
249 type (mail-fetch-field "type")) |
17493 | 250 (widen) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
251 (if (not (gnus-nocem-message-wanted-p issuer type)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
252 (message "invalid NoCeM issuer: %s" issuer) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
253 (and (gnus-nocem-verify-issuer issuer) ; She is who she says she is. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
254 (gnus-nocem-enter-article) ; We gobble the message. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
255 (push (mail-header-message-id header) ; But don't come back for |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
256 gnus-nocem-seen-message-ids))))))) ; second helpings. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
257 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
258 (defun gnus-nocem-message-wanted-p (issuer type) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
259 (let ((issuers gnus-nocem-issuers) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
260 wanted conditions condition) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
261 (cond |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
262 ;; Do the quick check first. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
263 ((member issuer issuers) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
264 t) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
265 ((setq conditions (cdr (assoc issuer issuers))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
266 ;; Check whether we want this type. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
267 (while (setq condition (pop conditions)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
268 (cond |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
269 ((stringp condition) |
63868
e903f947651d
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-458
Miles Bader <miles@gnu.org>
parents:
56927
diff
changeset
|
270 (when (string-match condition type) |
e903f947651d
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-458
Miles Bader <miles@gnu.org>
parents:
56927
diff
changeset
|
271 (setq wanted t))) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
272 ((and (consp condition) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
273 (eq (car condition) 'not) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
274 (stringp (cadr condition))) |
63868
e903f947651d
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-458
Miles Bader <miles@gnu.org>
parents:
56927
diff
changeset
|
275 (when (string-match (cadr condition) type) |
e903f947651d
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-458
Miles Bader <miles@gnu.org>
parents:
56927
diff
changeset
|
276 (setq wanted nil))) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
277 (t |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
278 (error "Invalid NoCeM condition: %S" condition)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
279 wanted)))) |
17493 | 280 |
281 (defun gnus-nocem-verify-issuer (person) | |
282 "Verify using PGP that the canceler is who she says she is." | |
63868
e903f947651d
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-458
Miles Bader <miles@gnu.org>
parents:
56927
diff
changeset
|
283 (if (functionp gnus-nocem-verifyer) |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19539
diff
changeset
|
284 (ignore-errors |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19539
diff
changeset
|
285 (funcall gnus-nocem-verifyer)) |
17493 | 286 ;; If we don't have Mailcrypt, then we use the message anyway. |
287 t)) | |
288 | |
289 (defun gnus-nocem-enter-article () | |
290 "Enter the current article into the NoCeM cache." | |
291 (goto-char (point-min)) | |
292 (let ((b (search-forward "\n@@BEGIN NCM BODY\n" nil t)) | |
293 (e (search-forward "\n@@END NCM BODY\n" nil t)) | |
294 (buf (current-buffer)) | |
295 ncm id group) | |
296 (when (and b e) | |
297 (narrow-to-region b (1+ (match-beginning 0))) | |
298 (goto-char (point-min)) | |
299 (while (search-forward "\t" nil t) | |
300 (cond | |
301 ((not (ignore-errors | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
302 (setq group (let ((obarray gnus-nocem-real-group-hashtb)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
303 (read buf))))) |
17493 | 304 ;; An error. |
305 ) | |
306 ((not (symbolp group)) | |
307 ;; Ignore invalid entries. | |
308 ) | |
309 ((not (boundp group)) | |
310 ;; Make sure all entries in the hashtb are bound. | |
311 (set group nil)) | |
312 (t | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19539
diff
changeset
|
313 (when (gnus-gethash (gnus-group-real-name (symbol-name group)) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19539
diff
changeset
|
314 gnus-nocem-real-group-hashtb) |
17493 | 315 ;; Valid group. |
316 (beginning-of-line) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
317 (while (eq (char-after) ?\t) |
17493 | 318 (forward-line -1)) |
319 (setq id (buffer-substring (point) (1- (search-forward "\t")))) | |
63868
e903f947651d
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-458
Miles Bader <miles@gnu.org>
parents:
56927
diff
changeset
|
320 (unless (if gnus-nocem-hashtb |
e903f947651d
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-458
Miles Bader <miles@gnu.org>
parents:
56927
diff
changeset
|
321 (gnus-gethash id gnus-nocem-hashtb) |
e903f947651d
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-458
Miles Bader <miles@gnu.org>
parents:
56927
diff
changeset
|
322 (setq gnus-nocem-hashtb (gnus-make-hashtable)) |
e903f947651d
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-458
Miles Bader <miles@gnu.org>
parents:
56927
diff
changeset
|
323 nil) |
17493 | 324 ;; only store if not already present |
325 (gnus-sethash id t gnus-nocem-hashtb) | |
326 (push id ncm)) | |
327 (forward-line 1) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
328 (while (eq (char-after) ?\t) |
17493 | 329 (forward-line 1)))))) |
330 (when ncm | |
331 (setq gnus-nocem-touched-alist t) | |
332 (push (cons (let ((time (current-time))) (setcdr (cdr time) nil) time) | |
333 ncm) | |
334 gnus-nocem-alist)) | |
335 t))) | |
336 | |
337 (defun gnus-nocem-load-cache () | |
338 "Load the NoCeM cache." | |
339 (interactive) | |
340 (unless gnus-nocem-alist | |
341 ;; The buffer doesn't exist, so we create it and load the NoCeM | |
342 ;; cache. | |
343 (when (file-exists-p (gnus-nocem-cache-file)) | |
344 (load (gnus-nocem-cache-file) t t t) | |
345 (gnus-nocem-alist-to-hashtb)))) | |
346 | |
347 (defun gnus-nocem-save-cache () | |
348 "Save the NoCeM cache." | |
349 (when (and gnus-nocem-alist | |
350 gnus-nocem-touched-alist) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
351 (with-temp-file (gnus-nocem-cache-file) |
17493 | 352 (gnus-prin1 `(setq gnus-nocem-alist ',gnus-nocem-alist))) |
353 (setq gnus-nocem-touched-alist nil))) | |
354 | |
355 (defun gnus-nocem-save-active () | |
356 "Save the NoCeM active file." | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
357 (with-temp-file (gnus-nocem-active-file) |
17493 | 358 (gnus-prin1 `(setq gnus-nocem-active ',gnus-nocem-active)))) |
359 | |
360 (defun gnus-nocem-alist-to-hashtb () | |
361 "Create a hashtable from the Message-IDs we have." | |
362 (let* ((alist gnus-nocem-alist) | |
363 (pprev (cons nil alist)) | |
364 (prev pprev) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
365 (expiry (days-to-time gnus-nocem-expiry-wait)) |
17493 | 366 entry) |
367 (setq gnus-nocem-hashtb (gnus-make-hashtable (* (length alist) 51))) | |
368 (while (setq entry (car alist)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
369 (if (not (time-less-p (time-since (car entry)) expiry)) |
17493 | 370 ;; This entry has expired, so we remove it. |
371 (setcdr prev (cdr alist)) | |
372 (setq prev alist) | |
373 ;; This is ok, so we enter it into the hashtable. | |
374 (setq entry (cdr entry)) | |
375 (while entry | |
376 (gnus-sethash (car entry) t gnus-nocem-hashtb) | |
377 (setq entry (cdr entry)))) | |
378 (setq alist (cdr alist))))) | |
379 | |
380 (gnus-add-shutdown 'gnus-nocem-close 'gnus) | |
381 | |
382 (defun gnus-nocem-close () | |
383 "Clear internal NoCeM variables." | |
384 (setq gnus-nocem-alist nil | |
385 gnus-nocem-hashtb nil | |
386 gnus-nocem-active nil | |
387 gnus-nocem-touched-alist nil | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19539
diff
changeset
|
388 gnus-nocem-seen-message-ids nil |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19539
diff
changeset
|
389 gnus-nocem-real-group-hashtb nil)) |
17493 | 390 |
391 (defun gnus-nocem-unwanted-article-p (id) | |
392 "Say whether article ID in the current group is wanted." | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
393 (and gnus-nocem-hashtb |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
394 (gnus-gethash id gnus-nocem-hashtb))) |
17493 | 395 |
396 (provide 'gnus-nocem) | |
397 | |
52401 | 398 ;;; arch-tag: 0e0c74ea-2f8e-4f3e-8fff-09f767c1adef |
17493 | 399 ;;; gnus-nocem.el ends here |