We have not checked for this KEYWORD for a long time now, so this
is a complete noop, and thus no PORTREVISION bump. Removing it at
this point is mostly for pedantic reasons, and partly to avoid
perpetuating this anachronism by copy and paste to future scripts.
[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 <kiwi@oav.net>
Changes from v1.66 -> v1.67 (new functionality)
* generic.c: AUTO_BLACK_LISTING was not being initialized which means
it couldnt of been working. patch by Benny Pedersen.
* *.c: records were taking twice as long to expire as what they
should be. Thanks to Sune Foldager for spotting this.
* contrib/: added debian startup/init file by Dietmar Braun.
* helo.c: used wrong variable for _expire. patch by Benny Pedersen.
* policyd.spec: new rpm spec file. submitted by Catalin Muresan
- Fix missing documentation
- Fix startup script to not use '-' in rc variables.
- Fix pid filename in default configuration pid filename.
- Added postfix-policyd-stats to gather stats using syslog
PR: ports/85868
Submitted by: maintainer