Variable: gnus-browse-subscribe-newsgroup-method

gnus-browse-subscribe-newsgroup-method is a customizable variable defined in gnus-srvr.el.gz.

Value

gnus-subscribe-alphabetically

Documentation

Function(s) called when subscribing groups in the Browse Server Buffer A few pre-made functions are supplied: gnus-subscribe-randomly inserts new groups at the beginning of the list of groups; gnus-subscribe-alphabetically inserts new groups in strict alphabetic order; gnus-subscribe-hierarchically inserts new groups in hierarchical newsgroup order; gnus-subscribe-interactively asks for your decision; gnus-subscribe-killed kills all new groups; gnus-subscribe-zombies will make all new groups into zombies; gnus-subscribe-topics will enter groups into the topics that claim them.

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

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-srvr.el.gz
(defcustom gnus-browse-subscribe-newsgroup-method
  'gnus-subscribe-alphabetically
  "Function(s) called when subscribing groups in the Browse Server Buffer
A few pre-made functions are supplied: `gnus-subscribe-randomly'
inserts new groups at the beginning of the list of groups;
`gnus-subscribe-alphabetically' inserts new groups in strict
alphabetic order; `gnus-subscribe-hierarchically' inserts new groups
in hierarchical newsgroup order; `gnus-subscribe-interactively' asks
for your decision; `gnus-subscribe-killed' kills all new groups;
`gnus-subscribe-zombies' will make all new groups into zombies;
`gnus-subscribe-topics' will enter groups into the topics that
claim them."
  :version "24.1"
  :group 'gnus-server
  :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)))