From: cajus Date: Tue, 12 Oct 2010 07:18:05 +0000 (+0000) Subject: Added + to mail addresses. Closes #1076 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=76c896c6857951ae787ef828d43e56970d860b13;p=gosa.git Added + to mail addresses. Closes #1076 git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19986 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/include/utils/class_tests.inc b/gosa-core/include/utils/class_tests.inc index 61d0ecfa8..602ce0623 100644 --- a/gosa-core/include/utils/class_tests.inc +++ b/gosa-core/include/utils/class_tests.inc @@ -205,10 +205,10 @@ class tests { return (TRUE); } if ($template){ - return preg_match ("/^[._a-z0-9%-]+@[_a-z0-9-]+(\.[a-z0-9-]+)(\.[a-z0-9-]+)*$/i", + return preg_match ("/^[._a-z0-9%\+-]+@[_a-z0-9-]+(\.[a-z0-9-]+)(\.[a-z0-9-]+)*$/i", $address); } else { - return preg_match ("/^[._a-z0-9-]+@[_a-z0-9-]+(\.[a-z0-9i-]+)(\.[a-z0-9-]+)*$/i", + return preg_match ("/^[._a-z0-9\+-]+@[_a-z0-9-]+(\.[a-z0-9i-]+)(\.[a-z0-9-]+)*$/i", $address); } }