I changed this plugin:
1) also searching in title
2) send email to moderator when message with spam detected
3) For this change to work emails to moderators need to be set ON. But with this change only emails for spam messages are sent.
* 1)
changed XML-file see attachment:
I added a global parameter for the emailsending. I know this is quick and dirty, but it works.
* 2)
add in file includes/functions_newpost.php below line 1015:
$emails = array_unique($emails);
#### NEW
if($GLOBALS['EMILE_spammessage'] != 1) {
$emails = array();
}
#### END NEW
return $emails;
|