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
entrypoint.sh contains the following conditional block that is either incorrect or unnecessary:
if [ "$MAILNAME" ]; then
echo "MAIN_TLS_ENABLE = yes" >> /etc/exim4/exim4.conf.localmacro
s
else
echo "MAIN_TLS_ENABLE = yes" >> /etc/exim4/exim4.conf.localmacros
fi
I suspect that the else clause should be setting MAIN_TLS_ENABLE to no if there is MAILNAME variable set, but I could be mistaken.
The text was updated successfully, but these errors were encountered:
entrypoint.sh contains the following conditional block that is either incorrect or unnecessary:
I suspect that the else clause should be setting MAIN_TLS_ENABLE to no if there is MAILNAME variable set, but I could be mistaken.
The text was updated successfully, but these errors were encountered: