You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/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"])
|