Variable: mh-show-threads-flag

mh-show-threads-flag is a customizable variable defined in mh-e.el.gz.

Value

nil

Documentation

Non-nil means new folders start in threaded mode.

Threading large number of messages can be time consuming so this option is turned off by default. If you turn this option on, then threading will be done only if the number of messages being threaded is less than mh-large-folder.

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
;;; Threading (:group 'mh-thread)

(defcustom mh-show-threads-flag nil
  "Non-nil means new folders start in threaded mode.

Threading large number of messages can be time consuming so this
option is turned off by default. If you turn this option on, then
threading will be done only if the number of messages being
threaded is less than `mh-large-folder'."
  :type 'boolean
  :group 'mh-thread
  :package-version '(MH-E . "7.1"))