Home
last modified time | relevance | path

Searched refs:email (Results 201 – 225 of 1609) sorted by path

12345678910>>...65

/plugin/authorlist/
H A Dplugin.info.txt3 email jl.alice@yandex.ru
/plugin/authorstats/
H A Dplugin.info.txt3 email sophron@latthi.com, conx@xanthopoulos.info
/plugin/authowncloud/
H A Dplugin.info.txt3 email lebowski[at]corvus[dot]uberspace[dot]de
/plugin/authphpbb3/
H A Dauth.php246 … * array['mail'] string User's email address.
H A Dplugin.info.txt3 email eole.dev@outlook.com
/plugin/authplaincas/
H A Dplugin.info.txt3 email fabian@esn.org
/plugin/authradius/
H A Dplugin.info.txt3 email toddswitzert@gmail.com
/plugin/authremoteuser/
H A DREADME.md113 loginname:password:Real Name:email:groups
123 * `email`:
H A Dplugin.info.txt3 email dokuwiki.org@rips.de
/plugin/authsaml/
H A Dplugin.info.txt3 email sixto.martin.garcia@gmail.com
/plugin/authshibboleth/plugin/authshibboleth/
H A Dplugin.info.txt3 email ivan.novakov@debug.cz
/plugin/authsmartcard/
H A Dplugin.info.txt3 email sbbowman@gmail.com
/plugin/authsmf20/
H A Dplugin.info.txt3 email digger@mysmf.net
/plugin/authsplit/
H A DREADME20 real names, email addresses and groups. This is most probably specific to
30 HTTP authentication can't offer, such as email addresses. This is the scenario
71 tries to obtain the additional user information (real name, email address,
127 - for login names, real names and email addresses, authsplit will try to
225 store additional user information such as real names, email addresses and
243 configuration settings no longer have any effect since all email addresses and
H A Dauth.php95 /* To add and delete user accounts, modify real names, email addresses,
321 * mail string email address of the user
398 $user, $pass, $name, $email
H A Dplugin.info.txt3 email pieter@hollants.com
/plugin/authsqlite/
H A DREADME.md25 'SELECT pass, fullname AS name, email AS mail
38 $conf['plugin']['authsqlite']['FilterEmail'] = 'u.email LIKE \'%{email}\'';
42 'INSERT INTO user (login, pass, email, fullname)
43 VALUES (\'%{user}\', \'%{pass}\', \'%{email}\', \'%{name}\')';
56 $conf['plugin']['authsqlite']['UpdateEmail'] = 'email=\'%{email}\'';
H A Dauth.sql6 email text not null default '', field
8 unique(email)
H A Dplugin.info.txt3 email clay@lazarusid.com
/plugin/authucenter/
H A Dauth.php90 $email = '';
95 list($uid, $username, $password, $email) = $this->_uc_user_login($user, $pass);
120 $email = $user_info['mail'];
128 $email = $user_info['email'];
139 $USERINFO['mail'] = $email;
179 list($uid, $username, $email) = $data;
182 'mail' => $email,
458 private function _uc_user_register($username, $password, $email){ argument
459 return uc_user_register($this->_convert_charset($username), $password, $email);
462 private function _uc_user_edit($username, $oldpw, $newpw, $email){ argument
[all …]
/plugin/authucenter/lib/uc_client/
H A Dclient.php355 function uc_user_register($username, $password, $email, $questionid = '', $answer = '', $regip = ''… argument
356 …'register', array('username'=>$username, 'password'=>$password, 'email'=>$email, 'questionid'=>$qu…
388 function uc_user_edit($username, $oldpw, $newpw, $email, $ignoreoldpw = 0, $questionid = '', $answe… argument
389 … array('username'=>$username, 'oldpw'=>$oldpw, 'newpw'=>$newpw, 'email'=>$email, 'ignoreoldpw'=>$i…
404 function uc_user_checkemail($email) { argument
405 return call_user_func(UC_API_FUNC, 'user', 'check_email', array('email'=>$email));
426 function uc_user_merge($oldusername, $newusername, $uid, $password, $email) { argument
427 …=>$oldusername, 'newusername'=>$newusername, 'uid'=>$uid, 'password'=>$password, 'email'=>$email));
/plugin/authucenter/lib/uc_client/control/
H A Duser.php67 $email = $this->input('email');
75 if(($status = $this->_check_email($email)) < 0) {
87 $email = $this->input('email');
92 if(!$ignoreoldpw && $email && ($status = $this->_check_email($email, $username)) < 0) {
156 $email = $this->input('email');
157 return $this->_check_email($email);
229 $email = $this->input('email');
233 $uid = $_ENV['user']->add_user($newusername, $password, $email, $uid);
257 function _check_email($email, $username = '') { argument
261 if(!$_ENV['user']->check_emailformat($email)) {
[all …]
/plugin/authucenter/lib/uc_client/lib/
H A Duccode.class.php102 function parseemail($email, $text) { argument
106 return '<a href="mailto:'.$email.'">'.$email.'</a>';
108 return '<a href="mailto:'.substr($email, 1).'">'.$text.'</a>';
/plugin/authucenter/lib/uc_client/model/
H A Dmail.php61 foreach($mail['emails'] as $email) {
62 if(empty($email)) continue;
63 …$values_arr[] = "('', '$email', '$mail[subject]', '$mail[message]', '$mail[frommail]', '$mail[char…
81 foreach($mail['emails'] as $email) {
82 if(empty($email)) continue;
83 $mail['email_to'][] = $email;
H A Duser.php36 function get_user_by_email($email) { argument
37 $arr = $this->db->fetch_first("SELECT * FROM ".UC_DBTABLEPRE."members WHERE email='$email'");
92 function check_emailformat($email) { argument
93 …return strlen($email) > 6 && strlen($email) <= 32 && preg_match("/^([a-z0-9\-_.+]+)@([a-z0-9\-]+[.…
96 function check_emailaccess($email) { argument
103 …if(($accessemail && !preg_match($accessexp, $email)) || ($censoremail && preg_match($censorexp, $e…
113 function check_emailexists($email, $username = '') { argument
115 …$email = $this->db->result_first("SELECT email FROM ".UC_DBTABLEPRE."members WHERE email='$email'…
116 return $email;
129 …function add_user($username, $password, $email, $uid = 0, $questionid = '', $answer = '', $regip =… argument
[all …]

12345678910>>...65