Changeset 54af9bb in dotfiles
- Timestamp:
- Jul 31, 2024, 3:41:02 AM (4 months ago)
- Branches:
- master
- Children:
- 7f6d0e1
- Parents:
- c5034f7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
emacs/.gnus
rc5034f7 r54af9bb 1 1 (setq epa-file-cache-passphrase-for-symmetric-encryption t) 2 2 3 (setq user-mail-address "w96k@posteo.net" 3 (with-eval-after-load "mail-source" 4 (add-to-list 'mail-sources '(pop :name "runbox" 5 :server "mail.runbox.com" 6 :user "w96k" 7 :leave 3 8 ))) 9 10 11 (setq user-mail-address "w96k@runbox.com" 4 12 user-full-name "Mikhail Kirillov") 5 13 6 (setq gnus-select-method 7 '(nnimap "posteo" 8 (nnimap-address "posteo.de") 9 (nnimap-server-port "imaps") 10 (nnimap-stream ssl))) 14 (setq gnus-select-method '(nnml "")) 11 15 16 (add-to-list 'gnus-secondary-select-methods '(nntp "news.eternal-september.org")) 12 17 (add-to-list 'gnus-secondary-select-methods '(nntp "news.gmane.io")) 13 18 14 (setq smtpmail-smtp-server "posteo.de" 15 smtpmail-smtp-service 587 19 ;; (add-to-list 'gnus-secondary-select-methods '(nnimap "gmail" 20 ;; (nnimap-address "imap.gmail.com") 21 ;; (nnimap-server-port 993) 22 ;; (nnimap-stream ssl))) 23 24 (setq gnus-use-cache t 25 send-mail-function 'smtpmail-send-it 26 message-send-mail-function 'smtpmail-send-it 27 smtpmail-smtp-server "mail.runbox.com" 28 ;; smtpmail-smtp-service 587 29 ;; smtpmail-stream-type 'starttls 30 smtpmail-stream-type 'ssl 31 smtpmail-smtp-service 465 32 mml-secure-openpgp-signers '("CE73F35DE039B8D52039A12CB643528AA92DE506") 33 mml-secure-openpgp-encrypt-to-self t 16 34 gnus-ignored-newsgroups "^to\\.\\|^[0-9. ]+\\( \\|$\\)\\|^[\"]\"[#'()]") 35 36 (setq starttls-use-gnutls t) 37 (setq starttls-gnutls-program "gnutls-cli") 38 (setq starttls-extra-arguments nil) 39 (setq smtpmail-servers-requiring-authorization ".*") 17 40 18 41 (add-hook 'message-setup-hook 'mml-secure-message-encrypt) 19 42 (add-hook 'message-setup-hook 'mml-secure-message-sign) 43 44 (setq mm-automatic-display (remove "text/html" mm-automatic-display)) 45 46 (add-hook 'gnus-group-mode-hook 'gnus-topic-mode) 47
Note:
See TracChangeset
for help on using the changeset viewer.