Start to play with gnus

This commit is contained in:
Gerard Vermeulen 2022-09-04 18:57:53 +02:00
parent 363e02cd0f
commit 13aa5a51fc

View File

@ -4541,6 +4541,35 @@ initializes a list of =webjump-sites=.
("Volkskrant" . "www.volkskrant.nl")))))) ("Volkskrant" . "www.volkskrant.nl"))))))
#+end_src #+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)]] ** [[info:emacs#Sending Mail][Sending Mail (info)]]
:PROPERTIES: :PROPERTIES:
:CUSTOM_ID: sec:sending-mail :CUSTOM_ID: sec:sending-mail