From 2cc732f3fad60e2ce1c3e5b2e764a2ef3fc0c4db Mon Sep 17 00:00:00 2001 From: Scott Kitterman <> Date: Wed, 18 Apr 2007 18:41:31 +0000 Subject: [PATCH] Update for 2.004 release --- CHANGES | 3 +++ debian/changelog | 3 ++- debian/postfix-policyd-spf-perl.8 | 6 +++--- postfix-policyd-spf-perl | 4 ++-- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGES b/CHANGES index 59fb2b6..685bc08 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.004 (2007-04-18 15:36) + * Fix header text to work with Postfix (access 5 requirements). + --- 2.003 (2007-04-17 08:50) * Minor documentation cleanup. + Add handler for list of relay addresses to bypass. diff --git a/debian/changelog b/debian/changelog index f35e64a..f923fd9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,7 +1,8 @@ -postfix-policyd-spf-perl (2.003-0ubuntu1) gutsy; urgency=low +postfix-policyd-spf-perl (2.004-0ubuntu1) gutsy; urgency=low * New upstream release - Add handler for list of relay addresses to bypass. + - Correct header text so it's actually prepended. * Update man page for upstream changes. * Removed INSTALL.Debian and debian/docs. - No longer needed - redundant to the man page. diff --git a/debian/postfix-policyd-spf-perl.8 b/debian/postfix-policyd-spf-perl.8 index a50495d..02ddddf 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-04-17" +.TH postfix-policyd-spf-perl 8p "2007-04-18" .SH "NAME" postfix-policyd-spf-perl \- pure-Perl Postfix policy daemon for SPF checking .SH "VERSION" .IX Header "VERSION" -2\.003 +2\.004 .SH "USAGE" .IX Header "USAGE" @@ -171,7 +171,7 @@ The policy server skips SPF checks for connections from the localhost (127.) and instead prepends and logs 'SPF skipped - localhost is always allowed.' If you have relays that you want to skip SPF checks for, you can add them to relay_addresses on line 78 using standard CIDR notation in a space separated -list. For these addresses, 'X-Comment SPF skipped for whitelisted relay' is +list. For these addresses, 'X-Comment: SPF skipped for whitelisted relay' is prepended and logged. Error conditions within the policy server (that don't result in a crash) or from diff --git a/postfix-policyd-spf-perl b/postfix-policyd-spf-perl index 85f5b47..41767d7 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.003 +# version 2.004 # # (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.003'); +use version; our $VERSION = qv('2.004'); use strict;