Variable: gnus-agent-queue-mail

gnus-agent-queue-mail is a customizable variable defined in gnus-agent.el.gz.

Value

t

Documentation

Whether and when outgoing mail should be queued by the agent.

When always, always queue outgoing mail. When nil, never queue. Otherwise, queue if and only if unplugged.

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

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-agent.el.gz
(defcustom gnus-agent-queue-mail t
  "Whether and when outgoing mail should be queued by the agent.
When `always', always queue outgoing mail.  When nil, never
queue.  Otherwise, queue if and only if unplugged."
  :version "22.1"
  :group 'gnus-agent
  :type '(radio (const :format "Always" always)
		(const :format "Never" nil)
		(const :format "When unplugged" t)))