mirror of
				https://github.com/optim-enterprises-bv/Mailu.git
				synced 2025-10-31 18:18:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			705 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			705 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/python
 | |
| 
 | |
| import jinja2
 | |
| import os
 | |
| import socket
 | |
| import glob
 | |
| 
 | |
| convert = lambda src, dst: open(dst, "w").write(jinja2.Template(open(src).read()).render(**os.environ))
 | |
| 
 | |
| # Actual startup script
 | |
| os.environ["FRONT_ADDRESS"] = socket.gethostbyname("front")
 | |
| os.environ["REDIS_ADDRESS"] = socket.gethostbyname("redis")
 | |
| if os.environ["WEBMAIL"] != "none":
 | |
| 	os.environ["WEBMAIL_ADDRESS"] = socket.gethostbyname("webmail")
 | |
| 
 | |
| for dovecot_file in glob.glob("/conf/*"):
 | |
|     convert(dovecot_file, os.path.join("/etc/dovecot", os.path.basename(dovecot_file)))
 | |
| 
 | |
| # Run postfix
 | |
| os.system("chown -R mail:mail /mail /var/lib/dovecot")
 | |
| os.execv("/usr/sbin/dovecot", ["dovecot", "-c", "/etc/dovecot/dovecot.conf", "-F"])
 | 
