diff options
| author | bwarsaw | 2002-10-18 23:54:51 +0000 |
|---|---|---|
| committer | bwarsaw | 2002-10-18 23:54:51 +0000 |
| commit | 2b4a7aabad59690150ac2b2a66ecdada0418bff7 (patch) | |
| tree | 8e6532a626312eeb726cfb7f30b63983b954b030 /Mailman/Deliverer.py | |
| parent | 0f0019b86ba343af89b955d06a5ccf5f75b85f0d (diff) | |
| download | mailman-2b4a7aabad59690150ac2b2a66ecdada0418bff7.tar.gz mailman-2b4a7aabad59690150ac2b2a66ecdada0418bff7.tar.zst mailman-2b4a7aabad59690150ac2b2a66ecdada0418bff7.zip | |
SendSubscribeAck(), SendUnsubscribeAck(), MailUserPassword(): Since
these messages are destined for one recipient anyway, we'll turn on
VERP if VERP_PERSONALIZED_DELIVERIES is enabled.
Diffstat (limited to 'Mailman/Deliverer.py')
| -rw-r--r-- | Mailman/Deliverer.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Mailman/Deliverer.py b/Mailman/Deliverer.py index edb8cb97b..8322e678e 100644 --- a/Mailman/Deliverer.py +++ b/Mailman/Deliverer.py @@ -68,7 +68,7 @@ your membership administrative address, %(addr)s.''')) _('Welcome to the "%(realname)s" mailing list%(digmode)s'), text, pluser) msg['X-No-Archive'] = 'yes' - msg.send(self) + msg.send(self, verp=mm_cfg.VERP_PERSONALIZED_DELIVERIES) def SendUnsubscribeAck(self, addr): realname = self.real_name @@ -76,7 +76,7 @@ your membership administrative address, %(addr)s.''')) self.GetMemberAdminEmail(addr), self.GetBouncesEmail(), _('You have been unsubscribed from the %(realname)s mailing list'), Utils.wrap(self.goodbye_msg), self.getMemberLanguage(addr)) - msg.send(self) + msg.send(self, verp=mm_cfg.VERP_PERSONALIZED_DELIVERIES) def MailUserPassword(self, user): listfullname = '%s@%s' % (self.real_name, self.host_name) @@ -116,7 +116,7 @@ your membership administrative address, %(addr)s.''')) msg = Message.UserNotification(recipient, adminaddr, subject, text, self.getMemberLanguage(user)) msg['X-No-Archive'] = 'yes' - msg.send(self) + msg.send(self, verp=mm_cfg.VERP_PERSONALIZED_DELIVERIES) def ForwardMessage(self, msg, text=None, subject=None, tomoderators=1): # Wrap the message as an attachment |
