dot/muttrc: New configuration files for Mutt.
[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([-+][^@]*|)@distorted\.org\.uk$ \
33 ^(markw|mdw)([-+][^@]*|)@odin\.gg$ \
34 ^distorted\.mdw@(google|g)mail\.com$
35
36 alternates -group admin \
37 ^(root|postmaster|abuse)@distorted\.org\.uk$
38
39 ###----- That's all, folks --------------------------------------------------