From ce7998b41a4d3980a0d4ac23207ad286678e1c95 Mon Sep 17 00:00:00 2001 From: Mark Sapiro Date: Fri, 17 Feb 2012 18:18:34 -0800 Subject: Subscription disabled warnings are now sent without a Precedence: header. Bug #808821. --- Mailman/Bouncer.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Mailman/Bouncer.py') diff --git a/Mailman/Bouncer.py b/Mailman/Bouncer.py index 036b58a0..29fe4ea5 100644 --- a/Mailman/Bouncer.py +++ b/Mailman/Bouncer.py @@ -1,4 +1,4 @@ -# Copyright (C) 1998-2010 by the Free Software Foundation, Inc. +# Copyright (C) 1998-2012 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -307,7 +307,8 @@ class Bouncer: # set the Subject this way. del msg['subject'] msg['Subject'] = 'confirm ' + info.cookie - msg.send(self) + # Send without Precedence: bulk. Bug #808821. + msg.send(self, noprecedence=True) info.noticesleft -= 1 info.lastnotice = time.localtime()[:3] # In case the MemberAdaptor stores bounce info externally to -- cgit v1.2.3