mirror of
https://github.com/zokradonh/kopano-docker
synced 2025-06-07 16:06:14 +00:00
24 lines
644 B
Python
24 lines
644 B
Python
import os
|
|
import kcconf
|
|
|
|
# Component specific configurations
|
|
kcconf.configkopano({
|
|
r"/etc/kopano/server.cfg":
|
|
{
|
|
'log_file': "-",
|
|
'log_level': "3",
|
|
'attachment_path': "/kopano/data/attachments/",
|
|
'user_plugin': "ldap",
|
|
'server_listen': "",
|
|
'server_listen_tls': "*:237"
|
|
},
|
|
r"/etc/kopano/ldap.cfg":
|
|
{
|
|
'kccomment': ["!include /usr/share/kopano/ldap.openldap.cfg"],
|
|
'kcuncomment': ["!include /usr/share/kopano/ldap.active-directory.cfg"]
|
|
}
|
|
})
|
|
|
|
# Override configs from environment variables
|
|
kcconf.configkopano(kcconf.parseenvironmentvariables(r"/etc/kopano/"))
|