Variable: gnus-subscribe-options-newsgroup-method

gnus-subscribe-options-newsgroup-method is a customizable variable defined in gnus-start.el.gz.

Value

gnus-subscribe-alphabetically

Documentation

Function(s) called to subscribe newsgroups mentioned on "options -n" lines.

If, for instance, you want to subscribe to all newsgroups in the
"no" and "alt" hierarchies, you'd put the following in your
.newsrc file:

options -n no.all alt.all

Gnus will then subscribe all new newsgroups in these hierarchies with the subscription method in this variable.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-start.el.gz
(defcustom gnus-subscribe-options-newsgroup-method
  'gnus-subscribe-alphabetically
  "Function(s) called to subscribe newsgroups mentioned on \"options -n\" lines.
If, for instance, you want to subscribe to all newsgroups in the
\"no\" and \"alt\" hierarchies, you'd put the following in your
.newsrc file:

options -n no.all alt.all

Gnus will then subscribe all new newsgroups in these hierarchies
with the subscription method in this variable."
  :group 'gnus-group-new
  :type '(radio (function-item gnus-subscribe-randomly)
		(function-item gnus-subscribe-alphabetically)
		(function-item gnus-subscribe-hierarchically)
		(function-item gnus-subscribe-interactively)
		(function-item gnus-subscribe-killed)
		(function-item gnus-subscribe-zombies)
		(function-item gnus-subscribe-topics)
		function
		(repeat function)))