On Wed, 21 Apr 2004, Ashley M. Kirchner wrote:

>     Is there some way to execute action_quarantine() and specify what
> folder to drop the data in?

Yes, but its undocumented behavior -- don't count on it!

Before executing action_quarantine, set $QuarantineDir to wherever:

   if (spam) {
        $QuarantineDir = '/var/spool/MD-Quarantine/spam';
   } elseif (virus) {
        $QuarantineDir = '/var/spool/MD-Quarantine/virus';
   } else {
        $QuarantineDir = '/var/spool/MD-Quarantine/unknown';
   }

   action_quarantine(....);

--
David.
_______________________________________________
Visit http://www.mimedefang.org and http://www.canit.ca
MIMEDefang mailing list
[EMAIL PROTECTED]
http://lists.roaringpenguin.com/mailman/listinfo/mimedefang

Reply via email to