Variable: rsf-white-list

rsf-white-list is a customizable variable defined in rmail-spam-filter.el.gz.

Value

nil

Documentation

List of regexps to identify valid senders.

If any element matches the "From" header, the message is flagged as a valid, non-spam message. E.g., if your domain is
"emacs.com" then including "emacs\\\\.com" in this list would
flag all mail (purporting to be) from your colleagues as valid.

Source Code

;; Defined in /usr/src/emacs/lisp/mail/rmail-spam-filter.el.gz
(defcustom rsf-white-list nil
  "List of regexps to identify valid senders.
If any element matches the \"From\" header, the message is
flagged as a valid, non-spam message.  E.g., if your domain is
\"emacs.com\" then including \"emacs\\\\.com\" in this list would
flag all mail (purporting to be) from your colleagues as valid."
  :type '(repeat regexp))