Variable: mh-search-program
mh-search-program is a customizable variable defined in mh-e.el.gz.
Value
nil
Documentation
Search program that MH-E shall use.
The default setting of this option is "Auto-detect" which means that MH-E will automatically choose one of swish++, swish-e, mairix, namazu, pick and grep in that order. If, for example, you have both swish++ and mairix installed and you want to use mairix, then you can set this option to "mairix".
More information about setting up an indexing program to use with
MH-E can be found in the documentation of mh-search.
This variable was added, or its default value changed, in MH-E version
8.0.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-e.el.gz
;;; Searching (:group 'mh-search)
(defcustom mh-search-program nil
"Search program that MH-E shall use.
The default setting of this option is \"Auto-detect\" which means
that MH-E will automatically choose one of swish++, swish-e,
mairix, namazu, pick and grep in that order. If, for example, you
have both swish++ and mairix installed and you want to use
mairix, then you can set this option to \"mairix\".
More information about setting up an indexing program to use with
MH-E can be found in the documentation of `mh-search'."
:type '(choice (const :tag "Auto-detect" nil)
(const :tag "swish++" swish++)
(const :tag "swish-e" swish)
(const :tag "mairix" mairix)
(const :tag "namazu" namazu)
(const :tag "pick" pick)
(const :tag "grep" grep))
:group 'mh-search
:package-version '(MH-E . "8.0"))