Function: spam-enter-blacklist

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

Signature

(spam-enter-blacklist ADDRESS &optional REMOVE)

Documentation

Enter ADDRESS (list or single) into the blacklist.

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-blacklist (address &optional remove)
  "Enter ADDRESS (list or single) into the blacklist.
With a non-nil REMOVE, remove them."
  (interactive "sAddress: ")
  (spam-enter-list address spam-blacklist remove)
  (setq spam-blacklist-cache nil)
  (spam-clear-cache 'spam-use-whitelist))