From a5723a217401d0e5a24758683120923d6c62e878 Mon Sep 17 00:00:00 2001 From: Aurélien Bompard Date: Tue, 16 Jun 2015 11:54:07 +0200 Subject: Disable the member topics feature for now It is non-functional (calls non-existant methods on the MailingList object), and a proper fix would require a schema change, so let's postpone it. --- src/mailman/handlers/member_recipients.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/mailman') diff --git a/src/mailman/handlers/member_recipients.py b/src/mailman/handlers/member_recipients.py index 60a64bb8d..22be30d7d 100644 --- a/src/mailman/handlers/member_recipients.py +++ b/src/mailman/handlers/member_recipients.py @@ -91,7 +91,8 @@ for delivery. The original message as received by Mailman is attached. if not include_sender and member.address.email in recipients: recipients.remove(member.address.email) # Handle topic classifications - do_topic_filters(mlist, msg, msgdata, recipients) + # XXX: Disabled for now until we fix it properly + #do_topic_filters(mlist, msg, msgdata, recipients) # Bookkeeping msgdata['recipients'] = recipients -- cgit v1.3.1