Lines Matching full:email
48 $USERINFO['mail'] = $uinfo['email'];
129 $email = filter_var($user['email'], FILTER_SANITIZE_EMAIL);
131 //$personMarkup = "$email<div><img src='$img?sz=50'></div>";
133 //Check verify email in google
135 msg('Auth Google Error: '.$email.' not verifed in google account');
140 //check email in list allows
141 if (!$this->_check_email_domain($email)) {
142 msg('Auth Google Error: access denied for '.$email);
155 $this->createUser($login, md5(rand().$login), $user['name'], $email, $grps);
157 } elseif ($udata['name'] != $user['name'] || $udata['email'] != $email) {
159 $this->modifyUser($login, array('name'=>$user['name'], 'email'=>$email));
165 $USERINFO['mail'] = $email;
192 function _check_email_domain($email) { argument
193 //check email in allow domains
200 //email
201 if ($email == $domain) return true;
204 if (preg_match("/@([^@ ]+)$/is", $email, $n)) {
234 /* Sometimes system ask for a user in email format and we need to replace @ for _
246 …so, if the system ask for the name of the current user, I send the email replacing @ for _ cause …
247 user logged with googleauth can't change its email by hand.