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:
@@ -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
|
||||
|
Reference in New Issue
Block a user