Hi for some reason the screenshot did not come through. It’s been happening a lot for first time posters. Maybe give it one more go.
I think there is something we can do via adding custom PHP code to your WordPress theme’s functions.php. Please try adding this code and then running a test.
/* Checks if email is from .ru
*
* @param lead_data ARRAY
*
* @return BOOL true for spam and false for spam
*
*/
add_action( 'inbound_check_if_spam', 'inbound_pro_filter_ru' , 20, 2 );
function inbound_pro_filter_ru( $is_spam, $lead_data ) {
$blacklist= array('.ru');
$email_address = (isset($lead_data['wpleads_email_address'])) ? $lead_data['wpleads_email_address'] : '';
/* check if domain is in array */
foreach ($blacklist as $string) {
/* is spam */
if (stristr( $email_address, $string )) {
return true;
}
}
/* is not spam */
return $is_spam;
}