25 lines
1.2 KiB
Bash
25 lines
1.2 KiB
Bash
#!/bin/bash
|
|
|
|
if [ ! -z ${SMTP_LOGIN+x} ] && [ ! -z ${SMTP_PASSWORD+x} ] && [ "$SMTP_LOGIN" != "" ] && [ "$SMTP_PASSWORD" != "" ]; then
|
|
echo "env SMTP_LOGIN: sendgrid credentials for email routing";
|
|
echo "[smtp.sendgrid.net]:2525 ${SMTP_LOGIN}:${SMTP_PASSWORD}" >> /etc/postfix/sasl_passwd
|
|
|
|
postmap /etc/postfix/sasl_passwd
|
|
chmod 600 /etc/postfix/sasl_passwd.db
|
|
rm /etc/postfix/sasl_passwd
|
|
|
|
### update email relay configuration for SendGrid
|
|
sed -i 's/default_transport = error//g' /etc/postfix/main.cf && \
|
|
sed -i 's/relay_transport = error//g' /etc/postfix/main.cf && \
|
|
sed -i 's/relayhost = //g' /etc/postfix/main.cf && \
|
|
|
|
echo "relayhost = [smtp.sendgrid.net]:2525" >> /etc/postfix/main.cf && \
|
|
echo "smtp_tls_security_level = encrypt" >> /etc/postfix/main.cf && \
|
|
echo "smtp_sasl_auth_enable = yes" >> /etc/postfix/main.cf && \
|
|
echo "smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd" >> /etc/postfix/main.cf && \
|
|
echo "header_size_limit = 4096000" >> /etc/postfix/main.cf && \
|
|
echo "smtp_sasl_security_options = noanonymous" >> /etc/postfix/main.cf
|
|
|
|
/etc/init.d/postfix start > /dev/null
|
|
fi
|