CHANGES and titivation of last commit

This commit is contained in:
Scott Kitterman 2018-07-26 00:51:58 -04:00
commit 341d0a775d
2 changed files with 9 additions and 6 deletions

View file

@ -7,6 +7,8 @@
--- 2.011 UNRELEASED --- 2.011 UNRELEASED
* Added mention of the requirement for Sys::Syslog to INSTALL * Added mention of the requirement for Sys::Syslog to INSTALL
* Add references to the current upstream location on Launchpad * Add references to the current upstream location on Launchpad
+ Add option to skip SPF checks on exempt domains based on /etc/postfix/
exempt_spf_domains
--- 2.010 2012-06-17 --- 2.010 2012-06-17
* Fixed incorrect use of != instead of ne for string comparison * Fixed incorrect use of != instead of ne for string comparison

View file

@ -5,10 +5,11 @@
# http://www.openspf.org/Software # http://www.openspf.org/Software
# version 2.011 # version 2.011
# #
# (C) 2007-2008,2012 Scott Kitterman <scott@kitterman.com> # (C) 2007-2008,2012,2018 Scott Kitterman <scott@kitterman.com>
# (C) 2012 Allison Randal <allison@perl.org> # (C) 2018 Scott Savarese <https://launchpad.net/~scottsavarese>
# (C) 2007 Julian Mehnle <julian@mehnle.net> # (C) 2012 Allison Randal <allison@perl.org>
# (C) 2003-2004 Meng Weng Wong <mengwong@pobox.com> # (C) 2007 Julian Mehnle <julian@mehnle.net>
# (C) 2003-2004 Meng Weng Wong <mengwong@pobox.com>
# #
# This program is free software; you can redistribute it and/or modify # This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by
@ -64,8 +65,8 @@ my @HANDLERS = (
code => \&exempt_relay code => \&exempt_relay
}, },
{ {
name => 'exempt_domains', name => 'exempt_domains',
code => \&exempt_domains code => \&exempt_domains
}, },
{ {
name => 'sender_policy_framework', name => 'sender_policy_framework',