summaryrefslogtreecommitdiff
path: root/mailman/pipeline/owner_recipients.py
diff options
context:
space:
mode:
Diffstat (limited to 'mailman/pipeline/owner_recipients.py')
-rw-r--r--mailman/pipeline/owner_recipients.py11
1 files changed, 9 insertions, 2 deletions
diff --git a/mailman/pipeline/owner_recipients.py b/mailman/pipeline/owner_recipients.py
index 046cac50c..ceb6ae0a1 100644
--- a/mailman/pipeline/owner_recipients.py
+++ b/mailman/pipeline/owner_recipients.py
@@ -17,11 +17,18 @@
"""Calculate the list owner recipients (includes moderators)."""
+from __future__ import absolute_import, unicode_literals
+
+__metaclass__ = type
+__all__ = [
+ 'process',
+ ]
+
def process(mlist, msg, msgdata):
# The recipients are the owner and the moderator
msgdata['recips'] = mlist.owner + mlist.moderator
# Don't decorate these messages with the header/footers
- msgdata['nodecorate'] = 1
- msgdata['personalize'] = 0
+ msgdata['nodecorate'] = True
+ msgdata['personalize'] = False