summaryrefslogtreecommitdiff
path: root/gnus.org
diff options
context:
space:
mode:
authorfpi2022-05-13 10:07:50 +0200
committerfpi2022-05-13 10:08:17 +0200
commit5969f30c3899148dc461c50b181718d305de1e68 (patch)
treed4ebf9b460e93c61969e51b99fde0181de92ed1f /gnus.org
parentAdjust gnus loading of secret files (diff)
Add another scoring category
Diffstat (limited to 'gnus.org')
-rw-r--r--gnus.org8
1 files changed, 6 insertions, 2 deletions
diff --git a/gnus.org b/gnus.org
index a293271..6765440 100644
--- a/gnus.org
+++ b/gnus.org
@@ -1,4 +1,4 @@
-#+PROPERTY: header-args:emacs-lisp :tangle tangle/gnus.el :noweb yes
+#+PROPERTY: header-args:emacs-lisp :tangle tangle/gnus.el :noweb yes :tangle-mode (identity #o444)
#+begin_src shell :results silent :tangle tangle/symlink.sh :shebang "#!/bin/bash"
ln -siv $(pwd)/tangle/gnus.el ~/.gnus.el
@@ -192,13 +192,17 @@ To define different scoring files for different groups I set [[info:gnus#Home Sc
#+begin_src emacs-lisp
(setq gnus-home-score-file
'(("misc@" "nntp_gmane.SCORE")
+ ("ieee" "nn_ieee.SCORE")
("^nnimap" "nnimap.SCORE") ;; w/ author scoring
+ ("^INBOX" "nnimap.SCORE") ;; w/ author scoring
("gmane" "nntp_gmane.SCORE") ;; w/ author scoring
("^nntp\\+localhost" "nntp_global.SCORE") ;; w/o author scoring
))
(setq gnus-home-adapt-file
- '(("misc@" "nntp_gmane.SCORE")
+ '(("misc@" "nntp_gmane.ADAPT")
+ ("ieee" "nn_ieee.ADAPT")
("^nnimap" "nnimap.ADAPT")
+ ("^INBOX" "nnimap.ADAPT")
("gmane" "nntp_gmane.ADAPT")
("^nntp\\+localhost" "nntp_global.ADAPT")))
#+end_src