From 13aa5a51fc98eeaad5badb98cdc6ddc329cfba1f Mon Sep 17 00:00:00 2001 From: Gerard Vermeulen Date: Sun, 4 Sep 2022 18:57:53 +0200 Subject: [PATCH] Start to play with gnus --- README.org | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/README.org b/README.org index 0bd8ccd..95460ac 100644 --- a/README.org +++ b/README.org @@ -4541,6 +4541,35 @@ initializes a list of =webjump-sites=. ("Volkskrant" . "www.volkskrant.nl")))))) #+end_src +** [[info:gnus#Top][Reading News and Mail (info)]] +:PROPERTIES: +:CUSTOM_ID: sec:reading-news-mail +:END: + +1. [[https://www.maketecheasier.com/emacs-usenet-reader-with-gnus/][How to use Emacs as a USENET reader with Gnus]] +2. [[https://github.com/redguardtoo/mastering-emacs-in-one-year-guide/blob/master/gnus-guide-en.org][A practical guide to Gnus]] +3. [[https://jao.io/blog/2021-05-17-reading-and-searching-gmane-with-gnus-fast.html][Fast reading and searching of Gmane.io with Gnus]] +4. [[https://www.brautaset.org/posts/leafnode-nntp-os-x.html][Setting up Leafnode on macOS]] +5. [[https://blog.bitside.pl/posts/gnus/][Gnus]] + +#+caption[Configure =gnus=]: +#+caption: Configure =gnus=. +#+name: lst:configure-gnus +#+begin_src emacs-lisp + (with-eval-after-load 'emacs + (custom-set-variables + '(gnus-select-method '(nntp "news.gmane.io")) + (with-eval-after-load 'gnus-start + (custom-set-variables + '(gnus-check-bogus-newsgroups nil) + '(gnus-check-new-newsgroups 'ask-server) + '(gnus-read-newsrc-file t) + '(gnus-read-active-file 'some) + '(gnus-save-killed-list t) + '(gnus-save-newsrc-file t) + '(gnus-use-dribble-file t))))) +#+end_src + ** [[info:emacs#Sending Mail][Sending Mail (info)]] :PROPERTIES: :CUSTOM_ID: sec:sending-mail