You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by da...@apache.org on 2017/11/26 20:56:58 UTC

svn commit: r1816394 - /spamassassin/trunk/rules/60_whitelist_auth.cf

Author: davej
Date: Sun Nov 26 20:56:58 2017
New Revision: 1816394

URL: http://svn.apache.org/viewvc?rev=1816394&view=rev
Log:
New feature for trusted senders.  See bug 7506.

Added:
    spamassassin/trunk/rules/60_whitelist_auth.cf

Added: spamassassin/trunk/rules/60_whitelist_auth.cf
URL: http://svn.apache.org/viewvc/spamassassin/trunk/rules/60_whitelist_auth.cf?rev=1816394&view=auto
==============================================================================
--- spamassassin/trunk/rules/60_whitelist_auth.cf (added)
+++ spamassassin/trunk/rules/60_whitelist_auth.cf Sun Nov 26 20:56:58 2017
@@ -0,0 +1,52 @@
+# SpamAssassin rules file: default SPF and DKIM whitelists
+#
+# Please don't modify this file as your changes will be overwritten with
+# the next update. Use @@LOCAL_RULES_DIR@@/local.cf instead.
+# See 'perldoc Mail::SpamAssassin::Conf' for details.
+#
+# <@LICENSE>
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to you under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at:
+# 
+#     http://www.apache.org/licenses/LICENSE-2.0
+# 
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# </...@LICENSE>
+
+###########################################################################
+# SPF and DKIM whitelist rules
+
+if (version >= 3.0030000)
+
+ifplugin Mail::SpamAssassin::Plugin::SPF
+
+###########################################################################
+# These should be primarily envelope-from addresses which send mail that is
+# often tagged (incorrectly) as spam or high-profile domains that are common
+# targets of spoofing.
+# These senders should be considered trusted following proper opt-in and
+# opt-out practices, publish abuse reporting procedures, and handle reports
+# of abuse promptly.
+#
+# Whitelist and blacklist addresses are now file-glob-style patterns, so
+# "friend@somewhere.com", "*@isp.com", or "*.domain.net" will all work.
+
+whitelist_auth *@facebookmail.com
+whitelist_auth *@*.walmart.com
+whitelist_auth *@*.usaa.com
+whitelist_auth *@*.citi.com
+whitelist_auth *@*.chase.com
+whitelist_auth *@*.dropboxmail.com
+
+
+endif # Mail::SpamAssassin::Plugin::SPF
+
+endif # version >= 3.3.0