Quote:
Originally Posted by Marv
Could you add the body of a message as fifth element ? Some (including me) could find that very useful.
|
If you find this:
PHP Code:
if ((stristr(trim($message['subject']), $killphrase)) OR
(stristr(trim($message['from']), $killphrase)) OR
(stristr(trim($message['path']), $killphrase)))
and change it to this:
PHP Code:
if ((stristr(trim($message['subject']), $killphrase)) OR
(stristr(trim($message['from']), $killphrase)) OR
(stristr(trim($message['path']), $killphrase)) OR
(stristr(trim($message['text']), $killphrase)))
This will now search the main text of the message as well.