mirror of
https://gh.wpcy.net/https://github.com/webguyio/dam-spam.git
synced 2026-05-27 03:23:56 +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_blocked_email extends dam_spam_module {
|
|
public function process( $ip, &$stats = array(), &$options = array(), &$post = array() ) {
|
|
$this->searchname = 'Block List Email';
|
|
$email = $post['email'];
|
|
if ( empty( $email ) ) {
|
|
return false;
|
|
}
|
|
$block_list = $options['block_list'];
|
|
return $this->searchList( $email, $block_list );
|
|
}
|
|
}
|
|
|
|
?>
|