From a036d5d5f1dd50eca38545aa592394b42a228d2f Mon Sep 17 00:00:00 2001 From: andryyy Date: Mon, 1 Jun 2020 21:43:28 +0200 Subject: [PATCH] [Helper] Fix expiry-dates.sh --- helper-scripts/expiry-dates.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helper-scripts/expiry-dates.sh b/helper-scripts/expiry-dates.sh index 8baeee22..ff8d08bf 100644 --- a/helper-scripts/expiry-dates.sh +++ b/helper-scripts/expiry-dates.sh @@ -8,5 +8,5 @@ DOVECOT=$(echo | openssl s_client -connect ${MAILCOW_HOSTNAME}:143 -starttls ima NGINX=$(echo | openssl s_client -connect ${MAILCOW_HOSTNAME}:443 2>/dev/null | openssl x509 -inform pem -noout -enddate | cut -d "=" -f 2) echo TLS expiry dates: echo Postfix: ${POSTFIX} -echo Dovecot: ${POSTFIX} -echo Nginx: ${POSTFIX} +echo Dovecot: ${DOVECOT} +echo Nginx: ${NGINX}