-
Notifications
You must be signed in to change notification settings - Fork 1
/
mbsyncrc
96 lines (81 loc) · 1.94 KB
/
mbsyncrc
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
# Accounts {{{
IMAPAccount ugent
Host "outlook.office365.com"
Port 993
User "felix.vanderjeugt@ugent.be"
PassCmd "mfauth access microsoft"
AuthMechs "XOAUTH2"
SSLType "IMAPS"
SSLVersions "TLSv1"
CertificateFile "/etc/ssl/certs/ca-certificates.crt"
IMAPAccount posteo
Host "posteo.de"
User "felix.vanderjeugt@posteo.net"
PassCmd "pass show other/posteo-mbsync"
SSLTYPE "IMAPS"
# }}} Accounts
# Remote Stores {{{
IMAPStore ugent-remote
Account "ugent"
IMAPStore posteo-remote
Account "posteo"
# }}}
# Local Stores {{{
MaildirStore ugent-local
Path "/data/mail/ugent/"
Inbox "/data/mail/ugent/Inbox"
Trash "/data/mail/ugent/Trash"
SubFolders "Verbatim"
MaildirStore posteo-local
Path "/data/mail/posteo/"
Inbox "/data/mail/posteo/Inbox"
# }}}
# Channels {{{
Channel ugent-inbox
Far ":ugent-remote:INBOX"
Near ":ugent-local:"
Create "Near"
SyncState "*"
Channel ugent-sent
Far ":ugent-remote:Verzonden Items"
Near ":ugent-local:Sent"
Create "Near"
SyncState "*"
Channel ugent-trash
Far ":ugent-remote:Verwijderde Items"
Near ":ugent-local:Trash"
Create "Near"
SyncState "*"
Channel posteo-inbox
Far ":posteo-remote:INBOX"
Near ":posteo-local:"
Create "Near"
SyncState "*"
Channel posteo-sent
Far ":posteo-remote:Sent"
Near ":posteo-local:Sent"
Create "Near"
SyncState "*"
Channel posteo-trash
Far ":posteo-remote:Trash"
Near ":posteo-local:Trash"
Create "Near"
SyncState "*"
Channel posteo-draft
Far ":posteo-remote:Drafts"
Near ":posteo-local:Drafts"
Create "Near"
SyncState "*"
# }}}
# Groups {{{
Group ugent
Channel "ugent-inbox"
Channel "ugent-sent"
Channel "ugent-trash"
Group posteo
Channel "posteo-inbox"
Channel "posteo-sent"
Channel "posteo-trash"
Channel "posteo-draft"
# }}}
# vim: foldmethod=marker