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