From 1734d281c9e1d79e7bd78a1e614d1d1d895dd166 Mon Sep 17 00:00:00 2001 From: bwarsaw Date: Thu, 30 Aug 2001 04:15:30 +0000 Subject: AddMember(), ChangeMemberAddress(), ConfirmUnsubscription(): The subject text, which contains the robot command "confirm" should not be translated, otherwise MailCommandHandler will break. Reported by Daniel Buchmann. --- Mailman/MailList.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Mailman/MailList.py b/Mailman/MailList.py index 1b9e24bf7..3c82bdaf6 100644 --- a/Mailman/MailList.py +++ b/Mailman/MailList.py @@ -627,7 +627,7 @@ class MailList(MailCommandHandler, HTMLFormatter, Deliverer, ListAdmin, }, lang=lang, mlist=self) msg = Message.UserNotification( recipient, self.GetRequestEmail(), - _('confirm %(cookie)s'), + 'confirm %(cookie)s', text) msg['Reply-To'] = self.GetRequestEmail() msg.send(self) @@ -804,7 +804,7 @@ class MailList(MailCommandHandler, HTMLFormatter, Deliverer, ListAdmin, }, lang=self.getMemberLanguage(oldaddr), mlist=self) msg = Message.UserNotification( newaddr, self.GetRequestEmail(), - _('confirm %(cookie)s'), + 'confirm %(cookie)s', text) msg['Reply-To'] = self.GetRequestEmail() msg.send(self) @@ -897,7 +897,7 @@ class MailList(MailCommandHandler, HTMLFormatter, Deliverer, ListAdmin, }, lang=lang, mlist=self) msg = Message.UserNotification( addr, self.GetRequestEmail(), - _('confirm %(cookie)s'), + 'confirm %(cookie)s', text) msg['Reply-To'] = self.GetRequestEmail() msg.send(self) -- cgit v1.3.1