hi! issues with soft whitelist / amavis / SA
Mark Martinec
Mark.Martinec+amavis at ijs.si
Thu May 12 19:43:43 CEST 2011
Damian,
> I made your changes to my 50-user (changed the email addresses to
> lowercase) and restarted amavis, but to no avail. It's as though the SA
> score isn't being influenced.
Ok.
> @score_sender_maps = (
> {
> 'SISdb at lcps.k12.va.us' => -10.0,
> 'PrinterNotification at lcps.k12.va.us' => -10.0
> },
> );
If this is as it stands, it is not correct - the @score_sender_maps is a
two-level hash, the outer level takes a recipient as a key, the inner
level takes a sender.
Try:
@score_sender_maps = ({
'.' => [ # for any recipient use the following hash-type lookup:
{
'sisdb at lcps.k12.va.us' => -10.0,
lc('PrinterNotification at lcps.k12.va.us') => -10.0,
}
]
});
Mark
More information about the amavis-users
mailing list