1 | ############################################################## |
---|
2 | # GATEWAY SETTINGS |
---|
3 | |
---|
4 | server_bind = 0.0.0.0 |
---|
5 | |
---|
6 | # WARNING!! YOU MUST RUN KOPANO GATEWAY UNDER A DIFFERENT USER THAN THE SERVER PROCESS |
---|
7 | # drop privileges and run the process as this user |
---|
8 | run_as_user = kopano-gateway |
---|
9 | |
---|
10 | # drop privileges and run the process as this group |
---|
11 | run_as_group = kopano-gateway |
---|
12 | |
---|
13 | |
---|
14 | # run server in this path (when not using the -F switch) |
---|
15 | running_path = / |
---|
16 | |
---|
17 | # enable/disable POP3, and POP3 listen port |
---|
18 | pop3_enable = yes |
---|
19 | pop3_port = 110 |
---|
20 | |
---|
21 | # enable/disable Secure POP3, and Secure POP3 listen port |
---|
22 | pop3s_enable = yes |
---|
23 | pop3s_port = 995 |
---|
24 | |
---|
25 | # enable/disable IMAP, and IMAP listen port |
---|
26 | imap_enable = yes |
---|
27 | imap_port = 143 |
---|
28 | |
---|
29 | # enable/disable Secure IMAP, and Secure IMAP listen port |
---|
30 | imaps_enable = yes |
---|
31 | imaps_port = 993 |
---|
32 | |
---|
33 | # Only mail folder for IMAP or all subfolders (calendar, contacts, tasks, etc. too) |
---|
34 | imap_only_mailfolders = yes |
---|
35 | |
---|
36 | # Show Public folders for IMAP |
---|
37 | imap_public_folders = yes |
---|
38 | |
---|
39 | # IMAP clients may use IDLE command |
---|
40 | imap_capability_idle = yes |
---|
41 | |
---|
42 | # File with RSA key for SSL |
---|
43 | ssl_private_key_file = /usr/webint/ssl/server.pem |
---|
44 | |
---|
45 | #File with certificate for SSL |
---|
46 | ssl_certificate_file = /usr/webint/ssl/server.crt |
---|
47 | |
---|
48 | # Verify client certificate |
---|
49 | ssl_verify_client = no |
---|
50 | |
---|
51 | # Client verify file and/or path |
---|
52 | ssl_verify_file = |
---|
53 | ssl_verify_path = |
---|
54 | |
---|
55 | # Process model, using pthreads (thread) or processes (fork) |
---|
56 | process_model = fork |
---|
57 | |
---|
58 | |
---|
59 | imap_store_rfc822=yes |
---|
60 | |
---|
61 | |
---|
62 | ############################################################## |
---|
63 | # GATEWAY LOG SETTINGS |
---|
64 | |
---|
65 | # Logging method (syslog, file) |
---|
66 | log_method = file |
---|
67 | |
---|
68 | # Loglevel (0=no logging, 5=full logging) |
---|
69 | log_level = 2 |
---|
70 | |
---|
71 | # Logfile for log_method = file, use '-' for stderr |
---|
72 | log_file = /var/log/kopano/gateway.log |
---|
73 | |
---|
74 | # Log timestamp - prefix each log line with timestamp in 'file' logging mode |
---|
75 | log_timestamp = 1 |
---|
76 | |
---|
77 | |
---|
78 | |
---|
79 | |
---|