Variable: gnus-registry-unfollowed-groups

gnus-registry-unfollowed-groups is a customizable variable defined in gnus-registry.el.gz.

Value

("delayed$" "drafts$" "queue$" "INBOX$" "^nnmairix:" "archive")

Documentation

List of groups that gnus-registry-split-fancy-with-parent won't return.

The group names are matched, they don't have to be fully qualified. This parameter tells the Gnus registry never split a message into a group that matches one of these, regardless of references.

nnmairix groups are specifically excluded because they are ephemeral.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-registry.el.gz
(defcustom gnus-registry-unfollowed-groups
  '("delayed$" "drafts$" "queue$" "INBOX$" "^nnmairix:" "archive")
  "List of groups that gnus-registry-split-fancy-with-parent won't return.
The group names are matched, they don't have to be fully
qualified.  This parameter tells the Gnus registry `never split a
message into a group that matches one of these, regardless of
references.'

nnmairix groups are specifically excluded because they are ephemeral."
  :type '(repeat regexp))