diff options
author | fpi | 2020-05-09 13:41:46 +0200 |
---|---|---|
committer | fpi | 2020-05-09 13:50:15 +0200 |
commit | dfe5a0cc71cb8c14aee7003423a53a1f49615f19 (patch) | |
tree | 5ee8c73fa558e9fdeff9fedad43b6769cf750450 | |
parent | Dont fetch large attachments before text (diff) |
New handlers to fetch level 4 and 5 news
-rw-r--r-- | gnus.org | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -164,11 +164,16 @@ Background fetching for gnus. See the manual and [[https://www.emacswiki.org/ema (gnus-demon-scan-news-level 2 nil)) (defun gnus-demon-scan-news-3 () (gnus-demon-scan-news-level 3 t)) +(defun gnus-demon-scan-news-4 () + (gnus-demon-scan-news-level 4 t)) +(defun gnus-demon-scan-news-5 () + (gnus-demon-scan-news-level 5 t)) (setq gnus-demon-timestep 10) (gnus-demon-add-handler 'gnus-demon-scan-news-2 3 nil) -(gnus-demon-add-handler 'gnus-demon-scan-news-3 360 nil) -(gnus-demon-add-handler 'gnus-demon-scan-news-3 60 1) +(gnus-demon-add-handler 'gnus-demon-scan-news-3 60 t) +(gnus-demon-add-handler 'gnus-demon-scan-news-4 130 1) +(gnus-demon-add-handler 'gnus-demon-scan-news-5 140 1) #+end_src ** Modeline indicator From the [[https://www.emacswiki.org/emacs/GnusNotify][emacswiki Gnus Notify]]. |