1
0
mirror of https://github.com/Mailu/Mailu.git synced 2024-12-14 10:53:30 +02:00
Mailu/postfix/start.sh

31 lines
727 B
Bash
Raw Normal View History

2016-03-02 22:25:56 +02:00
#!/bin/bash
2016-03-02 22:25:56 +02:00
# Substitute configuration
for VARIABLE in `env | cut -f1 -d=`; do
sed -i "s={{ $VARIABLE }}=${!VARIABLE}=g" /etc/postfix/*.cf
2016-03-02 22:25:56 +02:00
done
2016-08-01 10:29:15 +02:00
# Override Postfix configuration
if [ -f /config/main.cf ]; then
while read line; do
postconf -e "$line"
done < /config/main.cf
echo "Loaded 'config/main.cf'"
else
echo "No extra postfix settings loaded because optional '/config/main.cf' not provided."
fi
# Include table-map files
if [ "$(ls -A /config/*.map)" ]; then
cp /config/*.map /etc/postfix/
postmap /etc/postfix/*.map
rm /etc/postfix/*.map
chown root:root /etc/postfix/*.db
chmod 0600 /etc/postfix/*.db
fi
2016-03-02 22:25:56 +02:00
# Actually run Postfix
2016-03-20 16:37:15 +02:00
rm -f /var/run/rsyslogd.pid
/usr/lib/postfix/master &
rsyslogd -n