dot/screenrc: Don't close failing windows immediately.
[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
34
35## Replies.
031213c5 36set attribution="%n <%a> writes:\n"
ce39049e
MW
37set include=yes
38
39## Postponed messages.
40set postpone=ask-no
41set postponed=+Drafts
42
43###----- That's all, folks --------------------------------------------------