You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by km...@apache.org on 2014/10/06 14:14:22 UTC

svn commit: r1629622 - /spamassassin/trunk/rulesrc/sandbox/kmcgrail/20_bug_7068.cf

Author: kmcgrail
Date: Mon Oct  6 12:14:22 2014
New Revision: 1629622

URL: http://svn.apache.org/r1629622
Log:
Adding rules for bug 7068

Added:
    spamassassin/trunk/rulesrc/sandbox/kmcgrail/20_bug_7068.cf

Added: spamassassin/trunk/rulesrc/sandbox/kmcgrail/20_bug_7068.cf
URL: http://svn.apache.org/viewvc/spamassassin/trunk/rulesrc/sandbox/kmcgrail/20_bug_7068.cf?rev=1629622&view=auto
==============================================================================
--- spamassassin/trunk/rulesrc/sandbox/kmcgrail/20_bug_7068.cf (added)
+++ spamassassin/trunk/rulesrc/sandbox/kmcgrail/20_bug_7068.cf Mon Oct  6 12:14:22 2014
@@ -0,0 +1,40 @@
+# SpamAssassin rules file: kam sandbox
+#
+# 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>
+#
+###########################################################################
+
+ifplugin Mail::SpamAssassin::Plugin::MIMEEval
+  if can(Mail::SpamAssassin::Plugin::MIMEEval::has_check_abundant_unicode_ratio)
+    body     PP_TOO_MUCH_UNICODE05	eval:check_abundant_unicode_ratio(0.05)
+    describe PP_TOO_MUCH_UNICODE05	Is text/plain but has many unicode escapes
+    score    PP_TOO_MUCH_UNICODE05	1.0
+    tflags   PP_TOO_MUCH_UNICODE05	publish
+
+    body     PP_TOO_MUCH_UNICODE02      eval:check_abundant_unicode_ratio(0.02)
+    describe PP_TOO_MUCH_UNICODE02      Is text/plain but has many unicode escapes
+    score    PP_TOO_MUCH_UNICODE02      0.5
+    tflags   PP_TOO_MUCH_UNICODE02      publish
+  endif
+endif
+
+#EOF