mirror of
https://github.com/zokradonh/kopano-docker
synced 2025-06-06 15:36:40 +00:00
15 lines
295 B
Python
15 lines
295 B
Python
import os
|
|
import kcconf
|
|
|
|
# Component specific configurations
|
|
kcconf.configkopano({
|
|
r"/etc/kopano/ical.cfg":
|
|
{
|
|
'log_file': "-",
|
|
'log_level': "4"
|
|
}
|
|
})
|
|
|
|
# Override configs from environment variables
|
|
kcconf.configkopano(kcconf.parseenvironmentvariables(r"/etc/kopano/"))
|