mirror of
https://github.com/tuxis-ie/nsedit.git
synced 2025-06-07 00:47:00 +03:00
Added support for CNAME's to zone in templates
This commit is contained in:
parent
382ca51db1
commit
1f2225cf6d
2 changed files with 13 additions and 4 deletions
|
@ -35,10 +35,18 @@ $templates[] = array(
|
|||
'name' => 'Tuxis',
|
||||
'owner' => 'username', # Set to 'public' to make it available to all users
|
||||
'records' => array(
|
||||
array(
|
||||
'name' => '',
|
||||
'type' => 'MX',
|
||||
'content' => '200 mx2.tuxis.nl')
|
||||
array(
|
||||
'name' => '',
|
||||
'type' => 'MX',
|
||||
'content' => '200 mx2.tuxis.nl'),
|
||||
array(
|
||||
'name' => '',
|
||||
'type' => 'A',
|
||||
'content' => '1.2.3.4'),
|
||||
array(
|
||||
'name' => 'www',
|
||||
'type' => 'CNAME',
|
||||
'content' => '[zonename]')
|
||||
)
|
||||
);
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue