Variable: mh-junk-program
mh-junk-program is a customizable variable defined in mh-e.el.gz.
Value
nil
Documentation
Spam program that MH-E should use.
The default setting of this option is "Auto-detect" which means that MH-E will automatically choose one of SpamAssassin, bogofilter, or SpamProbe in that order. If, for example, you have both SpamAssassin and bogofilter installed and you want to use bogofilter, then you can set this option to "Bogofilter".
This variable was added, or its default value changed, in MH-E version
7.3.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-e.el.gz
(defcustom-mh mh-junk-program nil
"Spam program that MH-E should use.
The default setting of this option is \"Auto-detect\" which means
that MH-E will automatically choose one of SpamAssassin,
bogofilter, or SpamProbe in that order. If, for example, you have
both SpamAssassin and bogofilter installed and you want to use
bogofilter, then you can set this option to \"Bogofilter\"."
:type '(choice (const :tag "Auto-detect" nil)
(const :tag "SpamAssassin" spamassassin)
(const :tag "Bogofilter" bogofilter)
(const :tag "SpamProbe" spamprobe))
:set #'mh-junk-choose
:group 'mh-junk
:package-version '(MH-E . "7.3"))