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

Commit b3610bed authored by Akhil's avatar Akhil 🙂
Browse files

Merge branch 'smu44-ecloud-21.0.9.12-patch-98720' into 'ecloud-21.0.9.12'

Fixed DKIM record display for easy use

See merge request !79
parents 8493902d 3a6633af
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -109,7 +109,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 "================================================================================================================================="