Variable: mh-default-folder-list
mh-default-folder-list is a customizable variable defined in
mh-e.el.gz.
Value
nil
Documentation
List of addresses and folders.
The folder name associated with the first address found in this
list is used as the default for mh-refile-msg and similar
functions. Each element in this list contains a "Check Recipient"
item. If this item is turned on, then the address is checked
against the recipient instead of the sender. This is useful for
mailing lists.
See mh-prompt-for-refile-folder and mh-folder-from-address
for more information.
This variable was added, or its default value changed, in MH-E version
7.2.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-e.el.gz
(defcustom mh-default-folder-list nil
"List of addresses and folders.
The folder name associated with the first address found in this
list is used as the default for `mh-refile-msg' and similar
functions. Each element in this list contains a \"Check Recipient\"
item. If this item is turned on, then the address is checked
against the recipient instead of the sender. This is useful for
mailing lists.
See `mh-prompt-for-refile-folder' and `mh-folder-from-address'
for more information."
:type '(repeat (list (regexp :tag "Address")
(string :tag "Folder")
(boolean :tag "Check Recipient")))
:group 'mh-folder-selection
:package-version '(MH-E . "7.2"))