summaryrefslogtreecommitdiff
path: root/src/mailman/email
diff options
context:
space:
mode:
authorBarry Warsaw2016-12-29 16:17:34 -0500
committerBarry Warsaw2016-12-29 16:17:34 -0500
commitab34404b41ad5898b409a00c489841ece89f36b6 (patch)
treec5c29ebcc309c406f97284d070ba81470c764ad5 /src/mailman/email
parentab20aacc47fea1fd77f1ea69a2244793da7de080 (diff)
downloadmailman-ab34404b41ad5898b409a00c489841ece89f36b6.tar.gz
mailman-ab34404b41ad5898b409a00c489841ece89f36b6.tar.zst
mailman-ab34404b41ad5898b409a00c489841ece89f36b6.zip
Diffstat (limited to 'src/mailman/email')
-rw-r--r--src/mailman/email/message.py11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/mailman/email/message.py b/src/mailman/email/message.py
index da2ce837f..307afbc7b 100644
--- a/src/mailman/email/message.py
+++ b/src/mailman/email/message.py
@@ -133,7 +133,7 @@ class UserNotification(Message):
self['To'] = recipients
self.recipients = set([recipients])
- def send(self, mlist, *, add_precedence=True, to_moderators=False, **_kws):
+ def send(self, mlist, *, add_precedence=True, **_kws):
"""Sends the message by enqueuing it to the 'virgin' queue.
This is used for all internally crafted messages.
@@ -143,9 +143,6 @@ class UserNotification(Message):
:param add_precedence: Flag indicating whether a `Precedence: bulk`
header should be added to the message or not.
:type add_precedence: bool
- :param to_moderators: Flag indicating whether the message should be
- sent to the list's moderators instead of the list's membership.
- :type to_moderators: bool
This function also accepts arbitrary keyword arguments. The key/value
pairs for **kws is added to the metadata dictionary associated with
@@ -163,12 +160,6 @@ class UserNotification(Message):
# don't override an existing Precedence: header.
if 'precedence' not in self and add_precedence:
self['Precedence'] = 'bulk'
- if to_moderators:
- self.recipients = set(
- member.address.email
- for member in mlist.moderators.members
- if member.delivery_status is DeliveryStatus.enabled)
- self['To'] = COMMASPACE.join(self.recipients)
self._enqueue(mlist, **_kws)
def _enqueue(self, mlist, **_kws):