summaryrefslogtreecommitdiffstats
path: root/sample-config
blob: 480c114b08d5905a4b513f213e0bfba5bce427cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# Setting up a Maildir account
#[accounts.account-name]
#root_folder = "/path/to/root/folder"
#format = "Maildir"
#index_style = "Compact" # [plain, threaded, compact]
#identity="Name <email@address.tld>"
#display_name = "Name"

# Set folder-specific settings
#  [accounts.account-name.folders]
#  "INBOX" = { rename="Inbox" }
#  "drafts" = { rename="Drafts" }
#  "foobar-devel" = { ignore = true } # don't show notifications for this folder

# Setting up an mbox account
#[accounts.mbox]
#root_folder = "/var/mail/username"
#format = "mbox"
#index_style = "Compact"
#identity="username@hostname.local"

#[pager]
#filter = "/usr/bin/pygmentize"
#pager_context = 0 # default, optional
#headers_sticky = true # default, optional

#[notifications]
#enable = true # default, optional
#script = "notify-send"
#xbiff_file_path = PATH # for use with xbiff(1)
#play_sound = true # default, optional
#sound_file = PATH # optional

#[shortcuts]
# Compact mail listing defaults:
#open_thread = '\n'
#exit_thread = 'i'
#create_contact = 'c'
#edit_contact = 'e'

# Mail listing defaults
#prev_page = PageUp,
#next_page = PageDown,
#prev_folder = 'K',
#next_folder = 'J',
#prev_account = 'l',
#next_account = 'h',
#new_mail = 'm',

# Pager defaults

#scroll_up = 'k',
#scroll_down = 'j',
#page_up = PageUp,
#page_down = PageDown,

#[composing]
# required for sending e-mail
#mailer_cmd = 'msmtp --read-recipients --read-envelope-from'
#editor_cmd = 'vim +/^$' # optional, by default $EDITOR is used.