summaryrefslogtreecommitdiffstats
path: root/.emacs.d/gnus.el
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2011-09-20 01:08:06 +0200
committerGravatar Tom Willemsen2011-09-20 01:08:06 +0200
commit94b05b65efebc19f815f24350bca5473bb28fb46 (patch)
tree72d4c973db5566d9445cdc802a3f20f870a7d5f8 /.emacs.d/gnus.el
parentcd174512ef80597883b6ddf30103a16daee61748 (diff)
downloaddotfiles-94b05b65efebc19f815f24350bca5473bb28fb46.tar.gz
dotfiles-94b05b65efebc19f815f24350bca5473bb28fb46.zip
Split off emacs configs to dotemacs
Diffstat (limited to '.emacs.d/gnus.el')
-rw-r--r--.emacs.d/gnus.el60
1 files changed, 0 insertions, 60 deletions
diff --git a/.emacs.d/gnus.el b/.emacs.d/gnus.el
deleted file mode 100644
index 3074aae..0000000
--- a/.emacs.d/gnus.el
+++ /dev/null
@@ -1,60 +0,0 @@
-(setq gnus-select-method '(nntp "news.eternal-september.org"))
-(setq gnus-secondary-select-methods
- '((nnmaildir "gmail"
- (directory "~/documents/mail/gmail/"))
- (nnmaildir "arch"
- (directory "~/documents/mail/arch/"))
- (nnmaildir "aethon"
- (directory "~/documents/mail/aethon/"))
- (nntp "news.gmane.org")
- (nnrss "")))
-
-(setq gnus-auto-subscribed-groups nil)
-(setq gnus-save-newsrc-file nil)
-(setq gnus-read-newsrc-file nil)
-(setq gnus-novice-user t)
-(setq gnus-article-truncate-lines nil)
-
-(setq gnus-parameters
- '(("gmail"
- (display . all))
- ("aethon"
- (display . all)
- ("arch"
- (display . all)))))
-
-(setq gnus-permanently-visible-groups
- "\\(gmail\\|aethon\\|arch\\):INBOX")
-
-(setq nntp-marks-is-evil t)
-
-(setq gnus-check-new-newsgroups nil)
-
-(setq gnus-posting-styles
- '((".*" (address "ryuslash@gmail.com"))
- ("arch:" (address "tom.willemsen@archlinux.us"))
- ("aethon:"
- (address "thomas@aethon.nl")
- (signature-file "~/documents/work/aethon/signature.txt"))))
-
-(setq user-mail-address "ryuslash@gmail.com")
-(setq user-full-name "Tom Willemsen")
-
-(load "tls")
-
-(setq send-mail-function 'smtpmail-send-it
- message-send-mail-function 'message-smtpmail-send-it
- starttls-use-gnutls t
- smtpmail-gnutls-credentials '(("smtp.gmail.com" 587 "ryuslash@gmail.com" nil))
- smtpmail-starttls-credentials '(("smtp.gmail.com" 587 "ryuslash@gmail.com" nil))
- smtpmail-smtp-server "smtp.gmail.com"
- smtpmail-smtp-service 587
- smtpmail-debug-info t
- smtpmail-default-smtp-server "smtp.gmail.com")
-
-(add-hook 'gnus-group-mode-hook 'gnus-topic-mode)
-
-;;; BBDB
-(require 'bbdb)
-(bbdb-initialize 'gnus 'message)
-(bbdb-insinuate-gnus)