Move package gnus
This commit is contained in:
parent
5f23376588
commit
646003eb5f
2 changed files with 17 additions and 18 deletions
|
@ -1,6 +1,6 @@
|
|||
(setq smtpmail-smtp-server "smtp.mailbox.org"
|
||||
smtpmail-smtp-service 465
|
||||
smtpmail-stream-type 'ssl
|
||||
smtpmail-stream-type 'starttls
|
||||
message-send-mail-function 'smtpmail-send-it
|
||||
mml-default-sign-method "pgpmime"
|
||||
mml-default-encrypt-method "pgpmime"
|
||||
|
@ -69,3 +69,19 @@
|
|||
(mu4e-trash-folder "/Trash")
|
||||
(mu4e-split-view 'horizontal)
|
||||
(mu4e-update-interval (* 10 60))))
|
||||
|
||||
(use-package gnus
|
||||
:ensure nil
|
||||
:hook (gnus-summary-prepare . gnus-summary-sort-by-most-recent-date)
|
||||
:custom
|
||||
(gnus-inhibit-startup-message t)
|
||||
(gnus-check-new-newsgroups nil)
|
||||
(gnus-select-method '(nntp "news.individual.de"
|
||||
(nntp-open-connection-function nntp-open-ssl-stream)
|
||||
(nntp-port-number 563)))
|
||||
:config
|
||||
(add-to-list 'gnus-secondary-select-methods
|
||||
'(nnimap "mailbox"
|
||||
(nnimap-address "imap.mailbox.org")
|
||||
(nnimap-server-port 143)
|
||||
(nnimap-stream starttls))))
|
||||
|
|
|
@ -88,20 +88,3 @@
|
|||
("https://www.klimareporter.de/tag/klimaupdate?format=feed&type=atom" podcast umwelt klima)
|
||||
("https://ct-uplink.podigee.io/feed/mp3" podcast technik computer)
|
||||
("https://feeds.soundcloud.com/users/soundcloud:users:261098918/sounds.rss" podcast osint))))
|
||||
|
||||
(use-package gnus
|
||||
:ensure nil
|
||||
:hook (gnus-summary-prepare . gnus-summary-sort-by-most-recent-date)
|
||||
:custom
|
||||
(user-full-name "Marcus Kammer")
|
||||
(gnus-inhibit-startup-message t)
|
||||
(gnus-check-new-newsgroups nil)
|
||||
(gnus-select-method '(nntp "news.individual.de"
|
||||
(nntp-open-connection-function nntp-open-ssl-stream)
|
||||
(nntp-port-number 563)))
|
||||
:config
|
||||
(add-to-list 'gnus-secondary-select-methods
|
||||
'(nnimap "mailbox"
|
||||
(nnimap-address "imap.mailbox.org")
|
||||
(nnimap-server-port 143)
|
||||
(nnimap-stream starttls))))
|
||||
|
|
Loading…
Add table
Reference in a new issue