chiark / gitweb /
el/dot-emacs.el (mdw-fontify-rust): Fix integer literal syntax.
[profile] / dot / muttrc
1 ### -*-muttrc-*-
2 ###
3 ### Configuration for Mutt.
4
5 ###--------------------------------------------------------------------------
6 ### Local configuration stuff.
7
8 source ~/.muttrc.auth
9 source ~/.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.
17 set hostname=`hostname -f`
18
19 ###--------------------------------------------------------------------------
20 ### Mail fetching.
21
22 ## General IMAP hacking.
23 set imap_delim_chars=/
24 set imap_idle=yes
25
26 ###--------------------------------------------------------------------------
27 ### Mail submission.
28
29 ## Composition.
30 set autoedit=yes
31 set edit_headers=yes
32 set use_domain=no
33 set record=+mail.sent
34 set use_envelope_from=yes
35 set reverse_name=yes
36
37 ## Replies.
38 set attribution="%n <%a> writes:\n"
39 set include=yes
40
41 ## Postponed messages.
42 set postpone=ask-no
43 set postponed=+Drafts
44
45 ###----- That's all, folks --------------------------------------------------