Variable: mh-new-messages-folders
mh-new-messages-folders is a customizable variable defined in
mh-e.el.gz.
Value
t
Documentation
Folders searched for the "unseen" sequence.
Set this option to "Inbox" to search the "+inbox" folder or
"All" to search all of the top level folders. Otherwise, list
the folders that should be searched with the "Choose Folders"
menu item.
See also mh-recursive-folders-flag.
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
;;; Organizing Your Mail with Folders (:group 'mh-folder)
(defcustom mh-new-messages-folders t
"Folders searched for the \"unseen\" sequence.
Set this option to \"Inbox\" to search the \"+inbox\" folder or
\"All\" to search all of the top level folders. Otherwise, list
the folders that should be searched with the \"Choose Folders\"
menu item.
See also `mh-recursive-folders-flag'."
:type '(choice (const :tag "Inbox" t)
(const :tag "All" nil)
(repeat :tag "Choose Folders" (string :tag "Folder")))
:group 'mh-folder
:package-version '(MH-E . "8.0"))