diff options
author | Vincent Ambo <vincent@spotify.com> | 2013-08-05T13·23+0200 |
---|---|---|
committer | Vincent Ambo <vincent@spotify.com> | 2013-08-05T13·23+0200 |
commit | 97af8f36313fdd26a6edfd080c681782511e30c3 (patch) | |
tree | 8ad8ef1f6702490ca59166c4cf977ad14686e86f | |
parent | e320f142636c5db25f0f3a786ce6c2ea41c36c06 (diff) |
Removed mail config, ignored local files and IRC config
-rw-r--r-- | .gitignore | 7 | ||||
-rw-r--r-- | init-mail.el | 18 |
2 files changed, 3 insertions, 22 deletions
diff --git a/.gitignore b/.gitignore index cff209380a1e..35ab96e9fb02 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ -/plists/.DS_Store -/.DS_Store -/#init.el# -/.#init.el +scripts/ +init-local.el +irc.el diff --git a/init-mail.el b/init-mail.el deleted file mode 100644 index 982b78156ff3..000000000000 --- a/init-mail.el +++ /dev/null @@ -1,18 +0,0 @@ -(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. ]+\\( \\|$\\)\\|^[\"]\"[#'()]") - |