Ilo,

> i would just like to know the difference between
>
> $spam_quarantine_cutoff_level  & $sa_quarantine_cutoff_level

There is no such thing as $spam_quarantine_cutoff_level.

There are only:
  @spam_quarantine_cutoff_level_maps
and
  $sa_quarantine_cutoff_level

The amavisd program only cares about @spam_quarantine_cutoff_level_maps,
which is a list of lookup tables (a constant is a kind of a lookup table too).
The default assignment is:

  @spam_quarantine_cutoff_level_maps = (\$sa_quarantine_cutoff_level);

so if you set $sa_quarantine_cutoff_level and don't change the
default setting of @spam_quarantine_cutoff_level_maps,
then this is the resulting value from a lookup into the
@spam_quarantine_cutoff_level_maps list, independent
of recipients.

> as i set the $sa_quarantine_cutoff_level cut off level to 9, but I
> still seem to find the headers and subject of spam greater than 9 in
> the quarantine database when use SQL
> any idea why this would be happening ?

Is the cutoff limit never obeyed, or just sometimes?
A log at level 5 would tell what is happening.
I'm not aware of any problem in that area.

> if I try set $sa_quarantine_cutoff_level cut  I get the below error,
> is this a valid statement ?
> global symbol "$spam_quarantine_cutoff_level" requires
> explicit package name

Yes, because such variable does not exist (is not declared).

  Mark

------------------------------------------------------------------------------
_______________________________________________
AMaViS-user mailing list
AMaViS-user@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/amavis-user 
 AMaViS-FAQ:http://www.amavis.org/amavis-faq.php3 
 AMaViS-HowTos:http://www.amavis.org/howto/ 

Reply via email to