1
0
mirror of https://github.com/docker-mailserver/docker-mailserver.git synced 2025-07-16 07:24:44 +02:00

Merge pull request #1226 from erik-wramner/fix_dovecot_respawning

Fixed bug when dh.pem/dhparam.pem exists with ONE_DIR. The tests passed in my fork, so I'll merge this at once to get it out before more people run into problems.
This commit is contained in:
Erik Wramner
2019-08-13 07:49:29 +02:00
committed by GitHub

View File

@ -1261,7 +1261,7 @@ function _setup_postfix_dhparam() {
fi
# Copy from the state directory to the working location
rm /etc/postfix/dhparams.pem && cp $DHPARAMS_FILE /etc/postfix/dhparams.pem
rm -f /etc/postfix/dhparams.pem && cp $DHPARAMS_FILE /etc/postfix/dhparams.pem
else
if [ ! -f /etc/postfix/dhparams.pem ]; then
if [ -f /etc/dovecot/dh.pem ]; then
@ -1293,7 +1293,7 @@ function _setup_dovecot_dhparam() {
fi
# Copy from the state directory to the working location
rm /etc/dovecot/dh.pem && cp $DHPARAMS_FILE /etc/dovecot/dh.pem
rm -f /etc/dovecot/dh.pem && cp $DHPARAMS_FILE /etc/dovecot/dh.pem
else
if [ ! -f /etc/dovecot/dh.pem ]; then
if [ -f /etc/postfix/dhparams.pem ]; then