Variable: feedmail-confirm-outgoing

feedmail-confirm-outgoing is a customizable variable defined in feedmail.el.gz.

Value

nil

Documentation

If non-nil, give a y-or-n confirmation prompt before sending mail.

This is done after the message is completely prepped, and you'll be looking at the top of the message in a buffer when you get the prompt. If set to the symbol queued, give the confirmation prompt only while running the queue (however, the prompt is always suppressed if you are processing the queue via feedmail-run-the-queue-no-prompts). If set to the symbol immediate, give the confirmation prompt only when sending immediately. For any other non-nil value, prompt in both cases. You can give a timeout for the prompt; see variable feedmail-confirm-outgoing-timeout.

Source Code

;; Defined in /usr/src/emacs/lisp/mail/feedmail.el.gz
(defcustom feedmail-confirm-outgoing nil
  "If non-nil, give a y-or-n confirmation prompt before sending mail.
This is done after the message is completely prepped, and you'll be
looking at the top of the message in a buffer when you get the prompt.
If set to the symbol `queued', give the confirmation prompt only while
running the queue (however, the prompt is always suppressed if you are
processing the queue via `feedmail-run-the-queue-no-prompts').  If set
to the symbol `immediate', give the confirmation prompt only when
sending immediately.  For any other non-nil value, prompt in both
cases.  You can give a timeout for the prompt; see variable
`feedmail-confirm-outgoing-timeout'."
  :group 'feedmail-misc
  :type '(choice (const nil)
		 (const queued)
		 (const immediate)
		 (other t)))