Variable: gnus-secondary-select-methods

gnus-secondary-select-methods is a customizable variable defined in gnus.el.gz.

Value

nil

Documentation

A list of secondary methods that will be used for reading news.

This is a list where each element is a complete select method (see gnus-select-method).

If, for instance, you want to read your mail with the nnml back end, you could set this variable:

(setq gnus-secondary-select-methods '((nnml "")))

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus.el.gz
(defcustom gnus-secondary-select-methods nil
  "A list of secondary methods that will be used for reading news.
This is a list where each element is a complete select method (see
`gnus-select-method').

If, for instance, you want to read your mail with the nnml back end,
you could set this variable:

\(setq gnus-secondary-select-methods \\='((nnml \"\")))"
  :group 'gnus-server
  :type '(repeat gnus-select-method))