mirror of
				https://github.com/optim-enterprises-bv/Mailu.git
				synced 2025-10-31 01:57:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			715 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			715 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/python3
 | |
| 
 | |
| import jinja2
 | |
| import os
 | |
| import socket
 | |
| import glob
 | |
| import tenacity
 | |
| from tenacity import retry
 | |
| 
 | |
| convert = lambda src, dst: open(dst, "w").write(jinja2.Template(open(src).read()).render(**os.environ))
 | |
| 
 | |
| # Actual startup script
 | |
| resolve = retry(socket.gethostbyname, stop=tenacity.stop_after_attempt(100), wait=tenacity.wait_random(min=2, max=5))
 | |
| 
 | |
| os.environ["FRONT_ADDRESS"] = resolve(os.environ.get("FRONT_ADDRESS", "front"))
 | |
| 
 | |
| if "HOST_REDIS" not in os.environ: os.environ["HOST_REDIS"] = "redis"
 | |
| 
 | |
| for rspamd_file in glob.glob("/conf/*"):
 | |
|     convert(rspamd_file, os.path.join("/etc/rspamd/local.d", os.path.basename(rspamd_file)))
 | |
| 
 | |
| # Run rspamd
 | |
| os.execv("/usr/sbin/rspamd", ["rspamd", "-i", "-f"])
 | 
