Variable: feedmail-queue-use-send-time-for-message-id

feedmail-queue-use-send-time-for-message-id is a customizable variable defined in feedmail.el.gz.

Value

nil

Documentation

If non-nil, use send time for the Message-Id: header value.

This variable is used by the default Message-Id: generating function, feedmail-default-message-id-generator. If nil, the default, the last-modified timestamp of the queue file is used to create the message Message-Id: header; if there is no queue file, the current time is used. If you are using VM, it might be supplying this header for you. To suppress VM's version

(setq vm-mail-header-insert-date nil)

Source Code

;; Defined in /usr/src/emacs/lisp/mail/feedmail.el.gz
(defcustom feedmail-queue-use-send-time-for-message-id nil
  "If non-nil, use send time for the Message-Id: header value.
This variable is used by the default Message-Id: generating function,
`feedmail-default-message-id-generator'.  If nil, the default, the
last-modified timestamp of the queue file is used to create the
message Message-Id: header; if there is no queue file, the current time is
used.  If you are using VM, it might be supplying this header for
you.  To suppress VM's version

	(setq vm-mail-header-insert-date nil)"
  :group 'feedmail-queue
  :type 'boolean
  )