Bug 90853 - [MAINTAINER] mail/postfix-policyd-sf: 1.71 Released
Summary: [MAINTAINER] mail/postfix-policyd-sf: 1.71 Released
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-ports-bugs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-12-23 13:40 UTC by Xavier Beaudouin
Modified: 2005-12-25 23:36 UTC (History)
0 users

See Also:


Attachments
postfix-policyd-sf-1.71_1.patch (1.10 KB, patch)
2005-12-23 13:40 UTC, Xavier Beaudouin
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Xavier Beaudouin 2005-12-23 13:40:03 UTC
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
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2005-12-25 23:36:22 UTC
State Changed
From-To: open->closed

Committed, thanks!