Control Web Panel

WebPanel => DNS => Topic started by: debo1990 on August 06, 2019, 08:54:11 AM

Title: Text record length problem
Post by: debo1990 on August 06, 2019, 08:54:11 AM
Can not enter any txt record which is more than 255 characters?

Any solution?

Basically I want to add a DKIM record (2048 bit) which is more than 255 characters.
Title: Re: Text record length problem
Post by: Igor S. on August 06, 2019, 04:27:37 PM
Hi, you can try to split it and make something like below:
Code: [Select]
sometext._domainkey IN TXT ("v=DKIM1; k=rsa;  -p=first 200 chars"
sometext._domainkey IN TXT "last 200 chars")
or one more way:
Code: [Select]
sometext._domainkey IN TXT  ("v=DKIM1; k=rsa;  200 chars" "last 200 chars")
Title: Re: Text record length problem
Post by: Starburst on September 03, 2019, 04:37:13 AM
Did you ever get the 2048-bit key to work.

I'm having problems.

Thanks,
David
Title: Re: Text record length problem
Post by: studio4host on September 03, 2019, 07:13:07 AM
file editing of dns zone is not working ?
Title: Re: Text record length problem
Post by: Starburst on September 03, 2019, 07:52:27 PM
file editing of dns zone is not working ?

DNS is hosted by 3rd party (Vultr)

I have another server running iRedMail with no problem with 2048-bit key (DNS also at Vultr)

Just can't get it working with CWP. :/
Title: Re: Text record length problem
Post by: elies on January 08, 2021, 09:41:09 AM
Hi, it works this way:

mail._domainkey IN TXT  "v=DKIM1;  -p=First 200 chars" "Remaining chars"