Function: spam-necessary-extra-headers
spam-necessary-extra-headers is a byte-compiled function defined in
spam.el.gz.
Signature
(spam-necessary-extra-headers)
Documentation
Return the extra headers spam.el thinks are necessary.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/spam.el.gz
;;}}}
;;{{{ scoring and summary formatting
(defun spam-necessary-extra-headers ()
"Return the extra headers spam.el thinks are necessary."
(let (list)
(when (or spam-use-spamassassin
spam-use-spamassassin-headers
spam-use-regex-headers)
(push 'X-Spam-Status list))
(when (or spam-use-bogofilter
spam-use-regex-headers)
(push 'X-Bogosity list))
(when (or spam-use-crm114
spam-use-regex-headers)
(push 'X-CRM114-Status list))
list))