From 9bcc57cd887a63ebe46b0e431d8fcd900e8b752d Mon Sep 17 00:00:00 2001 From: Christian Boltz Date: Thu, 13 Feb 2014 19:34:24 +0000 Subject: [PATCH] functions.inc.php - check_domain(): update regex for new, longer TLDs like .photography https://sourceforge.net/p/postfixadmin/bugs/310/ git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@1635 a1433add-5e2c-0410-b055-b7f2511e0802 --- functions.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.inc.php b/functions.inc.php index 22984531..d278fc51 100644 --- a/functions.inc.php +++ b/functions.inc.php @@ -198,7 +198,7 @@ function language_selector() { * TODO: skip DNS check if the domain exists in PostfixAdmin? */ function check_domain ($domain) { - if (!preg_match ('/^([-0-9A-Z]+\.)+' . '([0-9A-Z]){2,6}$/i', ($domain))) { + if (!preg_match ('/^([-0-9A-Z]+\.)+' . '([0-9A-Z]){2,11}$/i', ($domain))) { return sprintf(Config::lang('pInvalidDomainRegex'), htmlentities($domain)); }