Variable: gnus-default-nntp-server

gnus-default-nntp-server is a customizable variable defined in gnus.el.gz.

Value

nil

Documentation

The hostname of the default NNTP server.

The empty string, or nil, means to use the local host. You may wish to set this on a site-wide basis.

If you want to change servers, you should use gnus-select-method.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus.el.gz
;; Site dependent variables.

;; Should this be obsolete?
(defcustom gnus-default-nntp-server nil
  "The hostname of the default NNTP server.
The empty string, or nil, means to use the local host.
You may wish to set this on a site-wide basis.

If you want to change servers, you should use `gnus-select-method'."
  :group 'gnus-server
  :type '(choice (const :tag "local host" nil)
                 (string :tag "host name")))