Also set mydestination.
This commit is contained in:
parent
a5c0f16f79
commit
4a528463da
5
run.sh
5
run.sh
@ -4,10 +4,15 @@
|
|||||||
[ -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
|
||||||
|
|
||||||
|
#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
|
||||||
|
sed -i -e '/mydestination/ s/^#*/#/' /etc/postfix/main.cf
|
||||||
|
|
||||||
echo "myhostname=$SERVER_HOSTNAME" >> /etc/postfix/main.cf
|
echo "myhostname=$SERVER_HOSTNAME" >> /etc/postfix/main.cf
|
||||||
echo "mydomain=$DOMAIN" >> /etc/postfix/main.cf
|
echo "mydomain=$DOMAIN" >> /etc/postfix/main.cf
|
||||||
|
echo 'mydestination=$myhostname' >> /etc/postfix/main.cf
|
||||||
echo 'myorigin=$mydomain' >> /etc/postfix/main.cf
|
echo 'myorigin=$mydomain' >> /etc/postfix/main.cf
|
||||||
echo "relayhost = [$SMTP_SERVER]:587" >> /etc/postfix/main.cf
|
echo "relayhost = [$SMTP_SERVER]:587" >> /etc/postfix/main.cf
|
||||||
echo "smtp_use_tls=yes" >> /etc/postfix/main.cf
|
echo "smtp_use_tls=yes" >> /etc/postfix/main.cf
|
||||||
|
Loading…
Reference in New Issue
Block a user