1 | # Syn-3: Special settings for email migration without password login and imapsync |
---|
2 | # ONLY USED DURING CONVERSION OF MAIL |
---|
3 | |
---|
4 | |
---|
5 | server_bind = 127.0.0.1 |
---|
6 | |
---|
7 | |
---|
8 | # drop privileges and run the process as this user |
---|
9 | run_as_user = root |
---|
10 | |
---|
11 | # drop privileges and run the process as this group |
---|
12 | run_as_group = root |
---|
13 | |
---|
14 | |
---|
15 | # run server in this path (when not using the -F switch) |
---|
16 | running_path = / |
---|
17 | |
---|
18 | # enable/disable POP3, and POP3 listen port |
---|
19 | pop3_enable = no |
---|
20 | pop3_port = 110 |
---|
21 | |
---|
22 | # enable/disable Secure POP3, and Secure POP3 listen port |
---|
23 | pop3s_enable = no |
---|
24 | #pop3s_port = 10143 |
---|
25 | |
---|
26 | # enable/disable IMAP, and IMAP listen port |
---|
27 | imap_enable = no |
---|
28 | #imap_port = 10143 |
---|
29 | |
---|
30 | # enable/disable Secure IMAP, and Secure IMAP listen port |
---|
31 | imaps_enable = yes |
---|
32 | imaps_port = 10143 |
---|
33 | |
---|
34 | # Only mail folder for IMAP or all subfolders (calendar, contacts, tasks, etc. too) |
---|
35 | imap_only_mailfolders = yes |
---|
36 | |
---|
37 | # Show Public folders for IMAP |
---|
38 | imap_public_folders = no |
---|
39 | |
---|
40 | # IMAP clients may use IDLE command |
---|
41 | imap_capability_idle = no |
---|
42 | |
---|
43 | # File with RSA key for SSL |
---|
44 | ssl_private_key_file = /usr/webint/ssl/server.pem |
---|
45 | |
---|
46 | #File with certificate for SSL |
---|
47 | ssl_certificate_file = /usr/webint/ssl/server.crt |
---|
48 | |
---|
49 | # Verify client certificate |
---|
50 | ssl_verify_client = no |
---|
51 | |
---|
52 | # Client verify file and/or path |
---|
53 | ssl_verify_file = |
---|
54 | ssl_verify_path = |
---|
55 | |
---|
56 | ############################################################## |
---|
57 | # GATEWAY LOG SETTINGS |
---|
58 | |
---|
59 | # Logging method (syslog, file) |
---|
60 | log_method = file |
---|
61 | |
---|
62 | # Loglevel (0=no logging, 5=full logging) |
---|
63 | log_level = 2 |
---|
64 | |
---|
65 | # Logfile for log_method = file, use '-' for stderr |
---|
66 | log_file = /var/log/kopano/gateway-conv.log |
---|
67 | |
---|
68 | # Log timestamp - prefix each log line with timestamp in 'file' logging mode |
---|
69 | log_timestamp = 1 |
---|