aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Mailman/Deliverer.py6
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)