diff options
author | Bernhard Fröhlich <bernhard@cacert.org> | 2019-01-03 23:11:11 +0100 |
---|---|---|
committer | Bernhard Fröhlich <bernhard@cacert.org> | 2019-01-03 23:11:11 +0100 |
commit | e62578a0961f12eb17e2c8b49b0533b058a372e8 (patch) | |
tree | 394ed13b7ce4888312fbba96d827e37425ef3849 | |
parent | 63d107b7590c51aa5c420892569a1c284b2856bd (diff) | |
download | cacert-devel-e62578a0961f12eb17e2c8b49b0533b058a372e8.tar.gz cacert-devel-e62578a0961f12eb17e2c8b49b0533b058a372e8.tar.xz cacert-devel-e62578a0961f12eb17e2c8b49b0533b058a372e8.zip |
Disabled email check
-rw-r--r-- | includes/account.php | 4 | ||||
-rw-r--r-- | includes/general.php | 21 | ||||
-rw-r--r-- | stamp/report.php | 2 | ||||
-rw-r--r-- | www/index.php | 2 |
4 files changed, 25 insertions, 4 deletions
diff --git a/includes/account.php b/includes/account.php index fda748c..6c844d7 100644 --- a/includes/account.php +++ b/includes/account.php @@ -136,7 +136,7 @@ function buildSubjectFromSession() { showfooter(); exit; } - $checkemail = checkEmail($_REQUEST['newemail']); + $checkemail = checkEmailDummy($_REQUEST['newemail']); if($checkemail != "OK") { showheader(_("My CAcert.org Account!")); @@ -642,7 +642,7 @@ function buildSubjectFromSession() { showfooter(); exit; } - $checkemail = checkEmail($authaddy); + $checkemail = checkEmailDummy($authaddy); if($checkemail != "OK") { showheader(_("My CAcert.org Account!")); diff --git a/includes/general.php b/includes/general.php index 785eed6..c5c96db 100644 --- a/includes/general.php +++ b/includes/general.php @@ -552,6 +552,27 @@ @unlink($tmpfname); } + /* This function is used on testservers to replace the email address check, so you can create accounts + for arbitraty mail addresses. It only roughly checks the syntax of the address. + Do not use this on a production server! " */ + function checkEmailDummy($email) + { + $myemail = mysql_real_escape_string($email); + if(preg_match("/^([a-zA-Z0-9])+([a-zA-Z0-9\+\._-])*@([a-zA-Z0-9_-])+([a-zA-Z0-9\._-]+)+$/" , $email)) + { + $line = "250 No address check on testserver."; + $query = "insert into `pinglog` set `when`=NOW(), `email`='$myemail', `result`='$line'"; + if(is_array($_SESSION['profile'])) $query.=", `uid`='".intval($_SESSION['profile']['id'])."'"; + mysql_query($query); + + if(substr($line, 0, 3) != "250") + return $line; + else + return "OK"; + } + return "Invalid mail address"; + } + function checkEmail($email) { $myemail = mysqli_real_escape_string($_SESSION['mconn'], $email); diff --git a/stamp/report.php b/stamp/report.php index 2bc55af..356ae67 100644 --- a/stamp/report.php +++ b/stamp/report.php @@ -40,7 +40,7 @@ if($process != "") { - $checkemail = checkEmail($email); + $checkemail = checkEmailDummy($email); if($checkemail != "OK") { $errmsg = $checkemail; diff --git a/www/index.php b/www/index.php index 8449749..4f787ba 100644 --- a/www/index.php +++ b/www/index.php @@ -427,7 +427,7 @@ if ($oldid == 52 ) if($id == 2) { - $checkemail = checkEmail($_SESSION['signup']['email']); + $checkemail = checkEmailDummy($_SESSION['signup']['email']); if($checkemail != "OK") { $id = 1; |