summaryrefslogtreecommitdiffstats
path: root/sample-config
blob: dc8621208696436a23d321acdf9806e836c4565b (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# Look into meli.conf(5) for all valid configuration options, their
# descriptions and default values
#
# The syntax for including other configuration files is enclosed in `:
#`# include "account_one"`
#`# include "./account_two"`
#`# include "/home/absolute/path/to/shortcuts/config"`
# That is, the # in the beginning is part of the include directive.
#
#
#
# Setting up a Maildir account
#[accounts.account-name]
#root_folder = "/path/to/root/folder"
#format = "Maildir"
#index_style = "Conversations" # or [plain, threaded, compact]
#identity="email@address.tld"
#display_name = "Name"
#subscribed_folders = ["INBOX", "INBOX/Sent", "INBOX/Drafts", "INBOX/Junk"]

# 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"
#
# Setting up an IMAP account
#[accounts."imap"]
#root_folder = "INBOX"
#format = "imap"
#server_hostname="mail.server.tld"
#server_password="pha2hiLohs2eeeish2phaii1We3ood4chakaiv0hien2ahie3m"
#server_username="username@server.tld"
#server_port="993" # imaps
#server_port="143" # STARTTLS
#use_starttls=true #optional
#index_style = "Conversations"
#identity = "username@server.tld"
#display_name = "Name Name"
## match every folder:
#subscribed_folders = ["*" ]
## match specific folders:
#subscribed_folders = ["INBOX", "INBOX/Sent", "INBOX/Drafts", "INBOX/Junk"]

# Setting up an account for an already existing notmuch database
#[accounts.notmuch]
#root_folder = "/path/to/folder" # where .notmuch/ directory is located
#format = "notmuch"
#index_style = "conversations"
#identity="username@server.tld"
#display_name = "Name Name"
#  # notmuch folders are virtual, they are defined by their alias and the notmuch query that corresponds to their content.
#  [accounts.notmuch.folders]
#  "INBOX" = {  query="tag:inbox", subscribe = true }
#  "Drafts" = {  query="tag:draft", subscribe = true }
#  "Sent" = {  query="from:username@server.tld from:username2@server.tld", subscribe = true }
#
#[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
#[shortcuts.composing]
#edit_mail = 'e'
#
# Thread view defaults:
#[shortcuts.compact-listing]
#exit_thread = 'i'
#
#[shortcuts.contact-list]
#create_contact = 'c'
#edit_contact = 'e'

# Mail listing defaults
#[shortcuts.listing]
#prev_page = "PageUp"
#next_page = "PageDown"
#prev_folder = 'K'
#next_folder = 'J'
#prev_account = 'l'
#next_account = 'h'
#new_mail = 'm'
#set_seen = 'n'

# Pager defaults

#[shortcuts.pager]
#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.
#
#
#[pgp]
#auto_sign = false # always sign sent messages
#auto_verify_signatures = true # always verify signatures when reading signed e-mails
#gpg_binary = "/usr/bin/gpg2" #optional
#
#[terminal]
#theme = "dark" # or "light"