el/dot-emacs.el: Arrange for mail/news frames to be 80 columns wide.
[profile] / dot / gnus-local.el.distorted
CommitLineData
5252f79a
MW
1;;; -*-emacs-lisp-*-
2;;;
3;;; Local GNUS configuration -- distorted.org.uk version
4;;;
5;;; (c) 2014 Mark Wooding
6;;;
7
6dac28f9
MW
8;;;--------------------------------------------------------------------------
9;;; Random configuration.
10
df5a4ca5
MW
11(setq auth-sources '("~/.gnus.authinfo"))
12
ae7fb192
MW
13(remove-hook 'gnus-mark-article-hook
14 'gnus-summary-mark-read-and-unread-as-read)
15(add-hook 'gnus-mark-article-hook 'gnus-summary-mark-unread-as-read)
16
31b2b432
MW
17(setq gnus-level-unsubscribed 6)
18
5252f79a 19;;;--------------------------------------------------------------------------
789a48fe
MW
20;;; How to send mail.
21
24da4184
MW
22(setq smtpmail-smtp-service 587
23 smtpmail-auth-credentials "~/.gnus.authinfo")
24
25(setq mdw-send-mail-alist
26 `((distorted-smtp
27 (send-mail-function . smtpmail-send-it)
28 (smtpmail-smtp-server . "mail.distorted.org.uk")
29 (smtpmail-starttls-credentials
30 ("mail.distorted.org.uk" 587 nil nil)))
31 (chiark-smtp
32 (send-mail-function . smtpmail-send-it)
33 (smtpmail-smtp-server . "smtp.dovecot.chiark.greenend.org.uk")
34 (starttls-extra-arguments "--insecure")
35 (smtpmail-starttls-credentials
36 ("smtp.dovecot.chiark.greenend.org.uk" 587 nil nil)))
37 (gmail-smtp
38 (send-mail-function . smtpmail-send-it)
39 (smtpmail-smtp-server . "smtp.gmail.com")
40 (smtpmail-starttls-credentials
41 ("smtp.gmail.com" 587 nil nil))))
42 mdw-guess-send-mail-alist
43 `((,(concat "@\\(" "\\(chiark\\|slimy\\|coriolis\\)"
44 "\\.greenend\\.org\\.uk"
45 "\\|" "evade\\.org\\.uk"
46 "\\|" "fyvzl\\.net"
47 "\\)$") . chiark-smtp)
48 ("@g\\(\\|oogle\\)mail\\.com$" . gmail-smtp))
49 mdw-default-send-mail-method nil)
789a48fe
MW
50
51;;;--------------------------------------------------------------------------
f240cfd7
MW
52;;; News via chiark.
53
54;; Currently we assume an SSH tunnel. This will be fixed later.
55(setq gnus-select-method
56 '(nntp "chiark-ssh-kludge"
57 (nntp-open-connection-function nntp-open-authinfo-kludge)
df38b85d
MW
58 (nntp-address "tunnel.chiark.greenend.org.uk")
59 (nntp-authinfo-generic "md5cookie1way mdw")))
f240cfd7
MW
60
61;;;--------------------------------------------------------------------------
5252f79a
MW
62;;; Mail group configuration.
63
64;; General splitting configuration.
90ad62cd 65(setq nnimap-split-rule 'nnimap-split-fancy
4fb653fd 66 nnmail-split-methods 'nnmail-split-fancy
5252f79a 67 nnimap-split-predicate "UNDELETED"
4fb653fd
MW
68 nnimap-split-crosspost t
69 nnmail-split-crosspost t
5252f79a
MW
70 nnmail-split-fancy-match-partial-words nil)
71
72;; Automatic expiry for particular groups.
73(setq gnus-auto-expirable-newsgroups
40a3fc1d
MW
74 (concat "^"
75 "\\(nnimap\\+[^:]+\\|nnvirtual\\):"
76 "\\(admin\\|crap\\|lists\\|nag\\|spam\\)\\."))
5252f79a 77
277521fa 78;; My various email addresses.
43026cf3 79(setq message-alternative-emails bbdb-user-mail-names
277521fa
MW
80 message-dont-reply-to-names message-alternative-emails)
81
5252f79a
MW
82;; Mail sent to `mdw-nospam-THING' should appear to come from this address.
83(setq gnus-posting-styles
63bc8fd4
MW
84 '(("^nnimap\\+distorted:crap\\."
85 (address (concat "mdw-nospam-"
86 (substring gnus-newsgroup-name (match-end 0))
24da4184
MW
87 "@distorted.org.uk")))
88 ("^nnimap\\+[^:]+-chiark:"
89 ("X-mdw-Send-Mail" "chiark-smtp"))
90 ("^nnimap\\+google:"
91 (address "distorted.mdw@gmail.com")
92 ("X-mdw-Send-Mail" "gmail-smtp"))))
5252f79a 93
093f5ffa
MW
94(defvar mdw-odin-parse-regexp
95 (concat "^"
96 "\\S-+" "\\s-+" ; time limit
97 "\\(" "\\S-+" "\\)" "\\s-+" ; local part
98 "\\S-+" "\\s-+" ; recipient email address
99 "=" "\\(" "\\S-+" "\\)" ; mailbox tag
100 "\\(" "$" "\\|" "\\s-" "\\)"))
101
102(defun mdw-odin-splits ()
103 (let ((list nil))
104 (with-temp-buffer
105 (call-process "ssh" nil t nil
106 "stratocaster" "userv" "odin" "mail" "list")
107 (goto-char (point-min))
108 (while (< (point) (point-max))
109 (when (looking-at mdw-odin-parse-regexp)
110 (let ((local-part (match-string 1))
111 (tag (match-string 2)))
112 (push `(to ,(format "%s@odin\\.gg" local-part)
113 ,(format "crap.%s" tag))
114 list)))
115 (forward-line)))
116 (nreverse list)))
117
5252f79a 118;; The actual splitting rules.
4fb653fd 119(setq nnmail-split-fancy
093f5ffa 120 `(|
a27bd871 121 ;; Administrative boxes.
a93d1938
MW
122 (to "\\<\\(root\\|postgres\\|ca\\|noc\\)@" "admin.misc" t)
123 (to "\\<\\(jukebox\\|nobody\\|darchive\\)@" "admin.misc" t)
124 (to "\\<\\(hostmaster\\)@" "admin.dns" t)
125 (to "\\<\\(news\\|newsmaster\\|usenet\\)@" "admin.news" t)
126 (to "\\<\\(postmaster\\|spamd\\|mailer-daemon\\)@" "admin.mail" t)
127 (to "\\<\\(irc\\|blight\\|ircbot\\)@" "admin.irc" t)
128 (to "\\<\\(www\\|webmaster\\|mtos\\)@" "admin.web" t)
129 (to "\\<\\(ftp\\|ftpadmin\\|mirror\\)@" "admin.ftp" t)
130 (to "\\\<\\(abuse\\|security\\)@" "admin.keep" t)
a27bd871
MW
131 (from "cron daemon" "admin.misc")
132 (from "uucp@distorted\\.org\\.uk" "admin.uucp")
133 (from "darchive@.*\\.distorted\\.org\\.uk" "admin.misc")
51fb1b09 134 (from "support@aa\\.net\\.uk" "admin.aaisp")
d268047a 135 (from "bugs@distorted\\.org\\.uk" "admin.bugs")
a27bd871
MW
136
137 ;; Colo provider.
138 (from "\\(accounts\\|support\\)@jump\\.net\\.uk" "keep.colo")
139
140 ;; Mailing lists, not split out earlier.
5252f79a 141 (to "python-list@python\\.org" "lists.python")
3a268ef9
MW
142 (to "\\(jump-\\(announce\\|discuss\\)\\)@\\(lists\\.\\)jump\\.net\\.uk"
143 "lists.jump-\\1")
a27bd871
MW
144
145 ;; Per-sender addresses.
a93d1938
MW
146 (to "\\<mdw-nospam-justgviing@" "crap.justgiving" t)
147 (to "\\<mdw-nospam-\\([^@]+\\)@" "crap.\\1" t)
148 (to "\\<mdw-nopspam-\\([^@]+\\)@" "crap.\\1" t)
a27bd871 149
093f5ffa
MW
150 (to "\\(markw\\|mdw\\|mw\\)@odin\\.gg" "mail.misc")
151 ,@(mdw-odin-splits)
152 (to "\\([a-z0-9]+\\)@odin\\.gg" "crap.odin-misc")
153
a27bd871 154 ;; Regular nags.
5252f79a
MW
155 (from "\\(sealbot\\|cardbot\\)@ncipher\\.com" "nag.cardbot")
156 (from "\\<mailman-owner@" "nag.mailman" t)
a27bd871 157
48c5ccb3 158 ;; Uninteresting mail.
a93d1938 159 (from "expiry@letsencrypt\\.org" "spam.letsencrypt")
48c5ccb3 160
a27bd871 161 ;; Other splits I've not given a per-sender address.
a93d1938 162 (from "@\\(.*\\.\\)?lovefilm\\.com\\>" "spam.lovefilm" t)
58b231b2 163 (from "@\\(\\|.*\\.\\)amazon\\." "spam.amazon" t)
a93d1938
MW
164 (from "@cineworldmail\\.com\\>" "spam.cineworld" t)
165 (from "@picturehouses\\.co\\.uk\\>" "spam.picturehouse" t)
166 (from "@nationwide" "spam.nationwide\\>" t)
167 (from "@news\\.spotifymail\\.com\\>" "spam.spotify" t)
168 (from "@action\\.openrightsgroup\\.org\\>" "spam.org" t)
169 (from "unlimited@cineworld\\.com\\>" "spam.cineworld" t)
170 (from "nationwide@securesuiteemail\\.com\\>" "spam.nationwide" t)
171 (from "@liberty-human-rights\\.org\\.uk\\>" "spam.liberty" t)
172 (from "@libertymail\\.org\\.uk\\>" "spam.liberty" t)
173 (from "@openrightsgroup\\.org\\>" "spam.org" t)
174 (from "@tshirthell\\.com\\>" "spam.tshirt-hell" t)
175 (from "campaigns@jolla\\.com\\>" "crap.jolla" t)
a27bd871
MW
176
177 ;; Default.
90ad62cd 178 "mail.misc"))
5252f79a 179
c77d8eb0
MW
180;;;--------------------------------------------------------------------------
181;;; Where we get mail from.
182
183;; Read mail on the IMAP server.
184(setq gnus-secondary-select-methods
90ad62cd 185 `((nnimap "distorted"
c77d8eb0
MW
186 (nnimap-address "mail.distorted.org.uk")
187 (nnimap-stream starttls)
90ad62cd
MW
188 (nnimap-inbox ("INBOX" "to.split"))
189 (nnimap-split-methods nnimap-split-fancy)
190 (nnimap-split-fancy ,nnmail-split-fancy)
c77d8eb0
MW
191 (nnimap-unsplittable-articles (%Deleted)))
192 (nnimap "markw-distorted"
193 (nnimap-address "mail.distorted.org.uk")
194 (nnimap-stream starttls)
90ad62cd
MW
195 (nnimap-inbox ("INBOX" "to.split"))
196 (nnimap-split-methods nnimap-split-fancy)
197 (nnimap-split-fancy ,nnmail-split-fancy)
c77d8eb0
MW
198 (nnimap-unsplittable-articles (%Deleted)))
199 (nnimap "mwooding-chiark"
200 (nnimap-address "imap.dovecot.chiark.greenend.org.uk")
201 (nnimap-stream starttls)
c77d8eb0
MW
202 (nnimap-inbox "INBOX")
203 (nnimap-unsplittable-articles (%Deleted)))
204 (nnimap "google"
205 (nnimap-address "imap.gmail.com")
206 (nnimap-stream tls)
207 (nnimap-inbox "INBOX")
208 (nnimap-unsplittable-articles (%Deleted)))))
209
210;; Send sent mail back to me.
211(setq gnus-message-archive-method "mail"
212 gnus-gcc-mark-as-read t
213 gnus-message-archive-group "nnimap+distorted:mail.sent")
214
5252f79a 215;;;----- That's all, folks --------------------------------------------------