summaryrefslogtreecommitdiff
path: root/src/mailman/rules
diff options
context:
space:
mode:
authorBarry Warsaw2015-06-24 19:05:43 -0400
committerBarry Warsaw2015-06-24 19:05:43 -0400
commit4c658dfd9717b3d36055414470f2641f7e6a262e (patch)
tree9ea128c2598bd873be822236b1c869015706f35c /src/mailman/rules
parent8ebd99301f93c2f8efb93ac12c3200acea88eb7d (diff)
downloadmailman-4c658dfd9717b3d36055414470f2641f7e6a262e.tar.gz
mailman-4c658dfd9717b3d36055414470f2641f7e6a262e.tar.zst
mailman-4c658dfd9717b3d36055414470f2641f7e6a262e.zip
Do a cleansing pass on abompard's branch.
Diffstat (limited to 'src/mailman/rules')
-rw-r--r--src/mailman/rules/moderation.py35
-rw-r--r--src/mailman/rules/tests/test_moderation.py26
2 files changed, 35 insertions, 26 deletions
diff --git a/src/mailman/rules/moderation.py b/src/mailman/rules/moderation.py
index d2ca6ef6d..215a4c852 100644
--- a/src/mailman/rules/moderation.py
+++ b/src/mailman/rules/moderation.py
@@ -66,6 +66,12 @@ class MemberModeration:
+def _record_action(msgdata, action, sender, reason):
+ msgdata['moderation_action'] = action
+ msgdata['moderation_sender'] = sender
+ msgdata.setdefault('moderation_reasons', []).append(reason)
+
+
@implementer(IRule)
class NonmemberModeration:
"""The nonmember moderation rule."""
@@ -97,17 +103,19 @@ class NonmemberModeration:
nonmember = mlist.nonmembers.get_member(sender)
assert nonmember is not None, (
'Sender not added to the nonmembers: {0}'.format(sender))
- # Check the '*_these_nonmembers' properties first
+ # Check the '*_these_nonmembers' properties first. XXX These are
+ # legacy attributes from MM2.1; their database type is 'pickle' and
+ # they should eventually get replaced.
for action in ('accept', 'hold', 'reject', 'discard'):
- checklist = getattr(mlist, '{}_these_nonmembers'.format(action))
+ legacy_attribute_name = '{}_these_nonmembers'.format(action)
+ checklist = getattr(mlist, legacy_attribute_name)
for addr in checklist:
- if (addr.startswith('^') and re.match(addr, sender)) \
- or addr == sender:
- msgdata['moderation_action'] = action
- msgdata['moderation_sender'] = sender
- msgdata.setdefault('moderation_reasons', []).append(
- 'The sender is in the nonmember {} list'.format(
- action))
+ if ((addr.startswith('^') and re.match(addr, sender))
+ or addr == sender):
+ # The reason will get translated at the point of use.
+ reason = 'The sender is in the nonmember {} list'
+ _record_action(msgdata, action, sender,
+ reason.format(action))
return True
action = nonmember.moderation_action
if action is Action.defer:
@@ -116,11 +124,10 @@ class NonmemberModeration:
elif action is not None:
# We must stringify the moderation action so that it can be
# stored in the pending request table.
- msgdata['moderation_action'] = action.name
- msgdata['moderation_sender'] = sender
- msgdata.setdefault('moderation_reasons', []).append(
- # This will get translated at the point of use.
- 'The message is not from a list member')
+ #
+ # The reason will get translated at the point of use.
+ reason = 'The message is not from a list member'
+ _record_action(msgdata, action.name, sender, reason)
return True
# The sender must be a member, so this rule does not match.
return False
diff --git a/src/mailman/rules/tests/test_moderation.py b/src/mailman/rules/tests/test_moderation.py
index 737b1f81d..79aade587 100644
--- a/src/mailman/rules/tests/test_moderation.py
+++ b/src/mailman/rules/tests/test_moderation.py
@@ -112,24 +112,26 @@ A message body.
reasons, ['The message comes from a moderated member'])
def test_these_nonmembers(self):
+ # Test the legacy *_these_nonmembers attributes.
user_manager = getUtility(IUserManager)
actions = {
- 'anne@example.com': "accept",
- 'bill@example.com': "hold",
- 'chris@example.com': "reject",
- 'dana@example.com': "discard",
- '^anne-.*@example.com': "accept",
- '^bill-.*@example.com': "hold",
- '^chris-.*@example.com': "reject",
- '^dana-.*@example.com': "discard",
- }
+ 'anne@example.com': 'accept',
+ 'bill@example.com': 'hold',
+ 'chris@example.com': 'reject',
+ 'dana@example.com': 'discard',
+ '^anne-.*@example.com': 'accept',
+ '^bill-.*@example.com': 'hold',
+ '^chris-.*@example.com': 'reject',
+ '^dana-.*@example.com': 'discard',
+ }
rule = moderation.NonmemberModeration()
user_manager = getUtility(IUserManager)
for address, action_name in actions.items():
- setattr(self._mlist, '{}_these_nonmembers'.format(action_name),
+ setattr(self._mlist,
+ '{}_these_nonmembers'.format(action_name),
[address])
if address.startswith('^'):
- # It's a pattern, craft a proper address
+ # It's a pattern, craft a proper address.
address = address[1:].replace('.*', 'something')
user_manager.create_address(address)
msg = mfs("""\
@@ -146,4 +148,4 @@ A message body.
self.assertTrue(result, 'NonmemberModeration rule should hit')
self.assertIn('moderation_action', msgdata)
self.assertEqual(msgdata['moderation_action'], action_name,
- "Wrong action for {}: {}".format(address, action_name))
+ 'Wrong action for {}: {}'.format(address, action_name))