Variable: feedmail-fill-to-cc

feedmail-fill-to-cc is a customizable variable defined in feedmail.el.gz.

Value

t

Documentation

If non-nil do smart filling of addressee header lines.

Smart filling means breaking long lines at appropriate points and making continuation lines. Despite the function name, it includes To:, Cc:, Bcc: (and their Resent-* forms), as well as From: and Reply-To: (though they seldom need it). If nil, the lines are left as-is. The filling is done after mail address alias expansion.

Source Code

;; Defined in /usr/src/emacs/lisp/mail/feedmail.el.gz
(defcustom feedmail-fill-to-cc t
  "If non-nil do smart filling of addressee header lines.
Smart filling means breaking long lines at appropriate points and
making continuation lines.  Despite the function name, it includes
To:, Cc:, Bcc: (and their Resent-* forms), as well as From: and
Reply-To: (though they seldom need it).  If nil, the lines are left
as-is.  The filling is done after mail address alias expansion."
  :group 'feedmail-headers
  :type 'boolean
  )