diff --git a/emailwiz.sh b/emailwiz.sh index f4763c2..d9c9c65 100755 --- a/emailwiz.sh +++ b/emailwiz.sh @@ -207,9 +207,13 @@ echo echo echo printf "Record Name\\tRecord Type\\tText of entry\\n" +# the DKIM record is this one printf "%s._domainkey\\tTXT\\t\\tv=DKIM1; k=rsa; %s\\n" "$subdom" "$pval" +# the SPF record is this one +printf "%s\\tTXT\\tTXT\\t\\tv=spf1 mx a:%s -all\\n" "@" "$maildomain" echo echo echo "$pval" +