mirror of
				https://github.com/zokradonh/kopano-docker
				synced 2025-11-04 04:17:27 +00:00 
			
		
		
		
	* switch containers in compose file to read-only related to https://github.com/zokradonh/kopano-docker/issues/310 * make scheduler container read-only * make meet container read-only * fix konnect for read-only * make core mostly read-only * add custom location for ldap.cfg to default config * sort config option for readability * update makefile pull workaround * make kdav read-only * remove locale generation code from core startup * fix commander tests * fix store language tests * add test for a dutch mailbox * make it possible to run webapp read-only * add locale hint to the compose file * finish read-only mode for z-push
		
			
				
	
	
		
			19 lines
		
	
	
		
			522 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			522 B
		
	
	
	
		
			Python
		
	
	
	
	
	
import os
 | 
						|
import kcconf
 | 
						|
 | 
						|
# Component specific configurations
 | 
						|
kcconf.configkopano({
 | 
						|
    r"/tmp/kopano/kapid.cfg":
 | 
						|
    {
 | 
						|
        'log_level': "info",
 | 
						|
        'listen': "0.0.0.0:8039",
 | 
						|
        'DEFAULT_PLUGIN_PUBS_SECRET_KEY_FILE': "/kopano/ssl/kapid-pubs-secret.key",
 | 
						|
        'plugin_kvs_db_datasource': "/kopano/data/kapi-kvs/kvs.db",
 | 
						|
        'plugin_grapi_socket_path': "/var/run/kopano/grapi"
 | 
						|
 | 
						|
    }
 | 
						|
})
 | 
						|
 | 
						|
# Override configs from environment variables
 | 
						|
kcconf.configkopano(kcconf.parseenvironmentvariables(r"/tmp/kopano/"))
 |