mutt stable branch with some hacks
1# This is a complete list of sidebar-related configuration.
2
3# --------------------------------------------------------------------------
4# VARIABLES - shown with their default values
5# --------------------------------------------------------------------------
6
7# Should the Sidebar be shown?
8set sidebar_visible = no
9
10# How wide should the Sidebar be in screen columns?
11# Note: Some characters, e.g. Chinese, take up two columns each.
12set sidebar_width = 20
13
14# Should the mailbox paths be abbreviated?
15set sidebar_short_path = no
16
17# When abbreviating mailbox path names, use any of these characters as path
18# separators. Only the part after the last separators will be shown.
19# For file folders '/' is good. For IMAP folders, often '.' is useful.
20set sidebar_delim_chars = '/.'
21
22# If the mailbox path is abbreviated, should it be indented?
23set sidebar_folder_indent = no
24
25# Indent mailbox paths with this string.
26set sidebar_indent_string = ' '
27
28# Make the Sidebar only display mailboxes that contain new, or flagged,
29# mail.
30set sidebar_new_mail_only = no
31
32# Any mailboxes that are whitelisted will always be visible, even if the
33# sidebar_new_mail_only option is enabled.
34sidebar_whitelist '/home/user/mailbox1'
35sidebar_whitelist '/home/user/mailbox2'
36
37# When searching for mailboxes containing new mail, should the search wrap
38# around when it reaches the end of the list?
39set sidebar_next_new_wrap = no
40
41# The character to use as the divider between the Sidebar and the other Mutt
42# panels.
43# Note: Only the first character of this string is used.
44set sidebar_divider_char = '|'
45
46# Enable extended buffy mode to calculate total, new, and flagged
47# message counts for each mailbox.
48set mail_check_stats
49
50# Display the Sidebar mailboxes using this format string.
51set sidebar_format = '%B%?F? [%F]?%* %?N?%N/?%S'
52
53# Sort the mailboxes in the Sidebar using this method:
54# count - total number of messages
55# flagged - number of flagged messages
56# new - number of new messages
57# path - mailbox path
58# unsorted - do not sort the mailboxes
59set sidebar_sort_method = 'unsorted'
60
61# --------------------------------------------------------------------------
62# FUNCTIONS - shown with an example mapping
63# --------------------------------------------------------------------------
64
65# Move the highlight to the previous mailbox
66bind index,pager \Cp sidebar-prev
67
68# Move the highlight to the next mailbox
69bind index,pager \Cn sidebar-next
70
71# Open the highlighted mailbox
72bind index,pager \Co sidebar-open
73
74# Move the highlight to the previous page
75# This is useful if you have a LOT of mailboxes.
76bind index,pager <F3> sidebar-page-up
77
78# Move the highlight to the next page
79# This is useful if you have a LOT of mailboxes.
80bind index,pager <F4> sidebar-page-down
81
82# Move the highlight to the previous mailbox containing new, or flagged,
83# mail.
84bind index,pager <F5> sidebar-prev-new
85
86# Move the highlight to the next mailbox containing new, or flagged, mail.
87bind index,pager <F6> sidebar-next-new
88
89# Toggle the visibility of the Sidebar.
90bind index,pager B sidebar-toggle-visible
91
92# --------------------------------------------------------------------------
93# COLORS - some unpleasant examples are given
94# --------------------------------------------------------------------------
95# Note: All color operations are of the form:
96# color OBJECT FOREGROUND BACKGROUND
97
98# Color of the current, open, mailbox
99# Note: This is a general Mutt option which colors all selected items.
100color indicator cyan black
101
102# Color of the highlighted, but not open, mailbox.
103color sidebar_highlight black color8
104
105# Color of the divider separating the Sidebar from Mutt panels
106color sidebar_divider color8 black
107
108# Color to give mailboxes containing flagged mail
109color sidebar_flagged red black
110
111# Color to give mailboxes containing new mail
112color sidebar_new green black
113
114# --------------------------------------------------------------------------
115
116# vim: syntax=muttrc