diff options
author | fpi | 2020-06-27 13:16:29 +0200 |
---|---|---|
committer | fpi | 2020-06-27 13:43:18 +0200 |
commit | cea6226bb677db358da6e7d44fce906a9818fc28 (patch) | |
tree | ffa8e2ecfd936ab8544b83b64d3022d3e22dcf7f | |
parent | Merge branch 'emacs' into gnus+ (diff) |
Add personal imap
-rw-r--r-- | emacs-private.el.gpg | bin | 1086 -> 1139 bytes | |||
-rw-r--r-- | gnus.org | 12 |
2 files changed, 8 insertions, 4 deletions
diff --git a/emacs-private.el.gpg b/emacs-private.el.gpg Binary files differindex 6100326..916e28e 100644 --- a/emacs-private.el.gpg +++ b/emacs-private.el.gpg @@ -13,9 +13,7 @@ Load private settings * Config I use =imap= as my primary server. Setup some generic options: #+begin_src emacs-lisp :noweb-ref imap :tangle no -nnimap ,private/imap-name -(nnimap-address ,private/imap-address) -(nnimap-server-port 993) +nnimap ,@private/imap-info (nnimap-stream ssl) (nnir-search-engine imap) #+end_src @@ -48,8 +46,14 @@ Noweb the primary server settings together. <<imap>> )) #+end_src -Add local nntp server + +Setup a secondary imap server and a local nntp server I use to fetch +RSS/Atom Feeds asynchronously. #+begin_src emacs-lisp +(add-to-list 'gnus-secondary-select-methods `(nnimap ,@private/personal-imap-info + (nnimap-stream ssl) + (nnir-search-engine imap) + (nnimap-inbox "INBOX"))) (add-to-list 'gnus-secondary-select-methods '(nntp "localhost" 4321)) #+end_src Sort by newest first |