blob: f0db668006cd519d8ec77ca7ac05f60a55c6ba6f (
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
|
# Sample minimal config file. Copy this to ~/.offlineimaprc and edit to
# get started fast.
[general]
accounts = neodarz, corentin.breton
pythonfile = ~/.offlineimap.py
[Account neodarz]
localrepository = neodarz-local
remoterepository = neodarz-remote
[Repository neodarz-local]
type = Maildir
localfolders = ~/Mail/neodarz@neodarz.net
[Repository neodarz-remote]
type = IMAP
remotehost = mail.neodarz.net
remoteuser = neodarz@neodarz.net
remotepasseval = get_pass("neodarz@neodarz.net")
ssl = yes
sslcacertfile = /etc/ssl/certs/ca-certificates.crt
[Account corentin.breton]
localrepository = corentin.breton-local
remoterepository = corentin.breton-remote
[Repository corentin.breton-local]
type = Maildir
localfolders = ~/Mail/corentin.breton@neodarz.net
[Repository corentin.breton-remote]
type = IMAP
remotehost = mail.neodarz.net
remoteuser = corentin.breton@neodarz.net
remotepasseval = get_pass("corentin.breton@neodarz.net")
ssl = yes
sslcacertfile = /etc/ssl/certs/ca-certificates.crt
|