/etc/kopano/gateway.cfg is in kopano-gateway 8.5.5-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 | ##############################################################
# GATEWAY SETTINGS
#server_bind =
# Please refer to the administrator manual or manpage why HTTP is used rather than the UNIX socket.
#server_socket = http://localhost:236/
# Set this value to a name to show in the logon greeting to clients.
# Leave empty to use DNS to find this name.
server_hostname =
# Whether to show the hostname in the logon greeting to clients.
server_hostname_greeting = no
# drop privileges and run the process as this user
run_as_user = kopano
# drop privileges and run the process as this group
run_as_group = kopano
# create a pid file for stopping the service via the init.d scripts
#pid_file = /var/run/kopano/gateway.pid
# run server in this path (when not using the -F switch)
#running_path = /var/lib/kopano
# create memory coredumps upon crash [no, systemdefault, yes]
#coredump_enabled = systemdefault
# enable/disable POP3, and POP3 listen port
pop3_enable = yes
pop3_port = 110
# enable/disable Secure POP3, and Secure POP3 listen port
pop3s_enable = no
pop3s_port = 995
# enable/disable IMAP, and IMAP listen port
imap_enable = yes
imap_port = 143
# enable/disable Secure IMAP, and Secure IMAP listen port
imaps_enable = no
imaps_port = 993
# Only mail folder for IMAP or all subfolders (calendar, contacts, tasks, etc. too)
imap_only_mailfolders = yes
# Show Public folders for IMAP
imap_public_folders = yes
# IMAP clients may use IDLE command
imap_capability_idle = yes
# The maximum size of an email that can be uploaded to the gateway
imap_max_messagesize = 128M
# Internally issue the expunge command to directly delete e-mail marked for deletion in IMAP.
imap_expunge_on_delete = no
# Maximum count of allowed failed IMAP command counts per client
imap_max_fail_commands = 10
# Some MUAs are sending commands via idle causing the connection
# to reach imap_max_fail_commands and leaves the client in a
# broken state. The clients include Apple Mail. If you experience
# problems or uses Apple Mail set this option to yes
#imap_ignore_command_idle = no
# Disable all plaintext authentications unless SSL/TLS is used
disable_plaintext_auth = no
# File with RSA key for SSL
ssl_private_key_file = /etc/kopano/gateway/privkey.pem
#File with certificate for SSL
ssl_certificate_file = /etc/kopano/gateway/cert.pem
# Verify client certificate
ssl_verify_client = no
# Client verify file and/or path
ssl_verify_file =
ssl_verify_path =
# SSL protocols to use, space-separated list of protocols
# (SSLv3 TLSv1 TLSv1.1 TLSv1.2); prefix with ! to lock out a protocol.
#ssl_protocols =
# SSL ciphers to use, set to 'ALL' for backward compatibility
ssl_ciphers = ALL:!LOW:!SSLv2:!EXP:!aNULL
# Prefer the server's order of SSL ciphers over client's
ssl_prefer_server_ciphers = no
# Process model, using pthreads (thread) or processes (fork)
# Processes are potentially safer from a security point of view.
process_model = thread
# For temporary files.
# consider mounting a `tmpfs' underneath this path (wherever you
# point it to)
tmp_path = /tmp
# Whether Gateway should filter HTML messages or not. Usually, WebApp
# takes care of this. Letting the gateways do this improves the user latency a
# bit, but uses more disk space. (yes/no)
#html_safety_filter = no
##############################################################
# GATEWAY LOG SETTINGS
# Logging method (syslog, file)
log_method = file
# Loglevel (0(none), 1(crit), 2(err), 3(warn), 4(notice), 5(info), 6(debug))
#log_level = 3
# Logfile for log_method = file, use '-' for stderr
log_file = /var/log/kopano/gateway.log
# Log timestamp - prefix each log line with timestamp in 'file' logging mode
log_timestamp = 1
# Buffer logging in what sized blocks. 0 for line-buffered (syslog-style).
#log_buffer_size = 0
# Bypass authentification when connecting as an administrator to the UNIX socket.
# bypass_auth = no
|