• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/emacs-93/emacs/lisp/gnus/

Lines Matching +defs:all +defs:headers

133 When nil, all unread articles in a spam group are marked as
156 "Should spam.el recheck all meessages when autodetecting?
197 Exclusive whitelisting means that all messages from senders not in the whitelist
212 (defcustom spam-use-regex-headers nil
214 Also see the variables `spam-regex-headers-spam' and `spam-regex-headers-ham'."
224 (defcustom spam-use-bogofilter-headers nil
225 "Whether bogofilter headers should be used by `spam-split'.
243 Exclusive BBDB means that all messages from senders not in the BBDB are
270 spam-use-regex-headers
272 spam-use-bogofilter-headers
330 (defcustom spam-regex-headers-spam '("^X-Spam-Flag: YES")
335 (defcustom spam-regex-headers-ham '("^X-Spam-Flag: NO")
382 (defcustom spam-ifile-all-categories nil
383 "Whether the ifile check will return all categories, or just spam.
612 ;; first of all, unregister any articles that are no longer ham or spam
638 ;; find all the spam processors applicable to this group
665 ;; find all the ham processors applicable to this group
679 ;; now move all ham articles out of spam groups
866 (spam-use-regex-headers . spam-check-regex-headers)
875 (spam-use-bogofilter-headers . spam-check-bogofilter-headers)
897 "The spam-list-of-statistical-checks list contains all the mail
938 ;; if we got a decision at all, save the current check
1120 ;; now log all the registrations (or undo them, depending on unregister)
1214 (let ((spam-regex-headers-ham spam-regex-body-ham)
1215 (spam-regex-headers-spam spam-regex-body-spam))
1216 (spam-check-regex-headers t)))
1220 ;;;; Regex headers
1222 (defun spam-check-regex-headers (&optional body)
1228 (dolist (h-regex spam-regex-headers-ham)
1234 (dolist (s-regex spam-regex-headers-spam)
1254 "Check the Received headers for blackholed relays."
1255 (let ((headers (nnmail-fetch-field "received"))
1260 (when headers
1262 (insert headers)
1264 (gnus-message 5 "Checking headers for relay addresses")
1305 "Check the headers for hashcash payments."
1316 ;; all this is done inside a condition-case to trap errors
1416 (if spam-ifile-all-categories
1418 ;; else, if spam-ifile-all-categories is not set...
1652 (funcall enter-function addresses t) ; unregister all these addresses
1685 (defun spam-check-bogofilter-headers (&optional score)
1707 (let ((score (or (spam-check-bogofilter-headers t)
1727 (setq return (spam-check-bogofilter-headers score))))