mirror of
https://github.com/tuxis-ie/nsedit.git
synced 2025-04-20 20:13:40 +03:00
Implement CAA-records. Please note that pdns requires quotes around the third field: https://github.com/PowerDNS/pdns/issues/4937. Closes #141
This commit is contained in:
parent
5787659b07
commit
0e63757d19
1 changed files with 3 additions and 0 deletions
|
@ -146,6 +146,7 @@ if ($blocklogin === TRUE) {
|
||||||
<option value="SRV">SRV</option>
|
<option value="SRV">SRV</option>
|
||||||
<option value="SSHFP">SSHFP</option>
|
<option value="SSHFP">SSHFP</option>
|
||||||
<option value="TLSA">TLSA</option>
|
<option value="TLSA">TLSA</option>
|
||||||
|
<option value="CAA">CAA</option>
|
||||||
<option value="TXT">TXT</option>
|
<option value="TXT">TXT</option>
|
||||||
</select><br></td></tr>
|
</select><br></td></tr>
|
||||||
<tr><td>Content:</td><td><input type="text" id ="searchzone-content"></td></tr>
|
<tr><td>Content:</td><td><input type="text" id ="searchzone-content"></td></tr>
|
||||||
|
@ -616,6 +617,7 @@ $(document).ready(function () {
|
||||||
'SRV': 'SRV',
|
'SRV': 'SRV',
|
||||||
'SSHFP': 'SSHFP',
|
'SSHFP': 'SSHFP',
|
||||||
'TLSA': 'TLSA',
|
'TLSA': 'TLSA',
|
||||||
|
'CAA': 'CAA',
|
||||||
'DNAME': 'DNAME',
|
'DNAME': 'DNAME',
|
||||||
'DS': 'DS'
|
'DS': 'DS'
|
||||||
};
|
};
|
||||||
|
@ -637,6 +639,7 @@ $(document).ready(function () {
|
||||||
'SRV': 'SRV',
|
'SRV': 'SRV',
|
||||||
'SSHFP': 'SSHFP',
|
'SSHFP': 'SSHFP',
|
||||||
'TLSA': 'TLSA',
|
'TLSA': 'TLSA',
|
||||||
|
'CAA': 'CAA',
|
||||||
'TXT': 'TXT',
|
'TXT': 'TXT',
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Reference in a new issue