Don't add duplicate configuration entries.
This commit is contained in:
parent
76dfdb8f59
commit
0cb738084c
1 changed files with 37 additions and 16 deletions
53
run.sh
53
run.sh
|
@ -1,27 +1,48 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
[ "${DEBUG}" == "yes" ] && set -x
|
||||||
|
|
||||||
|
function add_config_value() {
|
||||||
|
local key=${1}
|
||||||
|
local value=${2}
|
||||||
|
local config_file=${3:-/etc/postfix/main.cf}
|
||||||
|
[ "${key}" == "" ] && echo "ERROR: No key set !!" && exit 1
|
||||||
|
[ "${value}" == "" ] && echo "ERROR: No value set !!" && exit 1
|
||||||
|
|
||||||
|
echo "Setting configuration option ${key} with value: ${value}"
|
||||||
|
sed -i -e "/^#\?\(\s*${key}\s*=\s*\).*/{s//\1${value}/;:a;n;:ba;q}" \
|
||||||
|
-e "\$a${key}=${value}" \
|
||||||
|
${config_file}
|
||||||
|
}
|
||||||
|
|
||||||
[ -z "${SMTP_SERVER}" ] && echo "SMTP_SERVER is not set" && exit 1
|
[ -z "${SMTP_SERVER}" ] && echo "SMTP_SERVER is not set" && exit 1
|
||||||
[ -z "${SMTP_USERNAME}" ] && echo "SMTP_USERNAME is not set" && exit 1
|
[ -z "${SMTP_USERNAME}" ] && echo "SMTP_USERNAME is not set" && exit 1
|
||||||
[ -z "${SMTP_PASSWORD}" ] && echo "SMTP_PASSWORD is not set" && exit 1
|
[ -z "${SMTP_PASSWORD}" ] && echo "SMTP_PASSWORD is not set" && exit 1
|
||||||
[ -z "${SERVER_HOSTNAME}" ] && echo "SERVER_HOSTNAME is not set" && exit 1
|
[ -z "${SERVER_HOSTNAME}" ] && echo "SERVER_HOSTNAME is not set" && exit 1
|
||||||
|
|
||||||
#Get the domain from the server host name
|
#Get the domain from the server host name
|
||||||
DOMAIN=`echo $SERVER_HOSTNAME |awk -F. '{$1="";OFS="." ; print $0}' | sed 's/^.//'`
|
DOMAIN=`echo ${SERVER_HOSTNAME} |awk -F. '{$1="";OFS="." ; print $0}' | sed 's/^.//'`
|
||||||
|
|
||||||
#Comment default mydestination, we will set it bellow
|
# Set needed config options
|
||||||
sed -i -e '/mydestination/ s/^#*/#/' /etc/postfix/main.cf
|
add_config_value "myhostname" ${SERVER_HOSTNAME}
|
||||||
|
add_config_value "mydomain" ${DOMAIN}
|
||||||
|
add_config_value "mydestination" '$myhostname'
|
||||||
|
add_config_value "myorigin" '$mydomain'
|
||||||
|
add_config_value "relayhost" "[${SMTP_SERVER}]:587"
|
||||||
|
add_config_value "smtp_use_tls" "yes"
|
||||||
|
add_config_value "smtp_sasl_auth_enable" "yes"
|
||||||
|
add_config_value "smtp_sasl_password_maps" "hash:\/etc\/postfix\/sasl_passwd"
|
||||||
|
add_config_value "smtp_sasl_security_options" "noanonymous"
|
||||||
|
|
||||||
echo "myhostname=$SERVER_HOSTNAME" >> /etc/postfix/main.cf
|
# Create sasl_passwd file with auth credentials
|
||||||
echo "mydomain=$DOMAIN" >> /etc/postfix/main.cf
|
if [ ! -f /etc/postfix/sasl_passwd ]; then
|
||||||
echo 'mydestination=$myhostname' >> /etc/postfix/main.cf
|
grep -q "${SMTP_SERVER}" /etc/postfix/sasl_passwd > /dev/null 2>&1
|
||||||
echo 'myorigin=$mydomain' >> /etc/postfix/main.cf
|
if [ $? -gt 0 ]; then
|
||||||
echo "relayhost = [$SMTP_SERVER]:587" >> /etc/postfix/main.cf
|
echo "Adding SASL authentication configuration"
|
||||||
echo "smtp_use_tls=yes" >> /etc/postfix/main.cf
|
echo "[${SMTP_SERVER}]:587 ${SMTP_USERNAME}:${SMTP_PASSWORD}" >> /etc/postfix/sasl_passwd
|
||||||
echo "smtp_sasl_auth_enable = yes" >> /etc/postfix/main.cf
|
postmap /etc/postfix/sasl_passwd
|
||||||
echo "smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd" >> /etc/postfix/main.cf
|
fi
|
||||||
echo "smtp_sasl_security_options = noanonymous" >> /etc/postfix/main.cf
|
fi
|
||||||
|
|
||||||
echo "[$SMTP_SERVER]:587 $SMTP_USERNAME:$SMTP_PASSWORD" >> /etc/postfix/sasl_passwd
|
#Start services
|
||||||
postmap /etc/postfix/sasl_passwd
|
supervisord
|
||||||
|
|
||||||
supervisord
|
|
||||||
|
|
Loading…
Reference in a new issue