Variable: mh-refile-preserves-sequences-flag
mh-refile-preserves-sequences-flag is a customizable variable defined
in mh-e.el.gz.
Value
t
Documentation
Non-nil means that sequences are preserved when messages are refiled.
If a message is in any sequence (except "Previous-Sequence:" and "cur") when it is refiled, then it will still be in those sequences in the destination folder. If this behavior is not desired, then turn off this option.
This variable was added, or its default value changed, in MH-E version
7.4.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-e.el.gz
;;; Sequences (:group 'mh-sequences)
;; If `mh-unpropagated-sequences' becomes a defcustom, add the following to
;; the docstring: "Additional sequences that should not to be preserved can be
;; specified by setting `mh-unpropagated-sequences' appropriately." XXX
(defcustom mh-refile-preserves-sequences-flag t
"Non-nil means that sequences are preserved when messages are refiled.
If a message is in any sequence (except \"Previous-Sequence:\"
and \"cur\") when it is refiled, then it will still be in those
sequences in the destination folder. If this behavior is not
desired, then turn off this option."
:type 'boolean
:group 'mh-sequences
:package-version '(MH-E . "7.4"))