MISP / x_old_misp_docker

MISP Docker (XME edition)
283 stars 168 forks source link

Postfix relayhost is not configured #102

Open xenthub opened 3 years ago

xenthub commented 3 years ago

Hello,

Inside container web, /etc/postfix/main.cf , variable relayhost is not configured because of typo in web/run.sh script:

    echo "Configuring postfix"
    if [ -z "$POSTFIX_RELAY_HOST" ]; then
            echo "POSTFIX_RELAY_HOST is not set, please configure Postfix manually later..."
    else
            postconf -e "relayhost = $POSTFIX_RELAY"
    fi

Line 30 should be $POSTFIX_RELAY_HOST

Regards.