diff --git a/CHANGES b/CHANGES index 5f001d1..03d5375 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.001 (2007-02-08 00:36) + * Safer check for local connections. + --- 2.000 (2007-02-07 17:07) * Change reject reply to 550 for RFC 2821 compliance. * Skip SPF checks for local (127.) connections diff --git a/README b/README index 00b043b..206fe1d 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -postfix-policyd-spf-perl 2.000 +postfix-policyd-spf-perl 2.001 A Postfix SMTPd policy server for SPF checking (C) 2007 Scott Kitterman 2003-2004 Meng Weng Wong diff --git a/debian/changelog b/debian/changelog index 9530ac8..e073f73 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -postfix-policyd-spf-perl (2.000-0ubuntu1) feisty; urgency=low +postfix-policyd-spf-perl (2.001-0ubuntu1) feisty; urgency=low * New upstream release for RFC compliant SPF checking. * Updated control to use libmail-spf-perl instead of the unmaintained diff --git a/debian/postfix-policyd-spf-perl.8 b/debian/postfix-policyd-spf-perl.8 index 811fd41..e537a3a 100644 --- a/debian/postfix-policyd-spf-perl.8 +++ b/debian/postfix-policyd-spf-perl.8 @@ -133,7 +133,7 @@ postfix-policyd-spf-perl \- pure-Perl Postfix policy daemon for SPF checking .SH "VERSION" .IX Header "VERSION" -2\.000 +2\.001 .SH "USAGE" .IX Header "USAGE" diff --git a/postfix-policyd-spf-perl b/postfix-policyd-spf-perl index 2ede3e6..6dcadf2 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.000 +# version 2.001 # #(C) 2007 Scott Kitterman #(C) 2003-2004 Meng Weng Wong @@ -21,7 +21,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.000'); +use version; our $VERSION = qv('2.001'); use strict;