summaryrefslogtreecommitdiff
path: root/src/mailman/app/bounces.py
diff options
context:
space:
mode:
authorMark Sapiro2012-03-14 11:50:14 -0700
committerMark Sapiro2012-03-14 11:50:14 -0700
commitf3ed60124bf8fd418d628f10e021f1948c9ff532 (patch)
tree6e6019b39912b65e694c430785747649c543ae74 /src/mailman/app/bounces.py
parenteb509dc0466f34f63ab6dcf159de2f9137cb3fdb (diff)
downloadmailman-f3ed60124bf8fd418d628f10e021f1948c9ff532.tar.gz
mailman-f3ed60124bf8fd418d628f10e021f1948c9ff532.tar.zst
mailman-f3ed60124bf8fd418d628f10e021f1948c9ff532.zip
Diffstat (limited to 'src/mailman/app/bounces.py')
-rw-r--r--src/mailman/app/bounces.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mailman/app/bounces.py b/src/mailman/app/bounces.py
index a9bed97ac..69250ea5a 100644
--- a/src/mailman/app/bounces.py
+++ b/src/mailman/app/bounces.py
@@ -225,7 +225,9 @@ def send_probe(member, msg):
notice = MIMEText(text, _charset=mlist.preferred_language.charset)
probe.attach(notice)
probe.attach(MIMEMessage(msg))
- probe.send(mlist, envsender=probe_sender, verp=False, probe_token=token)
+ # Send without Precedence: bulk. (LP: #808821)
+ probe.send(mlist, envsender=probe_sender, verp=False, probe_token=token
+ noprecedence=True)
return token