Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 16 Jan 2007 18:00:28 +0100 (CET)
From:      Jan-Peter Koopmann <j.koopmann@seceidos.de>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/108004: [MAINTAINER] mail/MailScanner: update to 4.57.6
Message-ID:  <200701161700.l0GH0SZR010968@services.intern.seceidos.de>
Resent-Message-ID: <200701161720.l0GHKGXU089658@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         108004
>Category:       ports
>Synopsis:       [MAINTAINER] mail/MailScanner: update to 4.57.6
>Confidential:   no
>Severity:       critical
>Priority:       high
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Tue Jan 16 17:20:16 GMT 2007
>Closed-Date:
>Last-Modified:
>Originator:     Jan-Peter Koopmann
>Release:        FreeBSD 4.9-STABLE i386
>Organization:
>Environment:
System: FreeBSD services.intern.seceidos.de 4.9-STABLE FreeBSD 4.9-STABLE #0: Mon Jan  5 10:56:46 CET
>Description:
- Update to 4.57.6

16/12/2006 New in Version 4.57.7-1
==================================
* New Features and Improvements *
1 Added new configuration setting
  Max Spam Check Size = 150000
  If a message is bigger than this size, then all the spam checks are
  skipped and the messages is not spam.
  This saves a lot of time decoding and matching against huge messages.
  New languages.conf setting needing translation:
    skippedastoobig = not spam (too large)
2 Improved install-Clam-SA.tar.gz so that it contains version numbers of
  contents.
2 Phishing Whitelist is now also used with less strict phishing net.
3 Add of the "Modify Subject" configuration options now also take the values
  "start" and "end", so that you can move any of the Subject: line tags to
  the end of the line in case that is what you need to do.
4 Speeded up the relaunch of MailScanner child processes. So the detrimental
  effects of the delays caused by a MailScanner "restart" will be greatly
  reduced.
4 Released as release candidate for 4.57 on December 1st.
5 Bug in spam handling (spam would be delivered when it should not be) fixed.
  Thanks to Mirko Acimas for spotting and reporting this one.
5 Bug in ham handling (same problem was spam handling).
5 spam.lists.conf updated.
7 Added a few accessor functions for LastSpam.com.


Generated with FreeBSD Port Tools 0.63
>How-To-Repeat:
>Fix:

--- MailScanner-4.57.6_1.patch begins here ---
Index: Makefile
===================================================================
RCS file: /home/ncvs/ports/mail/mailscanner/Makefile,v
retrieving revision 1.57
diff -u -r1.57 Makefile
--- Makefile	3 Dec 2006 12:45:55 -0000	1.57
+++ Makefile	16 Jan 2007 16:59:54 -0000
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	MailScanner
-PORTVERSION=	4.56.8
+PORTVERSION=	4.57.6
 PORTREVISION=	1
 CATEGORIES=	mail
 MASTER_SITES=	http://www.mailscanner.info/files/4/tar/
@@ -253,9 +253,10 @@
 	@${MKDIR} ${DATADIR}
 	cd ${WRKSRC}/etc && ${FIND} reports -type d ! -name "*.old" -exec \
 		${MKDIR} ${DATADIR}/{} \;
-	# cd ${WRKSRC}/etc && ${FIND} reports -type f ! -name "*.orig" -exec ...
+	# cd ${WRKSRC}/etc && ${FIND} reports -type f ! \( -name "*.orig" -exec ...
 	cd ${WRKSRC}/etc && ${FIND} reports \( -type d -name "*.old" -prune \) \
-		-o \( -type f ! -name "*.orig" -exec ${INSTALL_DATA} {} ${DATADIR}/{}.sample \; \)
+		-o \( -type f ! \( -name "*.orig" -o -name "*.bak" \) \
+		-exec ${INSTALL_DATA} {} ${DATADIR}/{}.sample \; \)
 	${CHMOD} -R ${BINMODE} ${DATADIR}/reports
 	#
 	# Step 5: Install lib
Index: distinfo
===================================================================
RCS file: /home/ncvs/ports/mail/mailscanner/distinfo,v
retrieving revision 1.39
diff -u -r1.39 distinfo
--- distinfo	22 Nov 2006 20:52:21 -0000	1.39
+++ distinfo	16 Jan 2007 16:59:54 -0000
@@ -1,3 +1,3 @@
-MD5 (MailScanner-install-4.56.8-1.tar.gz) = 64a117c0ae7b29413d039185ab0d6f9a
-SHA256 (MailScanner-install-4.56.8-1.tar.gz) = 2877919bee86207699a9f28f91236959ef9b7402f8c88a7664693fa62053fd1d
-SIZE (MailScanner-install-4.56.8-1.tar.gz) = 7022397
+MD5 (MailScanner-install-4.57.6-1.tar.gz) = b025773a1854140f75dca48a52818ed3
+SHA256 (MailScanner-install-4.57.6-1.tar.gz) = 52cbacb22c6a82fc39b2aef89b74774e504bb8d4baf5530c225369b08ee52754
+SIZE (MailScanner-install-4.57.6-1.tar.gz) = 7051901
Index: pkg-plist
===================================================================
RCS file: /home/ncvs/ports/mail/mailscanner/pkg-plist,v
retrieving revision 1.31
diff -u -r1.31 pkg-plist
--- pkg-plist	11 Aug 2006 20:10:29 -0000	1.31
+++ pkg-plist	16 Jan 2007 16:59:54 -0000
@@ -21,6 +21,7 @@
 lib/MailScanner/MailScanner/CustomFunctions/MyExample.pm
 lib/MailScanner/MailScanner/CustomFunctions/DavidHooton.pm
 lib/MailScanner/MailScanner/CustomFunctions/ZMRouterDirHash.pm
+lib/MailScanner/MailScanner/CustomFunctions/SpamWhitelist.pm
 lib/MailScanner/MailScanner/Exim.pm
 lib/MailScanner/MailScanner/EximDiskStore.pm
 lib/MailScanner/MailScanner/GenericSpam.pm
Index: files/CHANGES.port
===================================================================
RCS file: /home/ncvs/ports/mail/mailscanner/files/CHANGES.port,v
retrieving revision 1.11
diff -u -r1.11 CHANGES.port
--- files/CHANGES.port	23 Nov 2006 21:03:47 -0000	1.11
+++ files/CHANGES.port	16 Jan 2007 16:59:54 -0000
@@ -1,10 +1,14 @@
+Version 4.57.6_1
+================
+- Upgrade to MailScanner 4.57
+
 Version 4.56.8_1
 ================
 - fixed problem with upgrade_mailscanner_config 
 
 Version 4.56.8
 ==============
-- Upgrade to MailScanenr 4.56
+- Upgrade to MailScanner 4.56
 
 Version 4.55.10
 ===============
--- MailScanner-4.57.6_1.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200701161700.l0GH0SZR010968>