Variable: gnus-inhibit-slow-scoring
gnus-inhibit-slow-scoring is a customizable variable defined in
gnus-score.el.gz.
Value
nil
Documentation
Inhibit slow scoring, e.g. scoring on headers or body.
If a regexp, scoring on headers or body is inhibited if the group matches the regexp. If it is t, scoring on headers or body is inhibited for all groups.
This variable was added, or its default value changed, in Emacs 23.1.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-score.el.gz
(defcustom gnus-inhibit-slow-scoring nil
"Inhibit slow scoring, e.g. scoring on headers or body.
If a regexp, scoring on headers or body is inhibited if the group
matches the regexp. If it is t, scoring on headers or body is
inhibited for all groups."
:group 'gnus-score-various
:version "23.1" ;; No Gnus
:type '(choice (const :tag "All" nil)
(const :tag "None" t)
regexp))