]> code.delx.au - dotfiles/blob - .mutt/display
Mutt: never write bcc header
[dotfiles] / .mutt / display
1 # vim:ft=muttrc
2
3 # Headers to show
4 ignore *
5 unignore date return-path from to cc bcc reply-to subject user-agent x-mailer x-spam-score
6 hdr_order date return-path from to cc bcc reply-to subject user-agent x-mailer x-spam-score
7
8 # Sort by threads then date received
9 set sort=threads
10 set sort_aux=last-date-received
11 # When going to the Sent folder, sort by date-sent
12 folder-hook . set sort_aux=last-date-received # And undo
13 folder-hook "=Sent" set sort_aux=last-date-sent # And undo
14
15
16 # Hide the help line at the top
17 set help=no
18
19 # Show 5 lines of index when viewing a message
20 set pager_index_lines=5
21
22 # Don't scroll past the current message in the pager
23 set pager_stop
24
25 # Format for the status bar
26 set status_format="$HOME/.mutt/set_xtitle '-%r-Mutt: %f [Msgs:%?M?%M/?%m%?n? New:%n?%?o? Old:%o?%?d? Del:%d?%?F? Flag:%F?%?t? Tag:%t?%?p? Post:%p?%?b? Inc:%b?%?l? %l?]---(%s/%S)-%>-(%P)---'|"
27
28 # Format for messages in the index
29 set index_format='%4C %Z %H %{%b %d} %-15.15L %s'
30
31 # Format for mailboxes in the browser
32 set folder_format="%2C %t %f %> %8s %d "
33
34 # Format for aliases in the tab-complete view
35 set alias_format="%4n %2f %t %r"
36
37 # Character set stuff
38 set charset=utf8
39 set noallow_8bit
40
41 # Use the alias list to look up real names for people
42 set reverse_alias=yes
43
44 # Autoview HTML emails
45 auto_view text/enriched text/html
46
47 # Prefer text to HTML
48 alternative_order text/enriched text/plain text/html
49