Changeset 54af9bb in dotfiles


Ignore:
Timestamp:
Jul 31, 2024, 3:41:02 AM (4 months ago)
Author:
Mikhail Kirillov <w96k@…>
Branches:
master
Children:
7f6d0e1
Parents:
c5034f7
Message:

Update gnus to work with runbox + mailing lists

File:
1 edited

Legend:

Unmodified
Added
Removed
  • emacs/.gnus

    rc5034f7 r54af9bb  
    11(setq epa-file-cache-passphrase-for-symmetric-encryption t)
    22
    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"
    412      user-full-name "Mikhail Kirillov")
    513
    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 ""))
    1115
     16(add-to-list 'gnus-secondary-select-methods '(nntp "news.eternal-september.org"))
    1217(add-to-list 'gnus-secondary-select-methods '(nntp "news.gmane.io"))
    1318
    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
    1634      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 ".*")
    1740
    1841(add-hook 'message-setup-hook 'mml-secure-message-encrypt)
    1942(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.