pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mail/mimedefang Update mimedefang to version 2.48



details:   https://anonhg.NetBSD.org/pkgsrc/rev/9a8109433a88
branches:  trunk
changeset: 483287:9a8109433a88
user:      markd <markd%pkgsrc.org@localhost>
date:      Wed Nov 10 10:48:33 2004 +0000

description:
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:

 mail/mimedefang/Makefile         |   4 ++--
 mail/mimedefang/distinfo         |   8 ++++----
 mail/mimedefang/patches/patch-ac |  10 ++++++----
 3 files changed, 12 insertions(+), 10 deletions(-)

diffs (57 lines):

diff -r c010756f93b7 -r 9a8109433a88 mail/mimedefang/Makefile
--- a/mail/mimedefang/Makefile  Wed Nov 10 10:38:18 2004 +0000
+++ b/mail/mimedefang/Makefile  Wed Nov 10 10:48:33 2004 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.18 2004/07/18 06:11:14 markd Exp $
+# $NetBSD: Makefile,v 1.19 2004/11/10 10:48:33 markd Exp $
 
-DISTNAME=              mimedefang-2.44
+DISTNAME=              mimedefang-2.48
 CATEGORIES=            mail
 MASTER_SITES=          http://www.mimedefang.org/static/
 
diff -r c010756f93b7 -r 9a8109433a88 mail/mimedefang/distinfo
--- a/mail/mimedefang/distinfo  Wed Nov 10 10:38:18 2004 +0000
+++ b/mail/mimedefang/distinfo  Wed Nov 10 10:48:33 2004 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.8 2004/07/18 06:11:14 markd Exp $
+$NetBSD: distinfo,v 1.9 2004/11/10 10:48:33 markd Exp $
 
-SHA1 (mimedefang-2.44.tar.gz) = d98a11b810156fef7af27579ec037dcbc51e2c44
-Size (mimedefang-2.44.tar.gz) = 277642 bytes
+SHA1 (mimedefang-2.48.tar.gz) = e393b56a0756a48c1bd838a3eb16ae4db4bca320
+Size (mimedefang-2.48.tar.gz) = 298905 bytes
 SHA1 (patch-ab) = d3aad74681427dc30a851ce9bd1708b61d0f7529
-SHA1 (patch-ac) = e76247df9baf66737d4343db4ce8bb072d26d95b
+SHA1 (patch-ac) = 2ac9762a68b48092aa73ee166d3456a94d10b6ca
diff -r c010756f93b7 -r 9a8109433a88 mail/mimedefang/patches/patch-ac
--- a/mail/mimedefang/patches/patch-ac  Wed Nov 10 10:38:18 2004 +0000
+++ b/mail/mimedefang/patches/patch-ac  Wed Nov 10 10:48:33 2004 +0000
@@ -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 @@
 -$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@';



Home | Main Index | Thread Index | Old Index