|
|
@ -20,6 +20,7 @@ if(isset($_SERVER['QUERY_STRING']) && preg_match('/^.+@' . DOMAIN . '$/', $_SERV |
|
|
|
// Search for the mail address |
|
|
|
// Search for the mail address |
|
|
|
$result = ldap_search($link, USER_BASE, "mail=" . $_SERVER['QUERY_STRING']); |
|
|
|
$result = ldap_search($link, USER_BASE, "mail=" . $_SERVER['QUERY_STRING']); |
|
|
|
$user = ldap_get_entries($link, $result); |
|
|
|
$user = ldap_get_entries($link, $result); |
|
|
|
|
|
|
|
$uid = $user[0]['uid'][0]; |
|
|
|
if($user['count'] != 1) { |
|
|
|
if($user['count'] != 1) { |
|
|
|
// user not found or multiple result found |
|
|
|
// user not found or multiple result found |
|
|
|
exit; |
|
|
|
exit; |
|
|
|