|
From: Florent <flo...@ho...> - 2004-04-20 13:30:10
|
I don't know if that's gonna help ...
I had to add this to the amavisd program ( vi `which amavisd` ) to the %
local_delivery_aliases hash:
'spam-quar' =>
sub { ("$QUARANTINEDIR/spam_quarantine", undef) },
'virus-quar' =>
sub { ("$QUARANTINEDIR/virus_quarantine", undef) },
(line 6663 or so)
then in amavisd.conf :
$QUARANTINEDIR="/var/amavisd/quarantine";
$spam_quarantine_to = 'spam-quar';
$virus_quarantine_to = 'virus-quar';
That's what I had to do to avoid using variant3.
Florent
|