From 341d0a775d0ba0c3533d2e139f50ff975afbd114 Mon Sep 17 00:00:00 2001 From: Scott Kitterman Date: Thu, 26 Jul 2018 00:51:58 -0400 Subject: [PATCH] CHANGES and titivation of last commit --- CHANGES | 2 ++ postfix-policyd-spf-perl | 13 +++++++------ 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGES b/CHANGES index 1fe6493..e777128 100644 --- a/CHANGES +++ b/CHANGES @@ -7,6 +7,8 @@ --- 2.011 UNRELEASED * Added mention of the requirement for Sys::Syslog to INSTALL * 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 * Fixed incorrect use of != instead of ne for string comparison diff --git a/postfix-policyd-spf-perl b/postfix-policyd-spf-perl index b5f36a9..3491f00 100755 --- a/postfix-policyd-spf-perl +++ b/postfix-policyd-spf-perl @@ -5,10 +5,11 @@ # http://www.openspf.org/Software # version 2.011 # -# (C) 2007-2008,2012 Scott Kitterman -# (C) 2012 Allison Randal -# (C) 2007 Julian Mehnle -# (C) 2003-2004 Meng Weng Wong +# (C) 2007-2008,2012,2018 Scott Kitterman +# (C) 2018 Scott Savarese +# (C) 2012 Allison Randal +# (C) 2007 Julian Mehnle +# (C) 2003-2004 Meng Weng Wong # # 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 @@ -64,8 +65,8 @@ my @HANDLERS = ( code => \&exempt_relay }, { - name => 'exempt_domains', - code => \&exempt_domains + name => 'exempt_domains', + code => \&exempt_domains }, { name => 'sender_policy_framework',