Variable: feedmail-nuke-body-in-fcc
feedmail-nuke-body-in-fcc is a customizable variable defined in
feedmail.el.gz.
Value
nil
Documentation
If non-nil remove body of message in copies saved via Fcc:.
If a positive integer value, leave (up to) that many lines of the beginning of the body intact. The result is that the Fcc: copy will consist only of the message headers, serving as a sort of an outgoing message log.
Source Code
;; Defined in /usr/src/emacs/lisp/mail/feedmail.el.gz
(defcustom feedmail-nuke-body-in-fcc nil
"If non-nil remove body of message in copies saved via Fcc:.
If a positive integer value, leave (up to) that many lines of the
beginning of the body intact. The result is that the Fcc: copy will
consist only of the message headers, serving as a sort of an outgoing
message log."
:group 'feedmail-headers
:type '(choice (const nil) (const t) integer)
)