diff options
| author | bwarsaw | 2001-03-24 03:52:23 +0000 |
|---|---|---|
| committer | bwarsaw | 2001-03-24 03:52:23 +0000 |
| commit | 64de63b1f2d9dbc3bf64e3045ed84925064d491e (patch) | |
| tree | 871584fdef9f0f0b76a22382620f09df0ecf2655 | |
| parent | 9ad69dc1e762c3cc175794ef5800e33eb2c611ac (diff) | |
| download | mailman-64de63b1f2d9dbc3bf64e3045ed84925064d491e.tar.gz mailman-64de63b1f2d9dbc3bf64e3045ed84925064d491e.tar.zst mailman-64de63b1f2d9dbc3bf64e3045ed84925064d491e.zip | |
AddMember(): Change the subscription confirmation Subject: header to
"... confirm <number>" instead of "... request <number>". This goes
along with changes to MailCommandHandler.py.
| -rw-r--r-- | Mailman/MailList.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/MailList.py b/Mailman/MailList.py index 53e98b7d7..5f1682e97 100644 --- a/Mailman/MailList.py +++ b/Mailman/MailList.py @@ -1041,7 +1041,7 @@ class MailList(MailCommandHandler, HTMLFormatter, Deliverer, ListAdmin, }, lang=lang) msg = Message.UserNotification( recipient, self.GetRequestEmail(), - _('%(realname)s -- confirmation of subscription -- request %(cookie)d'), + _('%(realname)s -- confirmation of subscription -- confirm %(cookie)d'), text) msg['Reply-To'] = self.GetRequestEmail() msg.send(self) |
