Function: spam-crm114-score
spam-crm114-score is an interactive and byte-compiled function defined
in spam.el.gz.
Signature
(spam-crm114-score)
Documentation
Get the CRM114 Mailfilter pR.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/spam.el.gz
;; return something sensible if the score can't be determined
(defun spam-crm114-score ()
"Get the CRM114 Mailfilter pR."
(interactive nil gnus-summary-mode)
(save-window-excursion
(gnus-summary-show-article t)
(set-buffer gnus-article-buffer)
(let ((score (or (spam-check-crm114-headers t)
(spam-check-crm114 t))))
(gnus-summary-show-article)
(message "pR: %s" score)
(or score "0"))))