Variable: spam-summary-exit-behavior

spam-summary-exit-behavior is a customizable variable defined in spam.el.gz.

Value

default

Documentation

Exit behavior at the time of summary exit.

Note that setting the spam-use-move or spam-use-copy backends on a group through group/topic parameters overrides this mechanism.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/spam.el.gz
(defcustom spam-summary-exit-behavior 'default
  "Exit behavior at the time of summary exit.
Note that setting the `spam-use-move' or `spam-use-copy' backends on
a group through group/topic parameters overrides this mechanism."
  :type '(choice
          (const
           :tag "Move spam out of all groups and ham out of spam groups"
           default)
          (const
           :tag "Move spam out of all groups and ham out of all groups"
           move-all)
          (const
           :tag "Never move spam or ham out of any groups"
           move-none))
  :group 'spam)