diff options
Diffstat (limited to 'Mailman/Deliverer.py')
-rw-r--r-- | Mailman/Deliverer.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Mailman/Deliverer.py b/Mailman/Deliverer.py index 2479c91a..49a88a1b 100644 --- a/Mailman/Deliverer.py +++ b/Mailman/Deliverer.py @@ -217,5 +217,7 @@ is required."""))) text = MIMEText(text, _charset=Utils.GetCharSet(ulang)) outer.attach(text) outer.attach(MIMEMessage(msg)) - # Turn off further VERP'ing in the final delivery step - outer.send(self, envsender=probeaddr, verp=False) + # Turn off further VERP'ing in the final delivery step. We set + # probe_token for the OutgoingRunner to more easily handling local + # rejects of probe messages. + outer.send(self, envsender=probeaddr, verp=False, probe_token=token) |