Variable: mh-default-folder-for-message-function

mh-default-folder-for-message-function is a customizable variable defined in mh-e.el.gz.

Value

nil

Documentation

Function to select a default folder for refiling or "Fcc:".

When this function is called, the current buffer contains the message being refiled and point is at the start of the message. This function should return the default folder as a string with a leading "+" sign. It can also return nil so that the last folder name is used as the default, or an empty string to suppress the default entirely.

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
;;; Folder Selection (:group 'mh-folder-selection)

(defcustom-mh mh-default-folder-for-message-function nil
  "Function to select a default folder for refiling or \"Fcc:\".

When this function is called, the current buffer contains the message
being refiled and point is at the start of the message. This function
should return the default folder as a string with a leading \"+\"
sign. It can also return nil so that the last folder name is used as
the default, or an empty string to suppress the default entirely."
  :type '(choice (const nil) function)
  :group 'mh-folder-selection
  :package-version '(MH-E . "8.0"))