bbd80a5b5a9794bea12454335d3370400b3da289
[gnus] / lisp / spam-report.el
1 ;;; spam-report.el --- Reporting spam
2
3 ;; Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
4
5 ;; Author: Ted Zlatanov <tzz@lifelogs.com>
6 ;; Keywords: network, spam, mail, gmane, report
7
8 ;; This file is part of GNU Emacs.
9
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)
13 ;; any later version.
14
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.
19
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., 51 Franklin Street, Fifth Floor,
23 ;; Boston, MA 02110-1301, USA.
24
25 ;;; Commentary:
26
27 ;;; This module addresses a few aspects of spam reporting under Gnus.  Page
28 ;;; breaks are used for grouping declarations and documentation relating to
29 ;;; each particular aspect.
30
31 ;;; Code:
32 (require 'gnus)
33 (require 'gnus-sum)
34
35 (eval-and-compile
36   (autoload 'mm-url-insert "mm-url"))
37
38 (defgroup spam-report nil
39   "Spam reporting configuration."
40   :group 'mail
41   :group 'news)
42
43 (defcustom spam-report-gmane-regex nil
44   "Regexp matching Gmane newsgroups, e.g. \"^nntp\\+.*:gmane\\.\"
45 If you are using spam.el, consider setting gnus-spam-process-newsgroups
46 or the gnus-group-spam-exit-processor-report-gmane group/topic parameter
47 instead."
48   :type '(radio (const nil)
49                 (regexp :value "^nntp\+.*:gmane\."))
50   :group 'spam-report)
51
52 (defcustom spam-report-gmane-use-article-number t
53   "Whether the article number (faster!) or the header should be used.
54
55 You must set this to nil if you don't read Gmane groups directly
56 from news.gmane.org, e.g. when using local newsserver such as
57 leafnode."
58   :type 'boolean
59   :group 'spam-report)
60
61 (defcustom spam-report-url-ping-function
62   'spam-report-url-ping-plain
63   "Function to use for url ping spam reporting.
64 The function must accept the arguments `host' and `report'."
65   :type '(choice
66           (const :tag "Connect directly"
67                  spam-report-url-ping-plain)
68           (const :tag "Use the external program specified in `mm-url-program'"
69                  spam-report-url-ping-mm-url)
70           (const :tag "Store request URLs in `spam-report-requests-file'"
71                  spam-report-url-to-file)
72           (function :tag "User defined function" nil))
73   :group 'spam-report)
74
75 (defcustom spam-report-requests-file
76   (nnheader-concat gnus-directory "spam/" "spam-report-requests.url")
77   ;; Is there a convention for the extension of such a file?
78   ;; Should we use `spam-directory'?
79   "File where spam report request are stored."
80   :type 'file
81   :group 'spam-report)
82
83 (defcustom spam-report-resend-to nil
84   "Email address that spam articles are resent to when reporting.
85 If not set, the user will be prompted to enter a value which will be
86 saved for future use."
87   :type 'string
88   :group 'spam-report)
89
90 (defvar spam-report-url-ping-temp-agent-function nil
91   "Internal variable for `spam-report-agentize' and `spam-report-deagentize'.
92 This variable will store the value of `spam-report-url-ping-function' from
93 before `spam-report-agentize' was run, so that `spam-report-deagentize' can
94 undo that change.")
95
96 (defun spam-report-resend (articles &optional ham)
97   "Report an article as spam by resending via email.
98 Reports is as ham when HAM is set."
99   (dolist (article articles)
100     (gnus-message 6 
101                   "Reporting %s article %d to <%s>..."
102                   (if ham "ham" "spam")
103                   article spam-report-resend-to)
104     (unless spam-report-resend-to
105       (customize-set-variable 
106        spam-report-resend-to
107        (read-from-minibuffer "email address to resend SPAM/HAM to? ")))
108     ;; This is ganked from the `gnus-summary-resend-message' function.
109     ;; It involves rendering the SPAM, which is undesirable, but there does
110     ;; not seem to be a nicer way to achieve this.
111     ;; select this particular article
112     (gnus-summary-select-article nil nil nil article)
113     ;; resend it to the destination address
114     (save-excursion
115       (set-buffer gnus-original-article-buffer)
116       (message-resend spam-report-resend-to))))
117
118 (defun spam-report-resend-ham (articles)
119   "Report an article as ham by resending via email."
120   (spam-report-resend articles t))
121
122 (defun spam-report-gmane-ham (&rest articles)
123   "Report ARTICLES as ham (unregister) through Gmane."
124   (interactive (gnus-summary-work-articles current-prefix-arg))
125   (dolist (article articles)
126     (spam-report-gmane-internal t article)))
127
128 (defun spam-report-gmane-spam (&rest articles)
129   "Report ARTICLES as spam through Gmane."
130   (interactive (gnus-summary-work-articles current-prefix-arg))
131   (dolist (article articles)
132     (spam-report-gmane-internal nil article)))
133
134 ;; `spam-report-gmane' was an interactive entry point, so we should provide an
135 ;; alias.
136 (defalias 'spam-report-gmane 'spam-report-gmane-spam)
137
138 (defun spam-report-gmane-internal (unspam article)
139   "Report ARTICLE as spam or not-spam through Gmane, depending on UNSPAM."
140   (when (and gnus-newsgroup-name
141              (or (null spam-report-gmane-regex)
142                  (string-match spam-report-gmane-regex gnus-newsgroup-name)))
143     (let ((rpt-host (if unspam "unspam.gmane.org" "spam.gmane.org")))
144       (gnus-message 6 "Reporting article %d to %s..." article rpt-host)
145       (if spam-report-gmane-use-article-number
146           (spam-report-url-ping
147            rpt-host
148            (format "/%s:%d"
149                    (gnus-group-real-name gnus-newsgroup-name)
150                    article))
151         (with-current-buffer nntp-server-buffer
152           (gnus-request-head article gnus-newsgroup-name)
153           (let ((case-fold-search t)
154                 field host report url)
155             ;; First check for X-Report-Spam because it's more specific to
156             ;; spam reporting than Archived-At.  OTOH, all new articles on
157             ;; Gmane don't have X-Report-Spam anymore (unless Lars changes his
158             ;; mind :-)).
159             ;;
160             ;; There might be more than one Archived-At header so we need to
161             ;; find (and transform) the one related to Gmane.
162             (setq field (or (gnus-fetch-field "X-Report-Spam")
163                             (gnus-fetch-field "X-Report-Unspam")
164                             (gnus-fetch-field "Archived-At")))
165             (if (not (stringp field))
166                 (if (and (setq field (gnus-fetch-field "Xref"))
167                          (string-match "[^ ]+ +\\([^ ]+\\)" field))
168                     (setq report (match-string 1 field)
169                           host rpt-host))
170               (setq host
171                     (progn
172                       (string-match
173                        (concat "http://\\([a-z]+\\.gmane\\.org\\)"
174                                "\\(/[^:/]+[:/][0-9]+\\)")
175                        field)
176                       (match-string 1 field)))
177               (setq report (match-string 2 field)))
178             (when host
179               (when (string-equal "permalink.gmane.org" host)
180                 (setq host rpt-host)
181                 (setq report (gnus-replace-in-string
182                               report "/\\([0-9]+\\)$" ":\\1")))
183               (setq url (format "http://%s%s" host report)))
184             (if (not (and host report url))
185                 (gnus-message
186                  3 "Could not find a spam report header in article %d..."
187                  article)
188               (gnus-message 7 "Reporting article through URL %s..." url)
189               (spam-report-url-ping host report))))))))
190
191 (defun spam-report-url-ping (host report)
192   "Ping a host through HTTP, addressing a specific GET resource using
193 the function specified by `spam-report-url-ping-function'."
194   ;; Example:
195   ;; host: "spam.gmane.org"
196   ;; report: "/gmane.some.group:123456"
197   (funcall spam-report-url-ping-function host report))
198
199 (defcustom spam-report-user-mail-address
200   (and (stringp user-mail-address)
201        (gnus-replace-in-string user-mail-address "@" "<at>"))
202   "Mail address of this user used for spam reports to Gmane.
203 This is initialized based on `user-mail-address'."
204   :type '(choice string
205                  (const :tag "Don't expose address" nil))
206   :version "23.0" ;; No Gnus
207   :group 'spam-report)
208
209 (defvar spam-report-user-agent
210   (if spam-report-user-mail-address
211       (format "%s (%s) %s" "spam-report.el"
212               spam-report-user-mail-address
213               (gnus-extended-version))
214     (format "%s %s" "spam-report.el"
215             (gnus-extended-version))))
216
217 (defun spam-report-url-ping-plain (host report)
218   "Ping a host through HTTP, addressing a specific GET resource."
219   (let ((tcp-connection))
220     (with-temp-buffer
221       (or (setq tcp-connection
222                 (open-network-stream
223                  "URL ping"
224                  (buffer-name)
225                  host
226                  80))
227           (error "Could not open connection to %s" host))
228       (set-marker (process-mark tcp-connection) (point-min))
229       (process-send-string
230        tcp-connection
231        (format "GET %s HTTP/1.1\nUser-Agent: %s\nHost: %s\n\n"
232                report spam-report-user-agent host))
233       ;; Wait until we get something so we don't DOS the host. 
234       (while (and (memq (process-status tcp-connection) '(open run))
235                   (zerop (buffer-size)))
236         (accept-process-output tcp-connection)))))
237
238 ;;;###autoload
239 (defun spam-report-process-queue (&optional file keep)
240   "Report all queued requests from `spam-report-requests-file'.
241
242 If FILE is given, use it instead of `spam-report-requests-file'.
243 If KEEP is t, leave old requests in the file.  If KEEP is the
244 symbol `ask', query before flushing the queue file."
245   (interactive
246    (list (read-file-name
247           "File: "
248           (file-name-directory spam-report-requests-file)
249           spam-report-requests-file
250           nil
251           (file-name-nondirectory spam-report-requests-file))
252          current-prefix-arg))
253   (if (eq spam-report-url-ping-function 'spam-report-url-to-file)
254       (error (concat "Cannot process requests when "
255                      "`spam-report-url-ping-function' is "
256                      "`spam-report-url-to-file'."))
257     (gnus-message 7 "Processing requests using `%s'."
258                   spam-report-url-ping-function))
259   (or file (setq file spam-report-requests-file))
260   (save-excursion
261     (set-buffer (find-file-noselect file))
262     (goto-char (point-min))
263     (while (and (not (eobp))
264                 (re-search-forward
265                  "http://\\([^/]+\\)\\(/.*\\) *$" (point-at-eol) t))
266       (funcall spam-report-url-ping-function (match-string 1) (match-string 2))
267       (forward-line 1))
268     (if (or (eq keep nil)
269             (and (eq keep 'ask)
270                  (y-or-n-p
271                   (format
272                    "Flush requests from `%s'? " (current-buffer)))))
273         (progn
274           (gnus-message 7 "Flushing request file `%s'"
275                         spam-report-requests-file)
276           (erase-buffer)
277           (save-buffer)
278           (kill-buffer (current-buffer)))
279       (gnus-message 7 "Keeping requests in `%s'" spam-report-requests-file))))
280
281 ;;;###autoload
282 (defun spam-report-url-ping-mm-url (host report)
283   "Ping a host through HTTP, addressing a specific GET resource. Use
284 the external program specified in `mm-url-program' to connect to
285 server."
286   (with-temp-buffer
287     (let ((url (format "http://%s%s" host report)))
288       (mm-url-insert url t))))
289
290 ;;;###autoload
291 (defun spam-report-url-to-file (host report)
292   "Collect spam report requests in `spam-report-requests-file'.
293 Customize `spam-report-url-ping-function' to use this function."
294   (let ((url (format "http://%s%s" host report))
295         (file spam-report-requests-file))
296     (gnus-make-directory (file-name-directory file))
297     (gnus-message 9 "Writing URL `%s' to file `%s'" url file)
298     (with-temp-buffer
299       (insert url)
300       (newline)
301       (append-to-file (point-min) (point-max) file))))
302
303 ;;;###autoload
304 (defun spam-report-agentize ()
305   "Add spam-report support to the Agent.
306 Spam reports will be queued with \\[spam-report-url-to-file] when
307 the Agent is unplugged, and will be submitted in a batch when the
308 Agent is plugged."
309   (interactive)
310   (add-hook 'gnus-agent-plugged-hook 'spam-report-plug-agent)
311   (add-hook 'gnus-agent-unplugged-hook 'spam-report-unplug-agent))
312
313 ;;;###autoload
314 (defun spam-report-deagentize ()
315   "Remove spam-report support from the Agent.
316 Spam reports will be queued with the method used when
317 \\[spam-report-agentize] was run."
318   (interactive)
319   (remove-hook 'gnus-agent-plugged-hook 'spam-report-plug-agent)
320   (remove-hook 'gnus-agent-unplugged-hook 'spam-report-unplug-agent))
321
322 (defun spam-report-plug-agent ()
323   "Adjust spam report settings for plugged state.
324 Process queued spam reports."
325   ;; Process the queue, unless the user only wanted to report to a file
326   ;; anyway.
327   (unless (equal spam-report-url-ping-temp-agent-function
328                  'spam-report-url-to-file)
329     (spam-report-process-queue))
330   ;; Set the reporting function, if we have memorized something otherwise,
331   ;; stick with plain URL reporting.
332   (setq spam-report-url-ping-function
333         (or spam-report-url-ping-temp-agent-function
334             'spam-report-url-ping-plain)))
335
336 (defun spam-report-unplug-agent ()
337   "Restore spam report settings for unplugged state."
338   ;; save the old value
339   (setq spam-report-url-ping-temp-agent-function
340         spam-report-url-ping-function)
341   ;; store all reports to file
342   (setq spam-report-url-ping-function
343         'spam-report-url-to-file))
344
345 (provide 'spam-report)
346
347 ;;; arch-tag: f6683295-ec89-4ab5-8803-8cc842293022
348 ;;; spam-report.el ends here.