mirror of
				https://github.com/zokradonh/kopano-docker
				synced 2025-10-31 10:27:14 +00:00 
			
		
		
		
	* Add container for kopano-spamd * Authenticate version requests if needed * Fix building of z-push for 'supported' base image * Install kopano-spamd package by default * Smaller fixes for kopano-spamd * Fix missing file header * simplify netrc usage
		
			
				
	
	
		
			15 lines
		
	
	
		
			357 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			357 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env python3
 | |
| import os
 | |
| import kcconf
 | |
| 
 | |
| # Component specific configurations
 | |
| kcconf.configkopano({
 | |
|     r"/tmp/kopano/spamd.cfg":
 | |
|     {
 | |
|         # Certain configuration can be pre-defined at startup:
 | |
|         #'log_level': "3"
 | |
|     }
 | |
| })
 | |
| 
 | |
| # Override configs from environment variables
 | |
| kcconf.configkopano(kcconf.parseenvironmentvariables(r"/tmp/kopano/")) |