summaryrefslogtreecommitdiff
path: root/.emacs.d/init-gnus.el
blob: 2b4922a16c7571fb9955ea8329b2d74bc093f70c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
;; If NNTPSERVER has been configured by the local administrator,
;; accept Gnus' defaults.  Otherwise, set the default select method to
;; nnnil so that typing 'M-x gnus' does not hang.
(unless (gnus-getenv-nntpserver)
  (setq gnus-select-method '(nnnil "")))

(setq gnus-posting-styles
      '((".*"
         (address "spwhitton@spwhitton.name")
         (name    "Sean Whitton"))
	("chiark\\..*"
	 (address "spwhitton@chiark.greenend.org.uk"))))