mirror of
				https://github.com/zokradonh/kopano-docker
				synced 2025-10-31 02:17:47 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			335 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			335 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| import os
 | |
| import kcconf
 | |
| 
 | |
| # Component specific configurations
 | |
| kcconf.configkopano({
 | |
|     r"/etc/kopano/spooler.cfg":
 | |
|     {
 | |
|         'log_file': "-",
 | |
|         'log_level': "4",
 | |
|         'tmp_path': "/tmp/spooler/"
 | |
|     }
 | |
| })
 | |
| 
 | |
| # Override configs from environment variables
 | |
| kcconf.configkopano(kcconf.parseenvironmentvariables(r"/etc/kopano/"))
 |