Browse Source

[Dovecot] fix error redirection at doveconf (#3500)

Richard Lea 5 years ago
parent
commit
c6e6d3e8ee
1 changed files with 1 additions and 1 deletions
  1. 1 1
      data/Dockerfiles/dovecot/docker-entrypoint.sh

+ 1 - 1
data/Dockerfiles/dovecot/docker-entrypoint.sh

@@ -343,7 +343,7 @@ while [[ ${VERSIONS_OK} != 'OK' ]]; do
     sleep 3
   fi
 done
-PUBKEY_MCRYPT=$(doveconf -P | grep -i mail_crypt_global_public_key 2> /dev/null| cut -d '<' -f2)
+PUBKEY_MCRYPT=$(doveconf -P 2> /dev/null | grep -i mail_crypt_global_public_key | cut -d '<' -f2)
 if [ -f ${PUBKEY_MCRYPT} ]; then
   GUID=$(cat <(echo ${MAILCOW_HOSTNAME}) /mail_crypt/ecpubkey.pem | sha256sum | cut -d ' ' -f1 | tr -cd "[a-fA-F0-9.:/] ")
   if [ ${#GUID} -eq 64 ]; then