diff --git a/CHANGES b/CHANGES index 847422f..83327d4 100644 --- a/CHANGES +++ b/CHANGES @@ -4,6 +4,9 @@ # ! = Changed something significant, or removed a feature # * = Fixed a bug, or made a minor improvement +--- 2.003 (2007-02-26 10:00) + * Minor documentation cleanup. + --- 2.002 (2007-02-20 05:45) * Added Julian Menhle to copyright statement. * Implemented results cache in order to prevent redundant SPF checks in diff --git a/INSTALL b/INSTALL index 37d04f9..282b9a6 100644 --- a/INSTALL +++ b/INSTALL @@ -12,12 +12,12 @@ postfix-policyd-spf-perl: Installing ---------- - 1. Copy postfix-policyd-spf-perl to /usr/lib/postfix/policyd-spf-perl + 1. Copy postfix-policyd-spf-perl to /usr/local/lib/policyd-spf-perl 2. Add the following to /etc/postfix/master.cf: policy unix - n n - - spawn - user=nobody argv=/usr/bin/perl /usr/lib/postfix/policyd-spf-perl + user=nobody argv=/usr/bin/perl /usr/local/lib/policyd-spf-perl 3. Configure the Postfix policy service in /etc/postfix/main.cf: diff --git a/README b/README index 9a386ae..92dd3a6 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -postfix-policyd-spf-perl 2.002 +postfix-policyd-spf-perl 2.003 A Postfix SMTPd policy server for SPF checking (C) 2007 Scott Kitterman and Julian Mehnle @@ -58,7 +58,7 @@ Testing the policy daemon To test the policy daemon by hand, execute: - % perl /usr/lib/postfix/policyd-spf-perl + % perl /usr/local/lib/policyd-spf-perl Each query is a bunch of attributes. Order does not matter, and the daemon uses only a few of all the attributes shown below: @@ -67,7 +67,8 @@ uses only a few of all the attributes shown below: protocol_state=RCPT protocol_name=SMTP helo_name=some.domain.tld - queue_id=8045F2AB23 + queue_id= + instance=71b0.45e2f5f1.d4da1.0 sender=foo@bar.tld recipient=bar@foo.tld client_address=1.2.3.4 diff --git a/debian/changelog b/debian/changelog index f26b6dd..25bedf0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +postfix-policyd-spf-perl (2.003-0ubuntu1) feisty; urgency=low + + * New upstream release + + -- Scott Kitterman Mon, 26 Feb 2007 10:00:00 -0500 + postfix-policyd-spf-perl (2.002-0ubuntu1) feisty; urgency=low * New upstream release to prevent appending multiple SPF received headers to diff --git a/debian/postfix-policyd-spf-perl.8 b/debian/postfix-policyd-spf-perl.8 index 9ea5b0b..c92f02f 100644 --- a/debian/postfix-policyd-spf-perl.8 +++ b/debian/postfix-policyd-spf-perl.8 @@ -128,12 +128,12 @@ .\" ======================================================================== .\" .IX Title "postfix-policyd-spf-perl 1p" -.TH postfix-policyd-spf-perl 8p "2007-02-19" +.TH postfix-policyd-spf-perl 8p "2007-02-26" .SH "NAME" postfix-policyd-spf-perl \- pure-Perl Postfix policy daemon for SPF checking .SH "VERSION" .IX Header "VERSION" -2\.002 +2\.003 .SH "USAGE" .IX Header "USAGE" @@ -204,8 +204,8 @@ uses only a few of all the attributes shown below: protocol_state=RCPT protocol_name=SMTP helo_name=some.domain.tld - queue_id=8045F2AB23 - instance=12345.6789 + queue_id= + instance=71b0.45e2f5f1.d4da1.0 sender=foo@bar.tld recipient=bar@foo.tld client_address=1.2.3.4 diff --git a/postfix-policyd-spf-perl b/postfix-policyd-spf-perl index dbc61ec..75c6396 100755 --- a/postfix-policyd-spf-perl +++ b/postfix-policyd-spf-perl @@ -2,7 +2,7 @@ # postfix-policyd-spf-perl # http://www.openspf.org/Software -# version 2.002 +# version 2.003 # # (C) 2007 Scott Kitterman # (C) 2007 Julian Mehnle @@ -22,7 +22,7 @@ # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -use version; our $VERSION = qv('2.002'); +use version; our $VERSION = qv('2.003'); use strict;