
I'm trying to filter pre-screened spam and also filter spam using Spamassassin, here are the filters in default.pm that i'm using: $Self->{'PostMaster::PreFilterModule'}->{'4-MatchSpamMatch'} = { Module => 'Kernel::System::PostMaster::Filter::Match', Match => { 'X-Spam-Status' => 'Yes', }, Set => { 'X-OTRS-Queue' => 'spam', }, }; $Self->{'PostMaster::PreFilterModule'}->{'5-SpamAssassin'} = { Module => 'Kernel::System::PostMaster::Filter::CMD', CMD => '/usr/bin/spamassassin | grep -i "X-Spam-Status: yes"', Set => { 'X-OTRS-Queue' => 'spam', }, }; I am getting false positives and false negatives with these filters. What i might be doing wrong? -- Damian Fuentes Associate Systems Administrator Evite.com - And all was good in the wonderful land of Linux.