summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorklm1998-11-05 00:59:26 +0000
committerklm1998-11-05 00:59:26 +0000
commita46ceb6b2816dfdff3d2d686fdeda6651167bf34 (patch)
tree69f54d63f195a0ffea0e29d27d311a38d7b73b74
parentb9a0379394daf833fec7f226a23136db6ab15a84 (diff)
downloadmailman-a46ceb6b2816dfdff3d2d686fdeda6651167bf34.tar.gz
mailman-a46ceb6b2816dfdff3d2d686fdeda6651167bf34.tar.zst
mailman-a46ceb6b2816dfdff3d2d686fdeda6651167bf34.zip
Make the disabled notice less ambiguous - reorganized so it's clear
what phrase is or is not negated: old: Mailman-Checkins member klm@python.org disabled due to bounces old: Mailman-Checkins member klm@python.org NOT disabled due to bounces vs new: Mailman-Checkins member klm@python.org bouncing - disabled new: Mailman-Checkins member klm@python.org bouncing - NOT disabled In the NOT version of the old, it would seem to be saying that the member was NOT disable _because_ of the bounces, not the case at all.
-rw-r--r--Mailman/Bouncer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Bouncer.py b/Mailman/Bouncer.py
index 10ed8369b..70787e868 100644
--- a/Mailman/Bouncer.py
+++ b/Mailman/Bouncer.py
@@ -209,7 +209,7 @@ class Bouncer:
negative = string.upper(negative)
self.SendTextToUser(
- subject = "%s member %s %s%s due to bounces"
+ subject = "%s member %s bouncing - %s%s"
% (self.real_name, addr, negative, did),
recipient = recipient,
sender = mm_cfg.MAILMAN_OWNER,