diff options
author | fpi | 2020-09-18 15:54:51 +0200 |
---|---|---|
committer | fpi | 2020-09-18 15:56:22 +0200 |
commit | 8e16453b4a7cd2644ac3a35ea8d7885bfed0846b (patch) | |
tree | f3837ece12f8fd558ff4ccc960e32e3e239d4beb | |
parent | Use IMAP namespaces to distinguish IMAP servers (diff) |
Slim down registry to only mail groups
Diffstat (limited to '')
-rw-r--r-- | gnus.org | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -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 |