Update for 2.004 release

This commit is contained in:
Scott Kitterman 2007-04-18 18:41:31 +00:00
commit 2cc732f3fa
4 changed files with 10 additions and 6 deletions

View file

@ -4,6 +4,9 @@
# ! = Changed something significant, or removed a feature # ! = Changed something significant, or removed a feature
# * = Fixed a bug, or made a minor improvement # * = 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) --- 2.003 (2007-04-17 08:50)
* Minor documentation cleanup. * Minor documentation cleanup.
+ Add handler for list of relay addresses to bypass. + Add handler for list of relay addresses to bypass.

3
debian/changelog vendored
View file

@ -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 * New upstream release
- Add handler for list of relay addresses to bypass. - Add handler for list of relay addresses to bypass.
- Correct header text so it's actually prepended.
* Update man page for upstream changes. * Update man page for upstream changes.
* Removed INSTALL.Debian and debian/docs. * Removed INSTALL.Debian and debian/docs.
- No longer needed - redundant to the man page. - No longer needed - redundant to the man page.

View file

@ -128,12 +128,12 @@
.\" ======================================================================== .\" ========================================================================
.\" .\"
.IX Title "postfix-policyd-spf-perl 1p" .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" .SH "NAME"
postfix-policyd-spf-perl \- pure-Perl Postfix policy daemon for SPF checking postfix-policyd-spf-perl \- pure-Perl Postfix policy daemon for SPF checking
.SH "VERSION" .SH "VERSION"
.IX Header "VERSION" .IX Header "VERSION"
2\.003 2\.004
.SH "USAGE" .SH "USAGE"
.IX Header "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 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 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 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. prepended and logged.
Error conditions within the policy server (that don't result in a crash) or from Error conditions within the policy server (that don't result in a crash) or from

View file

@ -2,7 +2,7 @@
# postfix-policyd-spf-perl # postfix-policyd-spf-perl
# http://www.openspf.org/Software # http://www.openspf.org/Software
# version 2.003 # version 2.004
# #
# (C) 2007 Scott Kitterman <scott@kitterman.com> # (C) 2007 Scott Kitterman <scott@kitterman.com>
# (C) 2007 Julian Mehnle <julian@mehnle.net> # (C) 2007 Julian Mehnle <julian@mehnle.net>
@ -22,7 +22,7 @@
# with this program; if not, write to the Free Software Foundation, Inc., # with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # 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; use strict;