From owner-cvs-all@FreeBSD.ORG Sun Dec 25 23:38:12 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5128016A41F; Sun, 25 Dec 2005 23:38:12 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B23643D5C; Sun, 25 Dec 2005 23:38:11 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id jBPNcBB5056509; Sun, 25 Dec 2005 23:38:11 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBPNcBE1056508; Sun, 25 Dec 2005 23:38:11 GMT (envelope-from edwin) Message-Id: <200512252338.jBPNcBE1056508@repoman.freebsd.org> From: Edwin Groothuis Date: Sun, 25 Dec 2005 23:38:11 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/mail/postfix-policyd-sf Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Dec 2005 23:38:12 -0000 edwin 2005-12-25 23:38:11 UTC FreeBSD ports repository Modified files: mail/postfix-policyd-sf Makefile distinfo Log: :r /tmp/cvsJEiyM1 [MAINTAINER] mail/postfix-policyd-sf: 1.71 Released 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; PR: ports/90853 Submitted by: Xavier Beaudouin Revision Changes Path 1.9 +1 -2 ports/mail/postfix-policyd-sf/Makefile 1.7 +3 -3 ports/mail/postfix-policyd-sf/distinfo