pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/security/amavisd-new Update to 2.5.1.
details: https://anonhg.NetBSD.org/pkgsrc/rev/f49bb0ae8579
branches: trunk
changeset: 529347:f49bb0ae8579
user: xtraeme <xtraeme%pkgsrc.org@localhost>
date: Fri Jun 01 04:41:07 2007 +0000
description:
Update to 2.5.1.
This release adds checking of a number of archive members to improve
protection from runaway dearchivers.
It fixes SQL quarantining of mail with a null sender, and recognizes
PostgreSQL error S8006.
Parsing of invalid header has been improved.
Calling 'finish' on a SA message object was added.
A nonstandard SMTP status code 254 is no longer used, and enforcing
of option 8BITMIME is avoid even on 8-bit contents.
Checking of eval status was improved to recognize additional failure
modes.
Disabling of MIME decoding and invoking of a file(1) utility has been
made possible. An AV entry for ArcaVir was added.
diffstat:
security/amavisd-new/Makefile | 6 +++---
security/amavisd-new/distinfo | 10 +++++-----
security/amavisd-new/patches/patch-aa | 16 ++++++++--------
3 files changed, 16 insertions(+), 16 deletions(-)
diffs (73 lines):
diff -r db0117c01d28 -r f49bb0ae8579 security/amavisd-new/Makefile
--- a/security/amavisd-new/Makefile Fri Jun 01 03:34:23 2007 +0000
+++ b/security/amavisd-new/Makefile Fri Jun 01 04:41:07 2007 +0000
@@ -1,14 +1,14 @@
-# $NetBSD: Makefile,v 1.30 2007/05/10 12:58:27 xtraeme Exp $
+# $NetBSD: Makefile,v 1.31 2007/06/01 04:41:07 xtraeme Exp $
DISTNAME= amavisd-new-${VERSION}${PATCHLEVEL}
PKGNAME= amavisd-new-${VERSION}${PATCHLEVEL:S/-//}
-PKGREVISION= 1
+#PKGREVISION= 1
CATEGORIES= security mail
MASTER_SITES= http://www.ijs.si/software/amavisd/ \
http://mirrors.catpipe.net/amavisd-new/ \
http://mirror.mainloop.se/amavisd/
-VERSION= 2.5.0
+VERSION= 2.5.1
PATCHLEVEL= # empty
MAINTAINER= jdunn%aquezada.com@localhost
diff -r db0117c01d28 -r f49bb0ae8579 security/amavisd-new/distinfo
--- a/security/amavisd-new/distinfo Fri Jun 01 03:34:23 2007 +0000
+++ b/security/amavisd-new/distinfo Fri Jun 01 04:41:07 2007 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.10 2007/05/05 15:18:41 xtraeme Exp $
+$NetBSD: distinfo,v 1.11 2007/06/01 04:41:07 xtraeme Exp $
-SHA1 (amavisd-new-2.5.0.tar.gz) = b520c2bb5a5fd93d894466de10a89573de336da5
-RMD160 (amavisd-new-2.5.0.tar.gz) = b84a75b57489c6fc3ce4340b420e7fd1339e5f19
-Size (amavisd-new-2.5.0.tar.gz) = 780990 bytes
-SHA1 (patch-aa) = 5fc651ecc78240d82f9346f68eb25f17de946ea4
+SHA1 (amavisd-new-2.5.1.tar.gz) = 1a93e3c773f51d2c5062ee9fc5a4b0a782758c43
+RMD160 (amavisd-new-2.5.1.tar.gz) = bd9e5dd9619abbacf4f1b0daf1c1fabda3b68b7c
+Size (amavisd-new-2.5.1.tar.gz) = 786898 bytes
+SHA1 (patch-aa) = ce833a7fe370391b44fc413e84789fbca557cc4a
diff -r db0117c01d28 -r f49bb0ae8579 security/amavisd-new/patches/patch-aa
--- a/security/amavisd-new/patches/patch-aa Fri Jun 01 03:34:23 2007 +0000
+++ b/security/amavisd-new/patches/patch-aa Fri Jun 01 04:41:07 2007 +0000
@@ -1,9 +1,9 @@
-$NetBSD: patch-aa,v 1.4 2006/10/02 12:39:30 obache Exp $
+$NetBSD: patch-aa,v 1.5 2007/06/01 04:41:07 xtraeme Exp $
---- amavisd.conf.orig 2006-06-27 11:31:50.000000000 +0000
-+++ amavisd.conf
-@@ -14,15 +14,15 @@ use strict;
- # @bypass_spam_checks_maps = (1); # uncomment to DISABLE anti-spam code
+--- amavisd.conf.orig 2007-06-01 06:33:09.000000000 +0200
++++ amavisd.conf 2007-06-01 06:36:24.000000000 +0200
+@@ -15,15 +15,15 @@
+ # $bypass_decode_parts = 1; # controls running of decoders&dearchivers
$max_servers = 2; # num of pre-forked children (2..15 is common), -m
-$daemon_user = 'vscan'; # (no default; customary: vscan or amavis), -u
@@ -14,15 +14,15 @@
$mydomain = 'example.com'; # a convenient default for other settings
-# $MYHOME = '/var/amavis'; # a convenient default for other settings, -H
-+$MYHOME = '@AMAVIS_DIR@'; # a convenient default for other settings, -H
++$MYHOME = '@AMAVIS_DIR@'; # a convenient default for other settings, -H
$TEMPBASE = "$MYHOME/tmp"; # working directory, needs to exist, -T
- $ENV{TMPDIR} = $TEMPBASE; # environment variable TMPDIR
+ $ENV{TMPDIR} = $TEMPBASE; # environment variable TMPDIR, used by SA, etc.
-$QUARANTINEDIR = '/var/virusmails'; # -Q
+$QUARANTINEDIR = '@AMAVIS_QUARANTINE@'; # -Q
# $quarantine_subdir_levels = 1; # add level of subdirs to disperse quarantine
# $daemon_chroot_dir = $MYHOME; # chroot directory or undef, -R
-@@ -91,7 +91,7 @@ $mailfrom_to_quarantine = ''; # null ret
+@@ -124,7 +124,7 @@
# $recipient_delimiter = '+'; # undef disables address extensions altogether
# when enabling addr extensions do also Postfix/main.cf: recipient_delimiter=+
Home |
Main Index |
Thread Index |
Old Index