At 18:37 -0300 13-04-2005, Frederico Madeira wrote:
Dear friends,

My spamassassin is identified spam and qmail-scanner st25 isn't delete the spam.
What could be is the probem ??


my qmail-scanner.pl have the follow config:

my $sa_delta_site='0';
my $sa_delta='0.5';
my $sa_quarantine_site='0';
my $sa_quarantine='0.2';
my $smaildir_site="$vmaildir";
my $smaildir='';
my $sa_forward_site='';
my $sa_fwd_verbose_site='0';
my $sa_forward='';
my $sa_fwd_verbose='';
my $sa_delete_site='0';
my $sa_delete='0.2';
my $sa_reject_site='0';
my $sa_reject='';
my $sa_alt='1';
my $sa_debug='1';
my $sa_hdr_report_site='0';
my $sa_hdr_report='1';


Hi

Maybe I have to document it better, although it looked obvious for me...

You have to set ONLY the '*_site' values (as does the configure script) and leave empty the other variables that are set by qmail-scanner itself. So your configuration must be:

my $sa_delta_site='0.5';      # But it must be lower than sa_quarantine_site
my $sa_delta='';

my $sa_quarantine_site='0.2';   # Must be lower than sa_delete_site or '0'
my $sa_quarantine='';

my $smaildir_site="$vmaildir";
my $smaildir='';

my $sa_forward_site='';
my $sa_fwd_verbose_site='0';
my $sa_forward='';
my $sa_fwd_verbose='';

my $sa_delete_site='0.2';      # Too low!!!
my $sa_delete='';

my $sa_reject_site='0';
my $sa_reject='';

my $sa_hdr_report_site='1';
my $sa_hdr_report='';

########## These are global values, so you can considerer them by their own
my $sa_alt='1';
my $sa_debug='1';

Regards

Salvatore




------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _______________________________________________ Qmail-scanner-general mailing list Qmail-scanner-general@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/qmail-scanner-general

Reply via email to