added mysql to the REQUIRE and postfix to the BEFORE.
This should get the right startup order, i.e. mysql, policyd,
postfix, for most cases.
- Update to 1.80, Changelog :
[10 Jul 2006]
Changes from v1.79 -> v1.80 (bug fixes)
* policyd.h: fix *bsd MSG_NOSIGNAL compiling issue. Patch by John Beaver.
[04 Jul 2006]
Changes from v1.78 -> v1.79 (bug fixes & new functionality)
* mysql.c: fix strncpy boundary issue. Patch by Stanislav Sinyagin.
* policyd.h: fix array boundary issue. Patch by Stanislav Sinyagin.
* throttle*.c: autoblacklist throttle abusers. Patch by Stanislav Sinyagin.
* redhat.init: redhat policyd spec file written by Tony Earnshaw.
* *.c: logging has changed and is more consistant when reporting.
* sockets.c: read()/write() is now non-blocking. Patch by Nigel Kukard.
* mysql.c: remove the use of alarm blocking when in bypass mode.
* generic.c: module failures now increment mysql failure counters.
* policyd.c: whitelisting modules requires WHITELISTING=1 to work.
* policyd.c: blacklisting modules requires BLACKLISTING=1 to work.
* policyd.c: CONN_ACL is hashed out untill i've resolved a bug thats causing
Policyd to fail calls to select() under heavy loads.
PR: ports/101583
Submitted by: maintainer (Xavier Beaudouin)
[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