From 5454fd1b34657442eb094f7c272f0284b52433b8 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Thu, 18 Dec 2014 13:02:23 +0545 Subject: Allow dot at end of FQDN for a host Redmine #4124 has discussion of this. --- etc/inc/util.inc | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/etc/inc/util.inc b/etc/inc/util.inc index 5d4a1e2..232dd30 100644 --- a/etc/inc/util.inc +++ b/etc/inc/util.inc @@ -686,8 +686,13 @@ function is_hostname($hostname) { if (!is_string($hostname)) return false; - if (preg_match('/^(?:(?:[a-z0-9_]|[a-z0-9_][a-z0-9_\-]*[a-z0-9_])\.)*(?:[a-z0-9_]|[a-z0-9_][a-z0-9_\-]*[a-z0-9_])$/i', $hostname)) - return true; + if (is_domain($hostname)) + if ((substr_count($hostname, ".") == 1) && ($hostname[strlen($hostname)-1] == ".")) { + /* Only a single dot at the end like "test." - hosts cannot be directly in the root domain. */ + return false; + } else { + return true; + } else return false; } -- cgit v1.1