Function: spam-enter-whitelist

spam-enter-whitelist is an interactive and byte-compiled function defined in spam.el.gz.

Signature

(spam-enter-whitelist ADDRESS &optional REMOVE)

Documentation

Enter ADDRESS (list or single) into the whitelist.

With a non-nil REMOVE, remove them.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/spam.el.gz
;; address can be a list, too
(defun spam-enter-whitelist (address &optional remove)
  "Enter ADDRESS (list or single) into the whitelist.
With a non-nil REMOVE, remove them."
  (interactive "sAddress: ")
  (spam-enter-list address spam-whitelist remove)
  (setq spam-whitelist-cache nil)
  (spam-clear-cache 'spam-use-whitelist))