aboutsummaryrefslogtreecommitdiffstats
path: root/include/network.php
diff options
context:
space:
mode:
authorMax Kostikov <max@kostikov.co>2020-01-19 21:55:15 +0100
committerMax Kostikov <max@kostikov.co>2020-01-19 21:55:15 +0100
commitb81b18814ef2b4600224a08c6f97e4f1f227982d (patch)
tree9f6ac353762fcf581f62d477362eb2c94f213177 /include/network.php
parenta1ccacb825edac6ae36e5db4f62ebfe7aeaebe9f (diff)
downloadvolse-hubzilla-b81b18814ef2b4600224a08c6f97e4f1f227982d.tar.gz
volse-hubzilla-b81b18814ef2b4600224a08c6f97e4f1f227982d.tar.bz2
volse-hubzilla-b81b18814ef2b4600224a08c6f97e4f1f227982d.zip
Don't validate domain with PTR record; remove uneccessary CNAME check; add IPv6 check
Diffstat (limited to 'include/network.php')
-rw-r--r--include/network.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/network.php b/include/network.php
index f6992291d..c2edb4f8a 100644
--- a/include/network.php
+++ b/include/network.php
@@ -505,7 +505,7 @@ function z_dns_check($h,$check_mx = 0) {
// Otherwise we will assume dns_get_record() works as documented
- $opts = DNS_A + DNS_CNAME + DNS_PTR;
+ $opts = DNS_A + DNS_AAAA;
if($check_mx)
$opts += DNS_MX;