Function: spam-report-gmane-ham

spam-report-gmane-ham is an interactive and byte-compiled function defined in spam-report.el.gz.

Signature

(spam-report-gmane-ham &rest ARTICLES)

Documentation

Report ARTICLES as ham (unregister) through Gmane.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/spam-report.el.gz
(defun spam-report-gmane-ham (&rest articles)
  "Report ARTICLES as ham (unregister) 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 t article)))))