Variable: spam-junk-mailgroups

spam-junk-mailgroups is a customizable variable defined in spam.el.gz.

Value

("spam" "mail.junk" "poste.pourriel")

Documentation

Mailgroups with spam contents.

All unmarked article in such group receive the spam mark on group entry.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/spam.el.gz
;; TODO: deprecate this variable, it's confusing since it's a list of strings,
;; not regular expressions
(defcustom spam-junk-mailgroups (cons
                                 spam-split-group
                                 '("mail.junk" "poste.pourriel"))
  "Mailgroups with spam contents.
All unmarked article in such group receive the spam mark on group entry."
  :type '(repeat (string :tag "Group"))
  :group 'spam)