From 0e63757d19b88cfe5b0f4364f1852af40b88454c Mon Sep 17 00:00:00 2001 From: Mark Schouten Date: Mon, 3 Apr 2017 09:47:38 +0200 Subject: [PATCH] Implement CAA-records. Please note that pdns requires quotes around the third field: https://github.com/PowerDNS/pdns/issues/4937. Closes #141 --- index.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/index.php b/index.php index ea7e841..301478d 100644 --- a/index.php +++ b/index.php @@ -146,6 +146,7 @@ if ($blocklogin === TRUE) { +
Content: @@ -616,6 +617,7 @@ $(document).ready(function () { 'SRV': 'SRV', 'SSHFP': 'SSHFP', 'TLSA': 'TLSA', + 'CAA': 'CAA', 'DNAME': 'DNAME', 'DS': 'DS' }; @@ -637,6 +639,7 @@ $(document).ready(function () { 'SRV': 'SRV', 'SSHFP': 'SSHFP', 'TLSA': 'TLSA', + 'CAA': 'CAA', 'TXT': 'TXT', }; },