Variable: gnus-extra-topic-parameters

gnus-extra-topic-parameters is a variable defined in gnus-cus.el.gz.

Value

((subscribe
  (regexp :tag "Subscribe")
  "If `gnus-subscribe-newsgroup-method' or\n`gnus-subscribe-options-newsgroup-method' is set to\n`gnus-subscribe-topics', new groups that matches this regexp will\nautomatically be subscribed to this topic")
 (subscribe-level
  (integer :tag "Subscribe Level" :value 1)
  "If this topic parameter is set, when new groups are subscribed\nautomatically under this topic (via the `subscribe' topic parameter)\nassign this level to the group, rather than the default level\nset in `gnus-level-default-subscribed'"))

Documentation

Alist of topic parameters that are not also group parameters.

Each entry has the form (NAME TYPE DOC), where NAME is the parameter itself (a symbol), TYPE is the parameters type (a sexp widget), and DOC is a documentation string for the parameter.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-cus.el.gz
(defconst gnus-extra-topic-parameters
  '((subscribe (regexp :tag "Subscribe") "\
If `gnus-subscribe-newsgroup-method' or
`gnus-subscribe-options-newsgroup-method' is set to
`gnus-subscribe-topics', new groups that matches this regexp will
automatically be subscribed to this topic")
    (subscribe-level (integer :tag "Subscribe Level" :value 1) "\
If this topic parameter is set, when new groups are subscribed
automatically under this topic (via the `subscribe' topic parameter)
assign this level to the group, rather than the default level
set in `gnus-level-default-subscribed'"))
  "Alist of topic parameters that are not also group parameters.

Each entry has the form (NAME TYPE DOC), where NAME is the parameter
itself (a symbol), TYPE is the parameters type (a sexp widget), and
DOC is a documentation string for the parameter.")