[Pkg-mailman-hackers] Pkg-mailman commit - rev 552 - in trunk/debian: . contrib

Thijs Kinkhorst thijs at alioth.debian.org
Tue Jul 8 08:01:08 UTC 2008


Author: thijs
Date: 2008-07-08 08:01:07 +0000 (Tue, 08 Jul 2008)
New Revision: 552

Modified:
   trunk/debian/changelog
   trunk/debian/contrib/SpamAssassin.py
Log:
* Fix SpamAssassin handler to cope with changed behaviour
  of matches_p() (Closes: #488584).

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2008-07-07 22:48:45 UTC (rev 551)
+++ trunk/debian/changelog	2008-07-08 08:01:07 UTC (rev 552)
@@ -1,3 +1,10 @@
+mailman (1:2.1.11-2) UNRELEASED; urgency=low
+
+  * Fix SpamAssassin handler to cope with changed behaviour
+    of matches_p() (Closes: #488584).
+
+ -- Thijs Kinkhorst <thijs at debian.org>  Tue,  8 Jul 2008 09:43:15 +0200
+
 mailman (1:2.1.11-1) unstable; urgency=low
 
   * New upstream release.

Modified: trunk/debian/contrib/SpamAssassin.py
===================================================================
--- trunk/debian/contrib/SpamAssassin.py	2008-07-07 22:48:45 UTC (rev 551)
+++ trunk/debian/contrib/SpamAssassin.py	2008-07-08 08:01:07 UTC (rev 552)
@@ -78,7 +78,7 @@
     if MEMBER_BONUS != 0:
         for sender in msg.get_senders():
             if mlist.isMember(sender) or \
-                   matches_p(sender, mlist.accept_these_nonmembers):
+                   matches_p(sender, mlist.accept_these_nonmembers, mlist.internal_name()):
                 score -= MEMBER_BONUS
                 break
 




More information about the Pkg-mailman-hackers mailing list