1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-12 01:25:01 +02:00

Issue #1114, Fixes #1041 - Mail validation issues. Removed problematic remote-server email-check feature.

This commit is contained in:
Cameron
2015-08-21 12:53:09 -07:00
parent 88070b7af8
commit d3fbef7840
5 changed files with 42 additions and 18 deletions

View File

@@ -1281,7 +1281,8 @@ class validatorClass
}
break;
case 3 : // Check email address against remote server
if (vartrue($pref['signup_remote_emailcheck']))
/* if (vartrue($pref['signup_remote_emailcheck']))
{
require_once(e_HANDLER."mail_validation_class.php");
list($adminuser,$adminhost) = split ("@", SITEADMINEMAIL);
@@ -1296,6 +1297,7 @@ class validatorClass
$errMsg = ERR_INVALID_EMAIL;
}
}
*/
break;
default :
echo 'Invalid vetMethod: '.$options['vetMethod'].'<br />'; // Really a debug aid - should never get here