mirror of
https://github.com/zokradonh/kopano-docker
synced 2025-06-07 07:56:12 +00:00
they need to be made available through reverse proxy and port forwarding anyways changed in https://jira.kopano.io/browse/KC-1616 Signed-off-by: Felix Bartels <felix@host-consultants.de>
17 lines
372 B
Python
17 lines
372 B
Python
import os
|
|
import kcconf
|
|
|
|
# Component specific configurations
|
|
kcconf.configkopano({
|
|
r"/etc/kopano/dagent.cfg":
|
|
{
|
|
'lmtp_listen': "0.0.0.0:2003",
|
|
'log_file': "-",
|
|
'log_level': "4",
|
|
'tmp_path': "/tmp/dagent/"
|
|
}
|
|
})
|
|
|
|
# Override configs from environment variables
|
|
kcconf.configkopano(kcconf.parseenvironmentvariables(r"/etc/kopano/"))
|