Variable: feedmail-display-full-frame

feedmail-display-full-frame is a customizable variable defined in feedmail.el.gz.

Value

queued

Documentation

If non-nil, show prepped messages in a full frame.

If nil, the prepped message will be shown, for confirmation or otherwise, in some window in the current frame without resizing anything. That may or may not display enough of the message to distinguish it from others. If set to the symbol queued, take this action only when running the queue. If set to the symbol immediate, take this action only when sending immediately. For any other non-nil value, take the action in both cases. Even if you're not confirming the sending of immediate or queued messages, it can still be interesting to see a lot about them as they are shuttled robotically onward.

This variable was added, or its default value changed, in Emacs 24.1.

Source Code

;; Defined in /usr/src/emacs/lisp/mail/feedmail.el.gz
(defcustom feedmail-display-full-frame 'queued
  "If non-nil, show prepped messages in a full frame.
If nil, the prepped message will be shown, for confirmation or
otherwise, in some window in the current frame without resizing
anything.  That may or may not display enough of the message to
distinguish it from others.  If set to the symbol `queued', take
this action only when running the queue.  If set to the symbol
`immediate', take this action only when sending immediately.  For
any other non-nil value, take the action in both cases.  Even if
you're not confirming the sending of immediate or queued messages,
it can still be interesting to see a lot about them as they are
shuttled robotically onward."
  :version "24.1"
  :group 'feedmail-misc
  :type '(choice (const nil)
		 (const queued)
		 (const immediate)
		 (other t)))