Function: spam-report-gmane-spam
spam-report-gmane-spam is an interactive and byte-compiled function
defined in spam-report.el.gz.
Signature
(spam-report-gmane-spam &rest ARTICLES)
Documentation
Report ARTICLES as spam through Gmane.
Key Bindings
Aliases
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/spam-report.el.gz
(defun spam-report-gmane-spam (&rest articles)
"Report ARTICLES as spam through Gmane."
(interactive (gnus-summary-work-articles current-prefix-arg)
gnus-summary-mode)
(let ((count 0))
(dolist (article articles)
(setq count (1+ count))
(let ((spam-report-gmane-wait
(zerop (% count spam-report-gmane-max-requests))))
(spam-report-gmane-internal nil article)))))