summaryrefslogtreecommitdiff
path: root/mail/mimedefang/patches
diff options
context:
space:
mode:
authormarkd <markd@pkgsrc.org>2004-11-10 10:48:33 +0000
committermarkd <markd@pkgsrc.org>2004-11-10 10:48:33 +0000
commitcaf97df9c76917890c52f0ec5a676812e4513b72 (patch)
treecb7bb67c65862a1d0cf43535f90b939e4819bb92 /mail/mimedefang/patches
parentd9dd180b54175b8c74f2742117ac3490c5f6cb0b (diff)
downloadpkgsrc-caf97df9c76917890c52f0ec5a676812e4513b72.tar.gz
Update mimedefang to version 2.48
Changes in 2.48: This is a bugfix release for 2.46 and 2.47, which contained several embarrassing bugs. Changes in 2.46: This release has a mechanism for Perl slaves to report back their status to the multiplexor. This allows you to see exactly what each scanning slave is doing at a given point in time. This release also features support for the "csav" virus-scanner from Command Software, and better support for Trend Micro's command line scanner. The algorithm that reconstructs MIME messages after modification is greatly improved and avoids creating useless multipart containers with only a single sub-part. A few smaller changes fix minor bugs and tighten up security. Changes in 2.45: The multiplexor has a new "-a" option to allow non-privileged users to run a restricted set of status commands. "watch-mimedefang" has been completely revamped and gives a lot of useful information about email server load. It can monitor a remote server over an SSH tunnel. The notification facility has two new messages, indicating a busy timeout and the unexpected death of a Perl slave. There is a new set of RBL functions that perform parallel DNS lookups to reduce latency. In addition, many minor features have been added, bugs have been fixed, and documentation has been cleaned up.
Diffstat (limited to 'mail/mimedefang/patches')
-rw-r--r--mail/mimedefang/patches/patch-ac10
1 files changed, 6 insertions, 4 deletions
diff --git a/mail/mimedefang/patches/patch-ac b/mail/mimedefang/patches/patch-ac
index 5d0bb5a30e4..60619ec043b 100644
--- a/mail/mimedefang/patches/patch-ac
+++ b/mail/mimedefang/patches/patch-ac
@@ -1,10 +1,10 @@
-$NetBSD: patch-ac,v 1.1 2004/03/07 11:18:33 markd Exp $
+$NetBSD: patch-ac,v 1.2 2004/11/10 10:48:33 markd Exp $
---- mimedefang.pl.in.orig 2004-03-06 04:35:35.000000000 +1300
+--- mimedefang.pl.in.orig 2004-11-10 01:09:25.000000000 +1300
+++ mimedefang.pl.in
-@@ -89,25 +89,25 @@ $VirusScannerRoutinesInitialized = 0;
-
+@@ -100,26 +100,26 @@ $VirusScannerRoutinesInitialized = 0;
$SALocalTestsOnly = 1;
+ $DoStatusTags = 0;
-$Features{'Virus:AVP'} = ('@AVP@' ne '/bin/false' ? '@AVP@' : 0);
-$Features{'Virus:AVP5'} = ('@AVP5@' ne '/bin/false' ? '@AVP5@' : 0);
@@ -36,10 +36,12 @@ $NetBSD: patch-ac,v 1.1 2004/03/07 11:18:33 markd Exp $
-$Features{'Virus:SOPHOS'} = ('@SOPHOS@' ne '/bin/false' ? '@SOPHOS@' : 0);
-$Features{'Virus:TREND'} = ('@TREND@' ne '/bin/false' ? '@TREND@' : 0);
-$Features{'Virus:TROPHIE'} = ('@TROPHIE@' ne '/bin/false' ? '@TROPHIE@' : 0);
+-$Features{'Virus:CSAV'} = ('@CSAV@' ne '/bin/false' ? '@CSAV@' : 0);
+$Features{'Virus:SOPHIE'} = ((('@SOPHIE@' ne '/bin/false') and (-x '@SOPHIE@')) ? '@SOPHIE@' : 0);
+$Features{'Virus:SOPHOS'} = ((('@SOPHOS@' ne '/bin/false') and (-x '@SOPHOS@')) ? '@SOPHOS@' : 0);
+$Features{'Virus:TREND'} = ((('@TREND@' ne '/bin/false') and (-x '@TREND@')) ? '@TREND@' : 0);
+$Features{'Virus:TROPHIE'} = ((('@TROPHIE@' ne '/bin/false') and (-x '@TROPHIE@')) ? '@TROPHIE@' : 0);
++$Features{'Virus:CSAV'} = ((('@CSAV@' ne '/bin/false') and (-x '@CSAV@')) ? '@CSAV@' : 0);
$Features{'Path:SENDMAIL'} = '@SENDMAILPROG@';
$Features{'Path:QUARANTINEDIR'} = '@QDIR@';