• The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

named.conf template modification

M

MattElmore

Guest
Running Plesk 7.5.4 on FreeBSD 5.3.

Was wondering if there was a way to add an 'also-notify' directive for each domain created in named.conf.

I.E., I want the named.conf to look like this for each zone entry:

Code:
zone "somedomain.com" {
        type master;
        file "somedomain.com";
        allow-transfer {
                1.2.3.4;
                5.6.7.8;
                common-allow-transfer;
        };
        also-notify { 5.6.7.8; 1.2.3.4; };
};

Let me know if this is possible.

Thanks!
 
That's what I feared!

In the meantime, I have devised a workaround. Thank you for the reply.
 
Yeah, not by the control panel. Manual editing or a custom script to parse and re-add the lines. Script can either be put in cron, or in Event Manager to be triggered anytime a domain is created/updated.
 
Using Event Manager is an excellent idea. If nothing else to send a reminder to have someone do it manually.

Thanks for the tip!
 
Back
Top