What I'm trying to do is to add specific records to all (or most part) of the domains hosted in the server using a DNS template-like syntax.
Example:
I want to add
I've already done it for the accounts created from now on (WHM -> Home »DNS Functions »Edit Zone Template) adding this snippet:
But now I need it to be set on the domains previously hosted.
How can I achieve that?
Thank you for your help
Mauricio
Example:
I want to add
smtp
, imap
and pop
CNAMES
pointing to mail.%domain%.
like this:
Code:
smtp 14400 IN CNAME mail.example.com.
imap 14400 IN CNAME mail.example.com.
pop 14400 IN CNAME mail.example.com.
Code:
pop IN CNAME %domain%.
imap IN CNAME %domain%.
smtp IN CNAME %domain%.
How can I achieve that?
Thank you for your help
Mauricio
Last edited by a moderator: