Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3a6633af authored by Sylvain Manceau's avatar Sylvain Manceau
Browse files

Fixed DKIM record display for easy use

parent e1c7be38
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 "================================================================================================================================="