return array(
'pe' => $this->make_hook('poison', AUTH_PUBLIC, 'user', NO_HTTPS),
'pem' => $this->make_hook('mailto', AUTH_PUBLIC, 'user', NO_HTTPS),
- // 'per' => $this->make_hook('rand', AUTH_PUBLIC, 'user', NO_HTTPS),
+ // 'per' => $this->make_hook('rand', AUTH_PUBLIC, 'user', NO_HTTPS),
);
}
while (!feof($fd) && $i < $count) {
$line = trim(fgets($fd));
if (strlen($line) > 0) {
- if ($seed % 27 > 13) {
- $line .= '@' . $globals->mail->domain;
- } else {
- $line .= '@' . $globals->mail->domain2;
- }
$emails[] = $line;
++$seed;
}
while (!feof($fd)) {
$line = trim(fgets($fd));
if (strlen($line) > 0) {
- $entries[$line] = md5($line);
+ $m1 = $line . '@' . $globals->mail->domain;
+ $entries[$m1] = md5($m1);
+ $m2 = $line . '@' . $globals->mail->domain2;
+ $entries[$m2] = md5($m2);
}
}
fclose($fd);