\n$x\n";
}
$cpid = process_user_text($_GET["cpid"]);;
$authenticator = process_user_text($_GET["authenticator"]);;
if (!$cpid || !$authenticator) {
reply("missing argument\n");
exit();
}
$user = lookup_user_auth($authenticator);
if (!$user) {
reply("bad authenticator\n");
exit();
}
$x = $user->cross_project_id.$user->email_addr;
if (md5($x) == $cpid) {
reply( "\n");
} else {
reply( "bad CPID\n");
}
?>