Variable: mh-alias-insert-file
mh-alias-insert-file is a customizable variable defined in mh-e.el.gz.
Value
nil
Documentation
Filename used to store a new MH-E alias.
The default setting of this option is "Use Aliasfile Profile Component". This option can also hold the name of a file or a list a file names. If this option is set to a list of file names, or the "Aliasfile:" profile component contains more than one file name, MH-E will prompt for one of them when MH-E adds an alias.
This variable was added, or its default value changed, in MH-E version
7.1.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-e.el.gz
(defcustom mh-alias-insert-file nil
"Filename used to store a new MH-E alias.
The default setting of this option is \"Use Aliasfile Profile
Component\". This option can also hold the name of a file or a
list a file names. If this option is set to a list of file names,
or the \"Aliasfile:\" profile component contains more than one file
name, MH-E will prompt for one of them when MH-E adds an alias."
:type '(choice (const :tag "Use Aliasfile Profile Component" nil)
(file :tag "Alias File")
(repeat :tag "List of Alias Files" file))
:group 'mh-alias
:package-version '(MH-E . "7.1"))