about summary refs log tree commit diff
path: root/init-mail.el
diff options
context:
space:
mode:
Diffstat (limited to 'init-mail.el')
-rw-r--r--init-mail.el18
1 files changed, 18 insertions, 0 deletions
diff --git a/init-mail.el b/init-mail.el
new file mode 100644
index 000000000000..982b78156ff3
--- /dev/null
+++ b/init-mail.el
@@ -0,0 +1,18 @@
+(require 'gnus)
+
+(setq gnus-select-method '(nnimap "gmail"
+				  (nnimap-address "imap.gmail.com")
+				  (nnimap-server-port 993)
+				  (nnimap-stream ssl)))
+
+(setq message-send-mail-function 'smtpmail-send-it
+      smtpmail-starttls-credentials '(("smtp.gmail.com" 587 nil nil))
+      smtpmail-auth-credentials '(("smtp.gmail.com" 587 "vincent@spotify.com" nil))
+      smtpmail-default-smtp-server "smtp.gmail.com"
+      smtpmail-smtp-server "smtp.gmail.com"
+      smtpmail-smtp-service 587
+      smtpmail-local-domain "spotify.com")
+
+ ;; Make Gnus NOT ignore [Gmail] mailboxes
+(setq gnus-ignored-newsgroups "^to\\.\\|^[0-9. ]+\\( \\|$\\)\\|^[\"]\"[#'()]")
+