diff --git a/bundle/bundle--email.el b/bundle/bundle--email.el index 65c21dac..df36dd38 100644 --- a/bundle/bundle--email.el +++ b/bundle/bundle--email.el @@ -13,16 +13,6 @@ (mu4e-compose-signature "Cheers Marcus (Nuremberg . Germany)\nGnuPG Key: https://meta.sr.ht/~marcuskammer.pgp\nFingerprint: 86DB 0F30 F9F1 661A 54E2 1664 C374 817B E285 268F") (mu4e-update-interval (* 10 60))) -(use-package gnus - :ensure nil - :defer t - :config - (add-to-list 'gnus-secondary-select-methods - '(nnimap "mailbox" - (nnimap-address "imap.mailbox.org") - (nnimap-server-port 143) - (nnimap-stream starttls)))) - (use-package smtpmail :ensure nil :defer t diff --git a/bundle/bundle--news.el b/bundle/bundle--news.el index fd3ff441..be9a888e 100644 --- a/bundle/bundle--news.el +++ b/bundle/bundle--news.el @@ -76,7 +76,11 @@ (user-full-name "Marcus Kammer") (gnus-inhibit-startup-message t) (gnus-check-new-newsgroups nil) - (gnus-select-method - '(nntp "news.individual.de" + (gnus-select-method '(nntp "news.individual.de" (nntp-open-connection-function nntp-open-ssl-stream) - (nntp-port-number 563)))) + (nntp-port-number 563))) + (add-to-list 'gnus-secondary-select-methods + '(nnimap "mailbox" + (nnimap-address "imap.mailbox.org") + (nnimap-server-port 143) + (nnimap-stream starttls))))