You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since moving over to using this library for some of our DNS handling, we've notice that google site verification is now broken for new domains.
This appears to be due to the fact that the above mentioned method is splitting the TXT records at 40 characters, presumably just for easier readability.
This results in split strings in the resulting record. From what I can gather, they should be concat'ing these strings together, but that does not appear to be happening.
After further reading, I found RFC4408, section 3.1.3. However, this specific RFC only related to SPF-type TXT records, and not general validation records such as the one used for Google Site Verification.
Since moving over to using this library for some of our DNS handling, we've notice that google site verification is now broken for new domains.
This appears to be due to the fact that the above mentioned method is splitting the TXT records at 40 characters, presumably just for easier readability.
This results in split strings in the resulting record. From what I can gather, they should be concat'ing these strings together, but that does not appear to be happening.
After further reading, I found RFC4408, section 3.1.3. However, this specific RFC only related to SPF-type TXT records, and not general validation records such as the one used for Google Site Verification.
I've illustrated the issue below:
I'm not sure what the best fix here is, other than changing the split to be the max, 255 characters, for TXT records.
Let me know if you need further information
The text was updated successfully, but these errors were encountered: