Variable: mh-mime-save-parts-default-directory
mh-mime-save-parts-default-directory is a customizable variable
defined in mh-e.el.gz.
Value
t
Documentation
Default directory to use for K a (mh-mime-save-parts).
The default value for this option is "Prompt Always" so that you are always prompted for the directory in which to save the attachments. However, if you usually use the same directory within a session, then you can set this option to "Prompt the First Time" to avoid the prompt each time. you can make this directory permanent by choosing "Directory" and entering the directory's name.
This variable was added, or its default value changed, in MH-E version
7.0.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-e.el.gz
(defcustom-mh mh-mime-save-parts-default-directory t
"Default directory to use for \\<mh-folder-mode-map>\\[mh-mime-save-parts].
The default value for this option is \"Prompt Always\" so that
you are always prompted for the directory in which to save the
attachments. However, if you usually use the same directory
within a session, then you can set this option to \"Prompt the
First Time\" to avoid the prompt each time. you can make this
directory permanent by choosing \"Directory\" and entering the
directory's name."
:type '(choice (const :tag "Prompt the First Time" nil)
(const :tag "Prompt Always" t)
directory)
:group 'mh-show
:package-version '(MH-E . "7.0"))