chiark / gitweb /
el/dot-emacs.el (mdw-fontify-rust): Fix integer literal syntax.
[profile] / dot / muttrc
CommitLineData
ce39049e
MW
1### -*-muttrc-*-
2###
3### Configuration for Mutt.
4
5###--------------------------------------------------------------------------
6### Local configuration stuff.
7
8source ~/.muttrc.auth
9source ~/.muttrc.local
10
11###--------------------------------------------------------------------------
12### System things.
13
14## Debian Mutt sets this from /etc/mailname, but it gets used (a) in
15## message-ids and (b) as the SMTP `HELO' name, both of which are obviously
16## wrong. Set it from the proper hostname.
17set hostname=`hostname -f`
18
19###--------------------------------------------------------------------------
20### Mail fetching.
21
22## General IMAP hacking.
23set imap_delim_chars=/
24set imap_idle=yes
25
26###--------------------------------------------------------------------------
27### Mail submission.
28
29## Composition.
30set autoedit=yes
31set edit_headers=yes
32set use_domain=no
33set record=+mail.sent
277521fa
MW
34set use_envelope_from=yes
35set reverse_name=yes
ce39049e
MW
36
37## Replies.
031213c5 38set attribution="%n <%a> writes:\n"
ce39049e
MW
39set include=yes
40
41## Postponed messages.
42set postpone=ask-no
43set postponed=+Drafts
44
45###----- That's all, folks --------------------------------------------------