-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.config.yaml
More file actions
30 lines (26 loc) · 1.03 KB
/
sample.config.yaml
File metadata and controls
30 lines (26 loc) · 1.03 KB
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
# Email accounts
acc1:
shortName: acc1
email: mail@acc1.net
inboxShellCommand: 'notmuch search --output=files --format=text folder:mail@acc1.net/INBOX | grep /INBOX'
deletedFolder: /tmp/trashmail
dsn: 'smtp://mail@acc1.net:password@smtp.emailserver.com:465'
acc2:
shortName: acc2
email: mail@acc2.net
inboxShellCommand: 'notmuch search --output=files --format=text folder:mail@acc2.net/INBOX | grep /INBOX'
deletedFolder: /tmp/trashmail
dsn: 'smtp://mail@acc2.net:password@smtp.emailserver.com:465'
# 'Virtual' email folders
inbox: # Collective inbox
shortName: inbox
inboxShellCommand: 'notmuch search --output=files --format=text tag:inbox | grep /INBOX'
virtual: true
unread: # All unread email in collective inbox
shortName: unread
inboxShellCommand: 'notmuch search --output=files --format=text tag:inbox AND tag:unread | grep /INBOX'
virtual: true
flagged: # All flagged (important) email
shortName: flagged
inboxShellCommand: 'notmuch search --output=files --format=text tag:flagged'
virtual: true