diff options
author | JSDurand <mmemmew@gmail.com> | 2023-06-18 00:19:35 +0800 |
---|---|---|
committer | JSDurand <mmemmew@gmail.com> | 2023-06-18 00:19:35 +0800 |
commit | 7129d2947b11dc5104e5ae21d6fadd1bc42c1103 (patch) | |
tree | 4bc81c78f34f24903d78269fe628145067532cc5 | |
parent | ce5dc4f9a84efc73fccce6d40c494e1deb4baa69 (diff) |
gnus: Add gmail group back
* gnus-conf.el (gnus-secondary-select-methods): I finally figured out
how to manage gmail within Gnus again, so this group is added back.
(gnus-topic-alist): I am not sure if this is needed.
I removed the gmail group in the hope that I can replace my usage of
gmail by my own mail server, but it turned out that my mail server is
too unreliable: too oft did my mails get rejected for one reason or
another, so I have to use gmail still.
-rw-r--r-- | gnus-conf.el | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gnus-conf.el b/gnus-conf.el index 6f2f927..2f7fa36 100644 --- a/gnus-conf.el +++ b/gnus-conf.el @@ -34,7 +34,7 @@ (setq gnus-select-method '(nnnil "")) (setq gnus-secondary-select-methods '((nntp "news.gmane.io") - ;; (nnmaildir "gmail" (directory "~/.nnmaildir/gmail")) + (nnmaildir "gmail" (directory "~/.nnmaildir/gmail")) (nnmaildir "durand" (directory "~/.nnmaildir/mymail")) ;; (nndiary "diary") ;; (nnmaildir "sent" (directory "~/.nnmaildir")) @@ -566,6 +566,11 @@ ARGS is the list of arguments passed to FN." (setq gnus-group-line-format "%M%S%p%P%5y:%B%(%g%)\n") +(setq gnus-topic-alist '(("Gnus" "gmane.emacs.devel" "nndraft:drafts") + ("durand" + "nnmaildir:durand+private" + "nnmaildir:durand+sent"))) + ;; (setq gnus-topic-alist ;; '(("devel" "gmane.emacs.devel") ;; ("orgmode" "gmane.emacs.orgmode") |