postfix-policyd-spf-perl 2.000 release

This commit is contained in:
Scott Kitterman 2007-02-07 22:10:45 +00:00
commit ce99d4e74f
2 changed files with 3 additions and 3 deletions

View file

@ -4,7 +4,7 @@
# ! = Changed something significant, or removed a feature
# * = Fixed a bug, or made a minor improvement
--- 2.000 (2007-02-07 16:00)
--- 2.000 (2007-02-07 17:07)
* Change reject reply to 550 for RFC 2821 compliance.
* Skip SPF checks for local (127.) connections
* Clarified wording for some verbose logging.

View file

@ -3,7 +3,7 @@
# postfix-policyd-spf-perl
# http://www.openspf.org/Software
# version 2.000
# $Id$
#
#(C) 2007 Scott Kitterman <scott@kitterman.com>
#(C) 2003-2004 Meng Weng Wong <mengwong@pobox.com>
#
@ -116,7 +116,7 @@ while (<STDIN>) {
# Skip SPF check for local connections
if ($attr{client_address}=~ /^127\./) {
$action = "PREPEND SPF skipped - localhost is always allowed."
$action = "PREPEND X-SPF skipped - localhost is always allowed."
}
else {
foreach my $handler (@HANDLERS) {