Function: spam-stat-register-spam-routine
spam-stat-register-spam-routine is a byte-compiled function defined in
spam.el.gz.
Signature
(spam-stat-register-spam-routine ARTICLES &optional UNREGISTER)
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/spam.el.gz
(defun spam-stat-register-spam-routine (articles &optional unregister)
(dolist (article articles)
(let ((article-string (spam-get-article-as-string article)))
(with-temp-buffer
(insert article-string)
(if unregister
(spam-stat-buffer-change-to-non-spam)
(spam-stat-buffer-is-spam))))))