You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to guess, what sed is supposed to do here, but I'm not sure.
Is the idea, to delete any old "SASL_RELAYHOST" configuration from sasl_password (/d looks like someone wanted to delete something) and than reconfigure it (echo) using currently values?
In this case, code would, IMHO be:
sed -i -e "/^$SASL_RELAYHOST .*$/d" /etc/postfix/sasl_passwd
The text was updated successfully, but these errors were encountered:
I've set up boky/postfix in docker-compose.yml.
When I had to change RELAYHOST settings and recreated + restarted container (
docker compose up -d
) I gotsed: unmatched '/'
within container logs.
I tracked it down to:
docker-postfix/scripts/common-run.sh
Lines 202 to 205 in b4c0f26
I tried to guess, what
sed
is supposed to do here, but I'm not sure.Is the idea, to delete any old "SASL_RELAYHOST" configuration from
sasl_password
(/d
looks like someone wanted todelete
something) and than reconfigure it (echo
) using currently values?In this case, code would, IMHO be:
The text was updated successfully, but these errors were encountered: