Q: | When junk mail gets passed the filter and isn't detected
as junk, I typically press
Junk Mail Filtering -> Add Sender
It would be really nice to have Junk Mail Filtering -> Add Sender & Subject To save the 2 step process. |
A: | this can be done with a script. Once written you can attach this script to a button\
n your toolbar.
Before you do this perhaps consider using Poco's ability to filter based on the contents of the message body. To do this you must filter after downloading the message. For more information on junk mail filtering see the "Junk Mail" section in the FAQ. Create a new script and enter the following commands: (Warning, this is aircode (untested)). ReadHeader $from "From:" %message Extract EMail $from ReadHeader $subject "Subject:" %message CharCount #len $subject Dec #len ChopString $subject #len 2 AppendToFile True AddStrings $junkfile $mailpath "junksender.txt" SaveBody $EMail $junkfile Set $junkfile $mailpath AddStrings $junkfile "junksubject.txt" SaveBody $junkfile $subject |