Larry Samberg wrote:
>I am trying to change the Spam Actions filter but I don't seem to be able
>to move the spam rating slider in the conditions part ... is this
intentional?
Yes.
The spam level slider is disabled in the filter to avoid users to move
this slider when SpamSieve catches too many, or not enough spam. The
correct thing to do in this case is to mark messages as spam or good, so
SpamSieve can learn, instead of moving this slider.
If you want to have different actions for messages marked with a very
high spam level, you can write an AppleScript for this:
tell application "PowerMail"
set theMessages to current messages
repeat with msg in theMessages
if spam rating of msg > 90 then set filter criterion result to true
end repeat
end tell
Then use this AppleScript as the filter condition.
Jérôme - PowerMail Engineering
---------------------------------------------------------------------
"PowerMail is a damn fine product. I hope CTM is charging enough to
stay in business for a long time."
Tom Dillon, PowerMail user
Download a demo version from www.ctmdev.com
---------------------------------------------------------------------