mirror of
				https://github.com/zokradonh/kopano-docker
				synced 2025-10-31 10:27:14 +00:00 
			
		
		
		
	fix socker for ical and gateway enable non-ssl gateway and remove ssl options from docker-compose ssl for gateway could be implemented as part of https://github.com/zokradonh/kopano-docker/issues/16 Signed-off-by: Felix Bartels <felix@host-consultants.de>
		
			
				
	
	
		
			16 lines
		
	
	
		
			335 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			335 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| import os
 | |
| import kcconf
 | |
| 
 | |
| # Component specific configurations
 | |
| kcconf.configkopano({
 | |
|     r"/etc/kopano/gateway.cfg":
 | |
|     {
 | |
|         'log_file': "-",
 | |
|         'log_level': "3",
 | |
|         'tmp_path': "/tmp/gateway/"
 | |
|     }
 | |
| })
 | |
| 
 | |
| # Override configs from environment variables
 | |
| kcconf.configkopano(kcconf.parseenvironmentvariables(r"/etc/kopano/"))
 |