* Added single file version of 2.002 for postfix examples

* Minor documentation cleanup in svn head.
This commit is contained in:
Scott Kitterman 2007-02-26 15:10:54 +00:00
commit 15fe331c67
6 changed files with 21 additions and 11 deletions

View file

@ -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

View file

@ -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:

7
README
View file

@ -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 <scott@kitterman.com> and Julian Mehnle
<julian@mehnle.net>
@ -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

6
debian/changelog vendored
View file

@ -1,3 +1,9 @@
postfix-policyd-spf-perl (2.003-0ubuntu1) feisty; urgency=low
* New upstream release
-- Scott Kitterman <scott@kitterman.com> 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

View file

@ -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

View file

@ -2,7 +2,7 @@
# postfix-policyd-spf-perl
# http://www.openspf.org/Software
# version 2.002
# version 2.003
#
# (C) 2007 Scott Kitterman <scott@kitterman.com>
# (C) 2007 Julian Mehnle <julian@mehnle.net>
@ -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;