plesk/ext-route53

(Feature) (White Label DNS) Ability to change default SOA and NS records

Closed this issue · 1 comments

We are using this extension to manage a server with Route53 DNS, and we configured the route 53 as a white label dns, so instead of using ns-XXX.awsdns-XX.net, I want to use ns1.mydomain.com.

The problem is that even I changing the default nameservers on plesk settings, it's using the reusable delegation set's nameservers when I create new domains, and simply don't respect the NS entries that I put on the domain DNS Zone settings.

Apparently the problem is on this two commented lines:

/**
* Exportable Resource Record types
*/
'supportedTypes' => array(
'A',
'TXT',
'CNAME',
'MX',
'SRV',
'SPF',
'AAAA',
// 'SOA',
// 'NS',
),

That are preventing the SOA records being used.

My suggestion

IMO, the extension should have a setting that allow renaming the Reusable Delegation Set nameservers, and use that Nameservers to configure the domains.

Please integrate this feature. I needed!