Skip to content

Commit

Permalink
Add CAA to default enabled records during initial setup
Browse files Browse the repository at this point in the history
  • Loading branch information
NetDistrict committed Jun 16, 2018
1 parent 21e9bcd commit 9cd87e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solutedns.php
Expand Up @@ -86,7 +86,7 @@ function solutedns_activate() {
$query = "INSERT IGNORE INTO mod_solutedns_settings (setting,value) VALUES ('eula', '');";
$pdo->exec($query);

$query = "INSERT IGNORE INTO mod_solutedns_settings (setting,value) VALUES ('record_types', 'A,AAAA,CNAME,MX,NS,SRV,TXT,SSHFP,TLSA');";
$query = "INSERT IGNORE INTO mod_solutedns_settings (setting,value) VALUES ('record_types', 'A,AAAA,CAA,CNAME,MX,NS,SRV,TXT,SSHFP,TLSA');";
$pdo->exec($query);

$query = "INSERT IGNORE INTO mod_solutedns_settings (setting,value) VALUES ('soa_hostmaster', 'hostmaster.{domain}');";
Expand Down

0 comments on commit 9cd87e5

Please sign in to comment.