chiark / gitweb /
el/dot-emacs.el (mdw-fontify-rust): Fix integer literal syntax.
[profile] / dot / muttrc.local.distorted
1 ### -*-muttrc-*-
2 ###
3 ### Configuration for Mutt specific to distorted.org.uk
4
5 ###--------------------------------------------------------------------------
6 ### IMAP configuration.
7
8 ## Local mail.
9 account-hook '^imap://mail\.distorted\.org\.uk' \
10         'set imap_user=mdw; set imap_pass=$my_distorted_mail_passwd'
11 set my_distorted_imap=imap://mail.distorted.org.uk/
12 set spoolfile=$my_distorted_imap
13 set folder=$my_distorted_imap
14 mailboxes $my_distorted_imap
15
16 ## Google mail.
17 account-hook '^imaps://imap\.gmail\.com' \
18         'set imap_user=distorted.mdw@gmail.com; set imap_pass=$my_gmail_passwd'
19 mailboxes imaps://imap.gmail.com/
20
21 ###--------------------------------------------------------------------------
22 ### SMTP configuration.
23
24 ## Submit to the main mail server.
25 set smtp_url=smtp://mdw@mail.distorted.org.uk:587/
26 set smtp_pass=$my_distorted_mail_passwd
27
28 ###--------------------------------------------------------------------------
29 ### Other issues.
30
31 alternates -group me \
32         '^(mdw|markw)([-+][^@]*|)@(distorted\.org\.uk|escorted\.org\.uk|odin\.gg)$' \
33         '^distorted\.mdw@g(oogle|)mail\.com$'
34
35 alternates -group admin \
36         '^(root|postmaster|abuse)@(distorted\.org\.uk|escorted\.org\.uk|odin\.gg)$' \
37
38 ###----- That's all, folks --------------------------------------------------