Variable: gnus-extra-group-parameters
gnus-extra-group-parameters is a variable defined in gnus-cus.el.gz.
Value
((uidvalidity
(string :tag "IMAP uidvalidity")
"Server-assigned value attached to IMAP groups, used to maintain consistency.")
(modseq
(choice :tag "modseq"
(const :tag "None" nil)
(string :tag "Sequence number"))
"Modification sequence number")
(active
(cons :tag "active"
(integer :tag "min")
(integer :tag "max"))
"active")
(permanent-flags
(repeat :tag "Permanent Flags"
(symbol :tag "Flag"))
"Permanent Flags"))
Documentation
Alist of group parameters that are not also topic 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-group-parameters
'((uidvalidity (string :tag "IMAP uidvalidity") "\
Server-assigned value attached to IMAP groups, used to maintain consistency.")
(modseq (choice :tag "modseq"
(const :tag "None" nil)
(string :tag "Sequence number"))
"Modification sequence number")
(active (cons :tag "active" (integer :tag "min") (integer :tag "max"))
"active")
(permanent-flags (repeat :tag "Permanent Flags" (symbol :tag "Flag"))
"Permanent Flags"))
"Alist of group parameters that are not also topic 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.")