Created
May 21, 2019 08:08
-
-
Save travnewmatic/ec4b54aa33985dc314fde97347689334 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(setq user-mail-address "[email protected]" | |
user-full-name "Travis Newman") | |
;; workaround for TLS1.3 bug | |
(setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3") | |
;; Make Gnus NOT ignore [Gmail] mailboxes | |
(setq gnus-ignored-newsgroups "^to\\.\\|^[0-9. ]+\\( \\|$\\)\\|^[\"]\"[#'()]") | |
(setq gnus-select-method '(nntp "aioe" | |
(nntp-address "nntp.aioe.org"))) | |
(setq gnus-secondary-select-methods '((nnimap "work" | |
(nnimap-address "imap.gmail.com")) | |
(nnimap "personal" | |
(nnimap-address "imap.gmail.com")))) | |
(setq smtpmail-smtp-server "smtp.gmail.com" | |
smtpmail-smtp-service 587 | |
gnus-ignored-newsgroups "^to\\.\\|^[0-9. ]+\\( \\|$\\)\\|^[\"]\"[#'()]") | |
(setq gnus-posting-styles | |
'(("work:INBOX" | |
(name "Travis Newman") | |
(address "[email protected]") | |
("X-Message-SMTP-Method" "smtp smtp.gmail.com 587 [email protected]")) | |
("personal:INBOX" | |
(address "[email protected]") | |
(name "Travis Newman") | |
("X-Message-SMTP-Method" "smtp smtp.gmail.com 587 [email protected]")))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment