Update for 2.004 release
This commit is contained in:
parent
acfe60007f
commit
2cc732f3fa
4 changed files with 10 additions and 6 deletions
3
CHANGES
3
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.
|
||||
|
|
|
|||
3
debian/changelog
vendored
3
debian/changelog
vendored
|
|
@ -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.
|
||||
|
|
|
|||
6
debian/postfix-policyd-spf-perl.8
vendored
6
debian/postfix-policyd-spf-perl.8
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
# postfix-policyd-spf-perl
|
||||
# http://www.openspf.org/Software
|
||||
# version 2.003
|
||||
# version 2.004
|
||||
#
|
||||
# (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.003');
|
||||
use version; our $VERSION = qv('2.004');
|
||||
|
||||
use strict;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue