Variable: gnus-useful-groups
gnus-useful-groups is a customizable variable defined in
gnus-group.el.gz.
Value
(("(ding) mailing list mirrored at gmane.io"
"gmane.emacs.gnus.general"
(nntp "Gmane" (nntp-address "news.gmane.io")))
("Gnus bug archive" "gnus.gnus-bug"
(nntp "news.gnus.org" (nntp-address "news.gnus.org")))
("Local Gnus help group" "gnus-help"
(nndoc "gnus-help" (nndoc-article-type mbox)
(eval
`(nndoc-address
,(let
((file (nnheader-find-etc-directory "gnus-tut.txt" t)))
(unless file (error "Couldn't find doc group")) file))))))
Documentation
Alist of useful group-server pairs.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-group.el.gz
(defcustom gnus-useful-groups
'(("(ding) mailing list mirrored at gmane.io"
"gmane.emacs.gnus.general"
(nntp "Gmane"
(nntp-address "news.gmane.io")))
("Gnus bug archive"
"gnus.gnus-bug"
(nntp "news.gnus.org"
(nntp-address "news.gnus.org")))
("Local Gnus help group"
"gnus-help"
(nndoc "gnus-help"
(nndoc-article-type mbox)
(eval `(nndoc-address
,(let ((file (nnheader-find-etc-directory
"gnus-tut.txt" t)))
(unless file
(error "Couldn't find doc group"))
file))))))
"Alist of useful group-server pairs."
:group 'gnus-group-listing
:type '(repeat (list (string :tag "Description")
(string :tag "Name")
(sexp :tag "Method"))))