source: npl/mailserver/kopano_conf/root/etc/kopano/gateway.cfg @ b4abfab

perl-5.22
Last change on this file since b4abfab was 2c1b61a, checked in by Edwin Eefting <edwin@datux.nl>, 7 years ago

migrated settings to new default configs

  • Property mode set to 100644
File size: 4.0 KB
Line 
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.
11server_hostname =
12
13# Whether to show the hostname in the logon greeting to clients.
14server_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# enable/disable POP3, and POP3 listen port
32pop3_enable     =       yes
33pop3_port       =       110
34
35# enable/disable Secure POP3, and Secure POP3 listen port
36pop3s_enable    =       yes
37pop3s_port      =       995
38
39# enable/disable IMAP, and IMAP listen port
40imap_enable     =       yes
41imap_port       =       143
42
43# enable/disable Secure IMAP, and Secure IMAP listen port
44imaps_enable    =       yes
45imaps_port      =       993
46
47# Only mail folder for IMAP or all subfolders (calendar, contacts, tasks, etc. too)
48imap_only_mailfolders   =       yes
49
50# Show Public folders for IMAP
51imap_public_folders     =       yes
52
53# IMAP clients may use IDLE command
54imap_capability_idle = yes
55
56# The maximum size of an email that can be uploaded to the gateway
57imap_max_messagesize = 128M
58
59# Override the e-mail charset and generate using utf-8 (when imap data is not present on the item)
60imap_generate_utf8 = no
61
62# Internally issue the expunge command to directly delete e-mail marked for deletion in IMAP.
63imap_expunge_on_delete = no
64
65# Store full rfc822 message during APPEND
66imap_store_rfc822 = yes
67
68# Maximum count of allowed failed IMAP command counts per client
69imap_max_fail_commands = 10
70
71# Some MUAs are sending commands via idle causing the connection
72# to reach imap_max_fail_commands and leaves the client in a
73# broken state. The clients include Apple Mail. If you experience
74# problems or uses Apple Mail set this option to yes
75#imap_ignore_command_idle = no
76
77# Disable all plaintext authentications unless SSL/TLS is used
78disable_plaintext_auth = no
79
80# File with RSA key for SSL
81ssl_private_key_file    =       /usr/webint/ssl/server.pem
82
83#File with certificate for SSL
84ssl_certificate_file    = /usr/webint/ssl/server.crt
85
86# Verify client certificate
87ssl_verify_client       =       no
88
89# Client verify file and/or path
90ssl_verify_file         =
91ssl_verify_path         =
92
93# SSL protocols to use, space-separated list of protocols
94# (SSLv3 TLSv1 TLSv1.1 TLSv1.2); prefix with ! to lock out a protocol.
95#ssl_protocols =
96
97# SSL ciphers to use, set to 'ALL' for backward compatibility
98ssl_ciphers = ALL:!LOW:!SSLv2:!EXP:!aNULL
99
100# Prefer the server's order of SSL ciphers over client's
101ssl_prefer_server_ciphers = no
102
103# Process model, using pthreads (thread) or processes (fork)
104# Processes are potentially safer from a security point of view.
105process_model = fork
106
107# For temporary files.
108# consider mounting a `tmpfs' underneath this path (wherever you
109# point it to)
110tmp_path = /tmp
111
112# Whether Gateway should filter HTML messages or not. Usually, WebApp
113# takes care of this. Letting the gateways do this improves the user latency a
114# bit, but uses more disk space. (yes/no)
115#html_safety_filter = no
116
117##############################################################
118# GATEWAY LOG SETTINGS
119
120# Logging method (syslog, file)
121log_method      =       file
122
123# Loglevel (0(none), 1(crit), 2(err), 3(warn), 4(notice), 5(info), 6(debug))
124#log_level      =       3
125
126# Logfile for log_method = file, use '-' for stderr
127log_file        =       /var/log/kopano/gateway.log
128
129# Log timestamp - prefix each log line with timestamp in 'file' logging mode
130log_timestamp   =       1
131
132# Buffer logging in what sized blocks. 0 for line-buffered (syslog-style).
133#log_buffer_size = 0
134
135# Bypass authentification when connecting as an administrator to the UNIX socket.
136# bypass_auth = no
Note: See TracBrowser for help on using the repository browser.