From 3a6633af3128510af67d071bcd2fd4f75b574e91 Mon Sep 17 00:00:00 2001 From: Sylvain Manceau Date: Thu, 25 Aug 2022 10:14:02 +0000 Subject: [PATCH] Fixed DKIM record display for easy use --- scripts/postinstall.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/postinstall.sh b/scripts/postinstall.sh index 88d9230..a8b1a81 100755 --- a/scripts/postinstall.sh +++ b/scripts/postinstall.sh @@ -108,7 +108,7 @@ echo -e "\n\n\n" echo -e "Please add the following records to your domain's DNS configuration:\n" find /mnt/repo-base/volumes/mail/dkim/ -maxdepth 1 -mindepth 1 -type d | while read line; do DOMAIN=$(basename $line) - echo " - DKIM record (TXT) for $DOMAIN:" && cat $line/mail.public.key + echo " - DKIM record (TXT) for $DOMAIN:" && sed $'N;s/"\\n\t"//g' $line/mail.public.key done echo "=================================================================================================================================" -- GitLab