Lines Matching full:email
18 * @param string or array $email - Do nothing about the e-mail address if empty
23 function rawdata($ip = null, $email = null, $username = null, $wildcards = null){ argument
25 if ($ip == null and $email == null and $username == null) return array();
32 'email' => $email,
57 * @param string $email - Do nothing about the e-mail address if empty
61 … FALSE otherwise. The array's components will be values with keys "ip", "email", and "username". …
63 …function freqcheck($ip = null, $email = null, $username = null, $returnvalue = FALSE, $border = nu… argument
67 if ($ip == null and $email == null and $username == null) return FALSE;
74 $resultarray = $this->rawdata($ip, $email, $username);
77 …if (isset($resultarray['email']['frequency'])) $emailfreq = $resultarray['email']['frequency']; el…
80 …if (isset($resultarray['email']['confidence'])) $emailconf = $resultarray['email']['confidence']; …
83 … if ($returnvalue) return array('ip' => $ipfreq, 'email' => $emailfreq, 'username' => $namefreq);
91 …if ($email != '') $logcontent .= "E-mail Address: " . $email .", frequency " . $emailfreq . ", con…
105 * @param string $email - Do nothing about the e-mail address if empty
109 … FALSE otherwise. The array's components will be values with keys "ip", "email", and "username". …
111 …function confcheck($ip = null, $email = null, $username = null, $returnvalue = FALSE, $border = nu… argument
115 if ($ip == null and $email == null and $username == null) return FALSE;
122 $resultarray = $this->rawdata($ip, $email, $username);
125 …if (isset($resultarray['email']['confidence'])) $emailconf = $resultarray['email']['confidence']; …
128 …if (isset($resultarray['email']['frequency'])) $emailfreq = $resultarray['email']['frequency']; el…
131 … if ($returnvalue) return array('ip' => $ipconf, 'email' => $emailconf, 'username' => $nameconf);
139 …if ($email != '') $logcontent .= "E-mail Address: " . $email .", frequency " . $emailfreq . ", con…
173 * @param string $email - Required
178 function addToDatabase($ip = null, $email = null, $username = null, $evidence = null){ argument
179 …if ($ip == null or $email == null or $username == null) return array('succeeded' => FALSE, 'messag…
188 'email' => $email,
213 * @param string $email
217 function whitelists ($ip = null, $email = null, $username = null) { argument
258 $emexp = explode('@', $email, 2);