Function: gnus-parameter-registry-ignore

gnus-parameter-registry-ignore is a byte-compiled function defined in gnus.el.gz.

Signature

(gnus-parameter-registry-ignore NAME)

Documentation

Whether this group should be ignored by the registry.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus.el.gz
;; The Gnus registry's ignored groups
(gnus-define-group-parameter
 registry-ignore
 :type list
 :function-document
 "Whether this group should be ignored by the registry."
 :variable gnus-registry-ignored-groups
 :variable-default (mapcar
                    (lambda (g) (list g t))
                    '("delayed$" "drafts$" "queue$" "INBOX$"
                      "^nnmairix:" "^nnselect:" "archive"))
 :variable-document
 "Groups in which the registry should be turned off."
 :variable-group gnus-registry
 :variable-type '(repeat
		  (list
		   (regexp :tag "Group Name Regular Expression")
		   (boolean :tag "Ignored")))

 :parameter-type '(boolean :tag "Group Ignored by the Registry")
 :parameter-document
 "Whether the Gnus Registry should ignore this group.")