]> code.delx.au - dotfiles/blob - .mutt/display
38a4aad541fcbe10550f0fdbcf74035666955999
[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
12 # When going to the Sent folder, sort by date-sent
13 folder-hook . set sort_aux=last-date-received # And undo
14 folder-hook "=Sent" set sort_aux=last-date-sent # And undo
15
16 # When going to the Inbox only show new & flagged messages
17 folder-hook "=Inbox" 'push "<limit>~F | ~(~N | ~O)<enter>"'
18
19 # Hide the help line at the top
20 set help=no
21
22 # Show 5 lines of index when viewing a message
23 set pager_index_lines=5
24
25 # Don't scroll past the current message in the pager
26 set pager_stop
27
28 # Format for the status bar
29 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)---'|"
30
31 # Format for messages in the index
32 set index_format='%4C %Z %H %{%b %d} %-15.15L %s'
33
34 # Format for mailboxes in the browser
35 set folder_format="%2C %t %f %> %8s %d "
36
37 # Format for aliases in the tab-complete view
38 set alias_format="%4n %2f %t %r"
39
40 # Character set stuff
41 set charset=utf8
42 set noallow_8bit
43
44 # Use the alias list to look up real names for people
45 set reverse_alias=yes
46
47 # Autoview HTML emails
48 auto_view text/enriched text/html
49
50 # Prefer text to HTML
51 alternative_order text/enriched text/plain text/html
52