summaryrefslogtreecommitdiff
path: root/gnus.org
diff options
context:
space:
mode:
Diffstat (limited to 'gnus.org')
-rw-r--r--gnus.org15
1 files changed, 15 insertions, 0 deletions
diff --git a/gnus.org b/gnus.org
index 990eac0..d5556d9 100644
--- a/gnus.org
+++ b/gnus.org
@@ -233,6 +233,21 @@ Use the [[info:gnus#The Gnus Registry][Gnus Registry]]. This is required to use
#+begin_src emacs-lisp
(gnus-registry-initialize)
#+end_src
+Remove some groups from being saved to the registry
+#+begin_src emacs-lisp
+(setq gnus-registry-split-strategy 'majority)
+(setq gnus-registry-ignored-groups
+ '(("^nnreddit" t)
+ ("^nntp" t)
+ ("delayed$" t)
+ ("drafts$" t)
+ ("queue$" t)
+ ("INBOX$" t)
+ ("^nnmairix:" t)
+ ("^nnir:" t)
+ ("archive" t)
+ ))
+#+end_src
#+begin_src emacs-lisp :tangle no :noweb-ref secondary-select-methods
(add-to-list 'gnus-secondary-select-methods '(nngnorb "Gnorb server"))
#+end_src