-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathzmigrator.cfg
49 lines (38 loc) · 1.24 KB
/
zmigrator.cfg
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
[Global]
# Path to imapsync
# Default is fine if it's in the user's path
#imapsync=imapsync
# global imapsync options
# python list via ast.literal_eval()
imapsync_opts=["--syncinternaldates","--dry","--justfoldersizes"]
[Source]
# Zimbra server
zimbra_server=zimbra.example.com
# Zimbra admin server
# Default is to use zimbra_server's value, so this is optional
# admin_server=zimbraadmin.example.com
# Zimbra admin user and password
admin_pass=password_goes_here
# Source domain name
domain=example.com
# imapsync options for source server
# Separate global/source/dest options just for organizational purposes
# Any argument should work here
# python list via ast.literal_eval()
imapsync_opts=["--port1","993","--ssl1"]
[Dest]
# Zimbra server
zimbra_server=zimbra.example.com
# Zimbra admin server
# Default is to use zimbra_server's value, so this is optional
# admin_server=zimbraadmin.example.com
# Zimbra admin user and password
admin_pass=password_goes_here
# Destination domain name
domain=temp.example.com
# Separate global/source/dest options just for organizational purposes
# Any argument should work here
# python list via ast.literal_eval()
imapsync_opts=["--port2","993","--ssl2"]