2007-10-02 03:19:03 +00:00
|
|
|
<?php
|
|
|
|
|
2007-11-12 22:28:17 +00:00
|
|
|
require_once("../inc/boinc_db.inc");
|
2007-10-02 03:19:03 +00:00
|
|
|
require_once("../inc/util.inc");
|
|
|
|
require_once("../inc/email.inc");
|
|
|
|
|
|
|
|
function send_validate_email() {
|
|
|
|
global $master_url;
|
|
|
|
$user = get_logged_in_user();
|
|
|
|
$x2 = md5($user->email_addr.$user->authenticator);
|
|
|
|
send_email(
|
|
|
|
$user,
|
|
|
|
"Validate BOINC email address",
|
|
|
|
"Please visit the following link to validate the email address\n"
|
|
|
|
."of your ".PROJECT." account:\n"
|
|
|
|
.$master_url."validate_email_addr.php?validate=1&u=$user->id&x=$x2"
|
|
|
|
);
|
|
|
|
page_head("Validate email sent");
|
|
|
|
echo "
|
|
|
|
An email has been sent to $user->email_addr.
|
|
|
|
Visit the link it contains to validate your email address.
|
|
|
|
";
|
|
|
|
page_tail();
|
|
|
|
}
|
|
|
|
|
|
|
|
function validate() {
|
2008-06-11 19:36:10 +00:00
|
|
|
$x = get_str("x");
|
|
|
|
$u = get_int("u");
|
2007-10-02 03:19:03 +00:00
|
|
|
$user = lookup_user_id($u);
|
|
|
|
if (!$user) {
|
|
|
|
error_page("No such user.\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
$x2 = md5($user->email_addr.$user->authenticator);
|
|
|
|
if ($x2 != $x) {
|
|
|
|
error_page("Error in URL data - can't validate email address");
|
|
|
|
}
|
|
|
|
|
2007-11-12 22:28:17 +00:00
|
|
|
$result = $user->update("email_validated=1");
|
2007-10-02 03:19:03 +00:00
|
|
|
if (!$result) {
|
|
|
|
error_page("Database update failed - please try again later.");
|
|
|
|
}
|
|
|
|
|
|
|
|
page_head("Validate email address");
|
|
|
|
echo "
|
|
|
|
The email address of your account has been validated.
|
|
|
|
";
|
|
|
|
page_tail();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($_GET['validate']) {
|
|
|
|
validate();
|
|
|
|
} else {
|
|
|
|
send_validate_email();
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|