From 6364f70a9e6b29f66d021ef56eb960b21cd6c8df Mon Sep 17 00:00:00 2001 From: andryyy Date: Wed, 25 Mar 2020 21:24:41 +0100 Subject: [PATCH] [Dovecot] Fix var --- data/Dockerfiles/dovecot/docker-entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/Dockerfiles/dovecot/docker-entrypoint.sh b/data/Dockerfiles/dovecot/docker-entrypoint.sh index 6c4d80b9..265a28cd 100755 --- a/data/Dockerfiles/dovecot/docker-entrypoint.sh +++ b/data/Dockerfiles/dovecot/docker-entrypoint.sh @@ -44,7 +44,7 @@ EOF # Write last logins to Redis if [[ ! -z ${REDIS_SLAVEOF_IP} ]]; then cp /etc/syslog-ng/syslog-ng-redis_slave.conf /etc/syslog-ng/syslog-ng.conf - echo -n "redis:host=${REDIS_SLAVEOF_IP}:port={REDIS_SLAVEOF_PORT}" > /etc/dovecot/last_login + echo -n "redis:host=${REDIS_SLAVEOF_IP}:port=${REDIS_SLAVEOF_PORT}" > /etc/dovecot/last_login else echo -n "redis:host=${IPV4_NETWORK}.249:port=6379" > /etc/dovecot/last_login fi