Variable: mh-store-default-directory

mh-store-default-directory is a customizable variable defined in mh-e.el.gz.

Value

nil

Documentation

Default directory for X u (mh-store-msg).

If you would like to change the initial default directory, customize this option, change the value from "Current" to
"Directory", and then enter the name of the directory for storing
the content of these messages.

This variable was added, or its default value changed, in MH-E version
6.0.

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-e.el.gz
(defcustom mh-store-default-directory nil
  "Default directory for \\<mh-folder-mode-map>\\[mh-store-msg].

If you would like to change the initial default directory,
customize this option, change the value from \"Current\" to
\"Directory\", and then enter the name of the directory for storing
the content of these messages."
  :type '(choice (const :tag "Current" nil)
                 directory)
  :group 'mh-show
  :package-version '(MH-E . "6.0"))