Variable: gnus-server-unopen-status

gnus-server-unopen-status is a customizable variable defined in gnus-int.el.gz.

Value

nil

Documentation

The default status if the server is not able to open.

If the server is covered by Gnus agent, the possible values are denied, set the server denied; offline, set the server offline; nil, ask user. If the server is not covered by Gnus agent, set the server denied.

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

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-int.el.gz
(defcustom gnus-server-unopen-status nil
  "The default status if the server is not able to open.
If the server is covered by Gnus agent, the possible values are
`denied', set the server denied; `offline', set the server offline;
nil, ask user.  If the server is not covered by Gnus agent, set the
server denied."
  :version "22.1"
  :group 'gnus-start
  :type '(choice (const :tag "Ask" nil)
		 (const :tag "Deny server" denied)
		 (const :tag "Unplug Agent" offline)))