Switch to python and Jinja2 for the Postfix container
parent
67423b057d
commit
a11eb4ba35
@ -1,10 +1,8 @@
|
||||
FROM alpine
|
||||
|
||||
RUN apk add --no-cache bash postfix postfix-sqlite postfix-pcre rsyslog
|
||||
RUN apk add --no-cache postfix postfix-sqlite postfix-pcre rsyslog python py-jinja2
|
||||
|
||||
COPY conf /etc/postfix
|
||||
COPY rsyslog.conf /etc/rsyslog.conf
|
||||
COPY conf /conf
|
||||
COPY start.py /start.py
|
||||
|
||||
COPY start.sh /start.sh
|
||||
|
||||
CMD ["/start.sh"]
|
||||
CMD /start.py
|
||||
|
@ -0,0 +1,38 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
import jinja2
|
||||
import os
|
||||
import socket
|
||||
import glob
|
||||
import shutil
|
||||
|
||||
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")
|
||||
|
||||
for postfix_file in glob.glob("/conf/*.cf"):
|
||||
convert(postfix_file, os.path.join("/etc/postfix", os.path.basename(postfix_file)))
|
||||
|
||||
if os.path.exists("/overrides/postfix.cf"):
|
||||
for line in open("/overrides/postfix.cf").read().strip().split("\n"):
|
||||
os.system('postconf -e "{}"'.format(line))
|
||||
|
||||
if os.path.exists("/overrides/postfix.master"):
|
||||
for line in open("/overrides/postfix.master").read().strip().split("\n"):
|
||||
os.system('postconf -Me "{}"'.format(line))
|
||||
|
||||
for map_file in glob.glob("/overrides/*.map"):
|
||||
destination = os.path.join("/etc/postfix", os.path.basename(map_file))
|
||||
shutil.copyfile(map_file, destination)
|
||||
os.system("postmap {}".format(destination))
|
||||
os.remove(destination)
|
||||
|
||||
convert("/conf/rsyslog.conf", "/etc/rsyslog.conf")
|
||||
|
||||
# Run postfix
|
||||
if os.path.exists("/var/run/rsyslogd.pid"):
|
||||
os.remove("/var/run/rsyslogd.pid")
|
||||
os.system("/usr/lib/postfix/post-install meta_directory=/etc/postfix create-missing")
|
||||
os.system("/usr/lib/postfix/master &")
|
||||
os.execv("/usr/sbin/rsyslogd", ["rsyslogd", "-n"])
|
@ -1,45 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Substitute configuration
|
||||
for VARIABLE in `env | cut -f1 -d=`; do
|
||||
sed -i "s={{ $VARIABLE }}=${!VARIABLE}=g" /etc/postfix/*.cf
|
||||
done
|
||||
|
||||
# Override Postfix main configuration
|
||||
if [ -f /overrides/postfix.cf ]; then
|
||||
while read line; do
|
||||
postconf -e "$line"
|
||||
done < /overrides/postfix.cf
|
||||
echo "Loaded '/overrides/postfix.cf'"
|
||||
else
|
||||
echo "No extra postfix settings loaded because optional '/overrides/postfix.cf' not provided."
|
||||
fi
|
||||
|
||||
# Override Postfix master configuration
|
||||
if [ -f /overrides/postfix.master ]; then
|
||||
while read line; do
|
||||
postconf -Me "$line"
|
||||
done < /overrides/postfix.master
|
||||
echo "Loaded '/overrides/postfix.master'"
|
||||
else
|
||||
echo "No extra postfix settings loaded because optional '/overrides/postfix.master' not provided."
|
||||
fi
|
||||
|
||||
# Include table-map files
|
||||
if ls -A /overrides/*.map 1> /dev/null 2>&1; then
|
||||
cp /overrides/*.map /etc/postfix/
|
||||
postmap /etc/postfix/*.map
|
||||
rm /etc/postfix/*.map
|
||||
chown root:root /etc/postfix/*.db
|
||||
chmod 0600 /etc/postfix/*.db
|
||||
echo "Loaded 'map files'"
|
||||
else
|
||||
echo "No extra map files loaded because optional '/overrides/*.map' not provided."
|
||||
fi
|
||||
|
||||
# Actually run Postfix
|
||||
rm -f /var/run/rsyslogd.pid
|
||||
chown -R postfix: /queue
|
||||
/usr/lib/postfix/post-install meta_directory=/etc/postfix create-missing
|
||||
/usr/lib/postfix/master &
|
||||
exec rsyslogd -n
|
Loading…
Reference in New Issue