Lucas Gabriel Vuotto <lu...@sexy.is> writes:

> On Fri, Apr 05, 2024 at 08:29:20PM -0500, Robert B. Carleton wrote:
>> ---cut here---
>>         600     IN      TXT     "v=spf1 ip4:155.138.244.69 
>> ip6:2001:19f0:6402:39e:5400:4ff:fe49:8b44 a mx -all"
>> _dmarc   600   IN      TXT 
>> "v=DMARC1;p=none;sp=none;pct=100;adkim=r;aspf=r;fo=1;ri=86400;rua=mailto:dm...@rbcarleton.net";
>> 
>> dk-rsa-20240404._domainkey      600     IN      TXT 
>> v=DKIM1;p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzqZNKQgFO2yTVwVmDr+t2w3ez+q1NOEcSSRmHEwK9PnD+grQYHgJeKNpUi3E4xHBDR/HVWxC4aRsZqOIj71SVzRY6GmDV7y2qRZWk4eNOT16u/dedjQFJO7H9lP221zbgGzCI2Kbut1ZVCYttr5qi6L1zuIQvbPJrlwgZpyK+x3wpqvdBmDwdrBFOpLKsODrXsIflsE7NK2TQFJsy4EnVn2FACjiq+X1ut1DMT/If3wzA9q2yjT6kRCwT0z28icAUtF6JHXGmrmWAcLYiLX/ARnVaC7wrZnZ5462AWRXi/hqvfhPHoH7tdMzmmwHBQUsK7I3VkCasVm7VBNKza/0twIDAQAB
>> dk-ed25519-20240404._domainkey  600     IN      TXT 
>> v=DKIM1;k=ed25519;p=xWqw3KWGhpEmIw5M0/eNi3SKcA6euhAmPh3Xs/vhPxs=
>> 
>> dk-metis-rsa-20240404._domainkey        600     IN      TXT     
>> v=DKIM1;p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzqZNKQgFO2yTVwVmDr+t2w3ez+q1NOEcSSRmHEwK9PnD+grQYHgJeKNpUi3E4xHBDR/HVWxC4aRsZqOIj71SVzRY6GmDV7y2qRZWk4eNOT16u/dedjQFJO7H9lP221zbgGzCI2Kbut1ZVCYttr5qi6L1zuIQvbPJrlwgZpyK+x3wpqvdBmDwdrBFOpLKsODrXsIflsE7NK2TQFJsy4EnVn2FACjiq+X1ut1DMT/If3wzA9q2yjT6kRCwT0z28icAUtF6JHXGmrmWAcLYiLX/ARnVaC7wrZnZ5462AWRXi/hqvfhPHoH7tdMzmmwHBQUsK7I3VkCasVm7VBNKza/0twIDAQAB
>> dk-metis-ed25519-20240404._domainkey    600     IN      TXT     
>> v=DKIM1;k=ed25519;p=Ro41ZKYFrQ8n3wlyDnj2wARjTc5VVrePBawtMNy83GE=
>> ---cut here---
>> 
>> Then metis.rbcarleton.net:
>> 
>> ---cut here---
>>         600     IN      TXT     "v=spf1 ip4:155.138.244.69 
>> ip6:2001:19f0:6402:39e:5400:4ff:fe49:8b44 a mx -all"
>> _dmarc.metis   600   IN      TXT 
>> "v=DMARC1;p=none;sp=none;pct=100;adkim=r;aspf=r;fo=1;ri=86400;rua=mailto:dm...@rbcarleton.net";
>> dk-metis-rsa-20240404._domainkey        600     IN      TXT     
>> v=DKIM1;p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzqZNKQgFO2yTVwVmDr+t2w3ez+q1NOEcSSRmHEwK9PnD+grQYHgJeKNpUi3E4xHBDR/HVWxC4aRsZqOIj71SVzRY6GmDV7y2qRZWk4eNOT16u/dedjQFJO7H9lP221zbgGzCI2Kbut1ZVCYttr5qi6L1zuIQvbPJrlwgZpyK+x3wpqvdBmDwdrBFOpLKsODrXsIflsE7NK2TQFJsy4EnVn2FACjiq+X1ut1DMT/If3wzA9q2yjT6kRCwT0z28icAUtF6JHXGmrmWAcLYiLX/ARnVaC7wrZnZ5462AWRXi/hqvfhPHoH7tdMzmmwHBQUsK7I3VkCasVm7VBNKza/0twIDAQAB
>> dk-metis-ed25519-20240404._domainkey    600     IN      TXT     
>> v=DKIM1;k=ed25519;p=Ro41ZKYFrQ8n3wlyDnj2wARjTc5VVrePBawtMNy83GE=
>> ---cut here---
>
> As said in other reply, your record is only "v=DKIM1". Asuming the text
> you shared is part of your zonefile, you should surround the value with
> double-quotes or escape the ";", as it's interpreted as a comment. Also
> remember to split the value every 255 characters. You can achieve that
> so with this small script:
>
>       echo "v=DKIM1;..." | perl -nE 'say join(" ", map {qq{"$_"}} 
> unpack("(A255)*", $_))'
>
> hth,
>       Lucas

Thanks for everone's help. TXT record strings that were too long, and
not using quotes were the issues. Thanks again for pushing me over the
finish line.

Best,

                        --Bruce



Reply via email to