1 | ############################################################## |
---|
2 | # GATEWAY SETTINGS |
---|
3 | |
---|
4 | #server_bind = |
---|
5 | |
---|
6 | # Please refer to the administrator manual or manpage why HTTP is used rather than the UNIX socket. |
---|
7 | #server_socket = http://localhost:236/ |
---|
8 | |
---|
9 | # Set this value to a name to show in the logon greeting to clients. |
---|
10 | # Leave empty to use DNS to find this name. |
---|
11 | server_hostname = |
---|
12 | |
---|
13 | # Whether to show the hostname in the logon greeting to clients. |
---|
14 | server_hostname_greeting = no |
---|
15 | |
---|
16 | # drop privileges and run the process as this user |
---|
17 | #run_as_user = kopano |
---|
18 | |
---|
19 | # drop privileges and run the process as this group |
---|
20 | #run_as_group = kopano |
---|
21 | |
---|
22 | # create a pid file for stopping the service via the init.d scripts |
---|
23 | #pid_file = /var/run/kopano/gateway.pid |
---|
24 | |
---|
25 | # run server in this path (when not using the -F switch) |
---|
26 | #running_path = /var/lib/kopano |
---|
27 | |
---|
28 | # create memory coredumps upon crash [no, systemdefault, yes] |
---|
29 | #coredump_enabled = systemdefault |
---|
30 | |
---|
31 | # |
---|
32 | # Only mail folder for IMAP or all subfolders (calendar, contacts, tasks, etc. too) |
---|
33 | imap_only_mailfolders = yes |
---|
34 | |
---|
35 | # Show Public folders for IMAP |
---|
36 | imap_public_folders = yes |
---|
37 | |
---|
38 | # IMAP clients may use IDLE command |
---|
39 | imap_capability_idle = yes |
---|
40 | |
---|
41 | # The maximum size of an email that can be uploaded to the gateway |
---|
42 | imap_max_messagesize = 128M |
---|
43 | |
---|
44 | # Override the e-mail charset and generate using utf-8 (when imap data is not present on the item) |
---|
45 | imap_generate_utf8 = no |
---|
46 | |
---|
47 | # Internally issue the expunge command to directly delete e-mail marked for deletion in IMAP. |
---|
48 | imap_expunge_on_delete = no |
---|
49 | |
---|
50 | # Store full rfc822 message during APPEND |
---|
51 | imap_store_rfc822 = yes |
---|
52 | |
---|
53 | # Maximum count of allowed failed IMAP command counts per client |
---|
54 | imap_max_fail_commands = 10 |
---|
55 | |
---|
56 | # Some MUAs are sending commands via idle causing the connection |
---|
57 | # to reach imap_max_fail_commands and leaves the client in a |
---|
58 | # broken state. The clients include Apple Mail. If you experience |
---|
59 | # problems or uses Apple Mail set this option to yes |
---|
60 | #imap_ignore_command_idle = no |
---|
61 | |
---|
62 | # Disable all plaintext authentications unless SSL/TLS is used |
---|
63 | disable_plaintext_auth = no |
---|
64 | |
---|
65 | # File with RSA key for SSL |
---|
66 | ssl_private_key_file = /usr/webint/ssl/server.pem |
---|
67 | |
---|
68 | #File with certificate for SSL |
---|
69 | ssl_certificate_file = /usr/webint/ssl/server.crt |
---|
70 | |
---|
71 | # Verify client certificate |
---|
72 | ssl_verify_client = no |
---|
73 | |
---|
74 | # Client verify file and/or path |
---|
75 | ssl_verify_file = |
---|
76 | ssl_verify_path = |
---|
77 | |
---|
78 | # SSL protocols to use, space-separated list of protocols |
---|
79 | # (SSLv3 TLSv1 TLSv1.1 TLSv1.2); prefix with ! to lock out a protocol. |
---|
80 | #ssl_protocols = |
---|
81 | |
---|
82 | # SSL ciphers to use, set to 'ALL' for backward compatibility |
---|
83 | ssl_ciphers = ALL:!LOW:!SSLv2:!EXP:!aNULL |
---|
84 | |
---|
85 | # Prefer the server's order of SSL ciphers over client's |
---|
86 | ssl_prefer_server_ciphers = no |
---|
87 | |
---|
88 | # Process model, using pthreads (thread) or processes (fork) |
---|
89 | # Processes are potentially safer from a security point of view. |
---|
90 | process_model = fork |
---|
91 | |
---|
92 | # For temporary files. |
---|
93 | # consider mounting a `tmpfs' underneath this path (wherever you |
---|
94 | # point it to) |
---|
95 | tmp_path = /tmp |
---|
96 | |
---|
97 | # Whether Gateway should filter HTML messages or not. Usually, WebApp |
---|
98 | # takes care of this. Letting the gateways do this improves the user latency a |
---|
99 | # bit, but uses more disk space. (yes/no) |
---|
100 | #html_safety_filter = no |
---|
101 | |
---|
102 | ############################################################## |
---|
103 | # GATEWAY LOG SETTINGS |
---|
104 | |
---|
105 | # Logging method (syslog, file) |
---|
106 | log_method = file |
---|
107 | |
---|
108 | # Loglevel (0(none), 1(crit), 2(err), 3(warn), 4(notice), 5(info), 6(debug)) |
---|
109 | #log_level = 3 |
---|
110 | |
---|
111 | # Logfile for log_method = file, use '-' for stderr |
---|
112 | log_file = /var/log/kopano/gateway.log |
---|
113 | |
---|
114 | # Log timestamp - prefix each log line with timestamp in 'file' logging mode |
---|
115 | log_timestamp = 1 |
---|
116 | |
---|
117 | # Buffer logging in what sized blocks. 0 for line-buffered (syslog-style). |
---|
118 | #log_buffer_size = 0 |
---|
119 | |
---|
120 | # Bypass authentification when connecting as an administrator to the UNIX socket. |
---|
121 | # bypass_auth = no |
---|