aboutsummaryrefslogtreecommitdiffstats
path: root/Mailman/Message.py
diff options
context:
space:
mode:
authorMark Sapiro <msapiro@value.net>2012-02-17 18:18:34 -0800
committerMark Sapiro <msapiro@value.net>2012-02-17 18:18:34 -0800
commitce7998b41a4d3980a0d4ac23207ad286678e1c95 (patch)
tree26937511260dba043ce522a6a7405824f1011dbc /Mailman/Message.py
parent3d6e6f1d79d14e4aa2fb0d044949787ad818bc25 (diff)
downloadmailman2-ce7998b41a4d3980a0d4ac23207ad286678e1c95.tar.gz
mailman2-ce7998b41a4d3980a0d4ac23207ad286678e1c95.tar.xz
mailman2-ce7998b41a4d3980a0d4ac23207ad286678e1c95.zip
Subscription disabled warnings are now sent without a Precedence:
header. Bug #808821.
Diffstat (limited to 'Mailman/Message.py')
-rw-r--r--Mailman/Message.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Mailman/Message.py b/Mailman/Message.py
index 3bbb9ecc..24c15a84 100644
--- a/Mailman/Message.py
+++ b/Mailman/Message.py
@@ -1,4 +1,4 @@
-# Copyright (C) 1998-2011 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
@@ -268,7 +268,7 @@ class UserNotification(Message):
self['To'] = recip
self.recips = [recip]
- def send(self, mlist, **_kws):
+ def send(self, mlist, noprecedence=False, **_kws):
"""Sends the message by enqueuing it to the `virgin' queue.
This is used for all internally crafted messages.
@@ -284,7 +284,7 @@ class UserNotification(Message):
# UserNotifications are typically for admin messages, and for messages
# other than list explosions. Send these out as Precedence: bulk, but
# don't override an existing Precedence: header.
- if not self.has_key('precedence'):
+ if not (self.has_key('precedence') or noprecedence):
self['Precedence'] = 'bulk'
self._enqueue(mlist, **_kws)