-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample.config.yaml
30 lines (26 loc) · 1.03 KB
/
sample.config.yaml
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: [email protected]
inboxShellCommand: 'notmuch search --output=files --format=text folder:[email protected]/INBOX | grep /INBOX'
deletedFolder: /tmp/trashmail
dsn: 'smtp://[email protected]:[email protected]:465'
acc2:
shortName: acc2
email: [email protected]
inboxShellCommand: 'notmuch search --output=files --format=text folder:[email protected]/INBOX | grep /INBOX'
deletedFolder: /tmp/trashmail
dsn: 'smtp://[email protected]:[email protected]: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