DKIM record not complete

Pzz

Verified User
Joined
May 20, 2013
Messages
138
Location
The Hague area, The Netherlands
I'd like to use DKIM for mail handled by Google Apps. When I perform:

Code:
https://toolbox.googleapps.com/apps/dig/#TXT/google._domainkey.<mydomain>.nl

The reply is:

Code:
;ANSWER
google._domainkey.<mydomain>.nl. 599 IN TXT "v=DKIM1"

The Google-App Support also noticed an incomplete record

In DirectAdmin my TXT record looks like:

Code:
google._domainkey	TXT	v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCqiqJ+Ax1Tj5ZqVVjJGwbVENlZm46dkK6rzBJKmUGTxlsotLEiA9p8tIx8V6v9sc8QW4Wz7kK3+rBY/CdCsQ....etc

It seems I'm missing a part of my record....?
 
You need to add " and " before and after your DKIM key, like this (I use your DKIM key above as example):

Code:
google._domainkey	TXT	"v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCqiqJ+Ax1Tj5ZqVVjJGwbVENlZm46dkK6rzBJKmUGTxlsotLEiA9p8tIx8V6v9sc8QW4Wz7kK3+rBY/CdCsQ....etc"

Also make sure that there is NO line breaks when you copy the DKIM from Google and paste it.
 
Last edited:
Back
Top