Variable: feedmail-message-id-suffix

feedmail-message-id-suffix is a customizable variable defined in feedmail.el.gz.

Value

nil

Documentation

If non-nil, used as a suffix for generating unique Message-Id: headers.

The function feedmail-default-message-id-generator creates its work based on a formatted date-time string, a random number, and a domain-looking suffix. You can control the suffix used by assigning a string value to this variable. If you don't supply one, the value of the variable user-mail-address will be used. If the value of feedmail-message-id-suffix contains an "@" character, the string will be used verbatim, else an "@" character will be prepended automatically.

Source Code

;; Defined in /usr/src/emacs/lisp/mail/feedmail.el.gz
(defcustom feedmail-message-id-suffix nil
  "If non-nil, used as a suffix for generating unique Message-Id: headers.
The function `feedmail-default-message-id-generator' creates its work based
on a formatted date-time string, a random number, and a domain-looking suffix.
You can control the suffix used by assigning a string value to this variable.
If you don't supply one, the value of the variable `user-mail-address' will be
used.  If the value of `feedmail-message-id-suffix' contains an \"@\" character,
the string will be used verbatim, else an \"@\" character will be prepended
automatically."
  :group 'feedmail-headers
  :type '(choice (const nil) string)
  )