From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 23 13:40:04 2005 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9499516A41F for ; Fri, 23 Dec 2005 13:40:04 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 117BF43D49 for ; Fri, 23 Dec 2005 13:40:04 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id jBNDe3K3068271 for ; Fri, 23 Dec 2005 13:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id jBNDe3sm068266; Fri, 23 Dec 2005 13:40:03 GMT (envelope-from gnats) Resent-Date: Fri, 23 Dec 2005 13:40:03 GMT Resent-Message-Id: <200512231340.jBNDe3sm068266@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Xavier Beaudouin Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0837816A49E for ; Fri, 23 Dec 2005 13:33:41 +0000 (GMT) (envelope-from kiwi@kiwi.oav.net) Received: from kiwi.oav.net (kiwi.oav.net [82.225.248.92]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DBFA43D6A for ; Fri, 23 Dec 2005 13:33:40 +0000 (GMT) (envelope-from kiwi@kiwi.oav.net) Received: by kiwi.oav.net (Postfix, from userid 1000) id B94512E34C; Fri, 23 Dec 2005 14:39:21 +0100 (CET) Message-Id: <20051223133921.B94512E34C@kiwi.oav.net> Date: Fri, 23 Dec 2005 14:39:21 +0100 (CET) From: Xavier Beaudouin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/90853: [MAINTAINER] mail/postfix-policyd-sf: 1.71 Released X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Dec 2005 13:40:04 -0000 >Number: 90853 >Category: ports >Synopsis: [MAINTAINER] mail/postfix-policyd-sf: 1.71 Released >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Dec 23 13:40:03 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Xavier Beaudouin >Release: FreeBSD 5.4-RELEASE-p1 i386 >Organization: Association KAZAR / The Caudium Group >Environment: System: FreeBSD proxy.home.oav.net 5.4-RELEASE-p1 FreeBSD 5.4-RELEASE-p1 #1: Sat May 14 15:27:19 CEST 2005 >Description: 1.71 is finaly released (current 1.71 was development version) Changelog : Dec 23 2005] Changes from v1.70 -> v1.71 (new functionality+bug fixes) * mysql.c: you can now compress or encrypt policyd->mysql connections. * mysql.c: removed mysql_ping(). connections are now restablished. * policyd.c: added -v option to Policyd to show version information. * throttle_*.c: fix throttle inconsistancy. spotted by John Beaver. * throttle_*.c: fix throttle inconsistancy. spotted by SanthuBhai. * throttle_*.c: add thresholds/percentage display for throttle modules. * throttle_r.c: rcpt_total did not increment. * cidr.c: added cidr network acls. patch supplied by dan. * blacklist.c: new module that allows dns based blacklists (you can now blacklist, eg: %dsl%.rr.com to just block the RR.com adsl range, but you can still whitelist smtp.rr.com so they have to use their isp relay.) patch by Alain Fauconnet. (NB!!) if you are upgrading from <= v1.70 then please add to policyd.conf: # ip addresses/networks of hosts connecting to Policyd CONN_ACL="127.0.0.1 192.168.0.0/24" BLACKLISTDNSNAME=0 MYSQLOPT="" or if you want to compress the connection from policyd -> mysql: MYSQLOPT="CLIENT_COMPRESS" And in MySQL> CREATE TABLE blacklist_dnsname ( _blacklist char(60) NOT NULL default '', _description char(60) NOT NULL default '', _expire int(10) unsigned NOT NULL default '0', UNIQUE KEY _blacklist (_blacklist), KEY _expire (_expire) ) TYPE=MyISAM; Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- postfix-policyd-sf-1.71_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/mail/postfix-policyd-sf.old/Makefile /usr/ports/mail/postfix-policyd-sf/Makefile --- /usr/ports/mail/postfix-policyd-sf.old/Makefile Fri Dec 23 14:34:33 2005 +++ /usr/ports/mail/postfix-policyd-sf/Makefile Fri Dec 23 14:34:53 2005 @@ -7,6 +7,7 @@ PORTNAME= policyd PORTVERSION= 1.71 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= http://policyd.sourceforge.net/ \ ftp://ftp.oav.net/pkg_freebsd/distfiles/ diff -ruN --exclude=CVS /usr/ports/mail/postfix-policyd-sf.old/distinfo /usr/ports/mail/postfix-policyd-sf/distinfo --- /usr/ports/mail/postfix-policyd-sf.old/distinfo Fri Dec 23 14:34:33 2005 +++ /usr/ports/mail/postfix-policyd-sf/distinfo Fri Dec 23 14:35:05 2005 @@ -1,3 +1,3 @@ -MD5 (policyd-v1.71.tar.gz) = d8ee1e947349d94647972aa98940d359 -SHA256 (policyd-v1.71.tar.gz) = 2dc0efe7b9a7412c24de75f55ffe8bb8e5061466f435356f9273fc59ce614c54 -SIZE (policyd-v1.71.tar.gz) = 58327 +MD5 (policyd-v1.71.tar.gz) = 176a0ae051b215327f56d4d97227f8e6 +SHA256 (policyd-v1.71.tar.gz) = 514b1afa8c3513596d9326d42936e1855f385c1fb3141daf1ac99617586f697e +SIZE (policyd-v1.71.tar.gz) = 58561 --- postfix-policyd-sf-1.71_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: