mirror of
https://github.com/chatmail/relay.git
synced 2026-05-19 20:38:05 +00:00
docker: don't overwrite existing DKIM keys on container start
opendkim-genkey was running unconditionally on every startup, check if file exists and skip.
This commit is contained in:
@@ -56,7 +56,9 @@ if [ "$FORCE_REINIT_INI_FILE" = true ]; then
|
|||||||
INI_CMD_ARGS=--force
|
INI_CMD_ARGS=--force
|
||||||
fi
|
fi
|
||||||
|
|
||||||
/usr/sbin/opendkim-genkey -D /etc/dkimkeys -d $MAIL_DOMAIN -s opendkim
|
if [ ! -f /etc/dkimkeys/opendkim.private ]; then
|
||||||
|
/usr/sbin/opendkim-genkey -D /etc/dkimkeys -d $MAIL_DOMAIN -s opendkim
|
||||||
|
fi
|
||||||
chown opendkim:opendkim /etc/dkimkeys/opendkim.private
|
chown opendkim:opendkim /etc/dkimkeys/opendkim.private
|
||||||
chown opendkim:opendkim /etc/dkimkeys/opendkim.txt
|
chown opendkim:opendkim /etc/dkimkeys/opendkim.txt
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user