summaryrefslogtreecommitdiff
path: root/Mailman/Deliverer.py
diff options
context:
space:
mode:
Diffstat (limited to 'Mailman/Deliverer.py')
-rw-r--r--Mailman/Deliverer.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Mailman/Deliverer.py b/Mailman/Deliverer.py
index 24571bd05..70b22caf6 100644
--- a/Mailman/Deliverer.py
+++ b/Mailman/Deliverer.py
@@ -69,11 +69,11 @@ your membership administrative address, %(addr)s.'''))
msg['X-No-Archive'] = 'yes'
msg.send(self)
- def SendUnsubscribeAck(self, name):
+ def SendUnsubscribeAck(self, addr):
realname = self.real_name
msg = Message.UserNotification(
- self.GetMemberAdminEmail(name), self.GetAdminEmail(),
- _('Unsubscribed from "%(realname)s" mailing list'),
+ self.GetMemberAdminEmail(addr), self.GetAdminEmail(),
+ _('You have been unsubscribed from the %(realname)s mailing list'),
Utils.wrap(self.goodbye_msg))
msg.send(self)