mirror of
https://gh.wpcy.net/https://github.com/webguyio/dam-spam.git
synced 2026-05-26 03:13:58 +08:00
20 lines
No EOL
444 B
PHP
20 lines
No EOL
444 B
PHP
<?php
|
|
|
|
if ( !defined( 'ABSPATH' ) ) {
|
|
status_header( 404 );
|
|
exit;
|
|
}
|
|
|
|
class dam_spam_check_allowed_email extends dam_spam_module {
|
|
public function process( $ip, &$stats = array(), &$options = array(), &$post = array() ) {
|
|
$this->searchname = 'Allow List Email';
|
|
$email = $post['email'];
|
|
if ( empty( $email ) ) {
|
|
return false;
|
|
}
|
|
$allow_list = $options['allow_list'];
|
|
return $this->searchList( $email, $allow_list );
|
|
}
|
|
}
|
|
|
|
?>
|