summaryrefslogtreecommitdiff
path: root/src/mailman/pipeline/to_outgoing.py
diff options
context:
space:
mode:
authorBarry Warsaw2009-11-03 22:29:18 -0500
committerBarry Warsaw2009-11-03 22:29:18 -0500
commitd93c9f447482e14e0385854b661200553db661a1 (patch)
treece84655ee4fe3d39af99f4e37b0ae7228d0bf5f6 /src/mailman/pipeline/to_outgoing.py
parent83773bbce02e9083f3f427537b9e5bf135f52cd9 (diff)
downloadmailman-d93c9f447482e14e0385854b661200553db661a1.tar.gz
mailman-d93c9f447482e14e0385854b661200553db661a1.tar.zst
mailman-d93c9f447482e14e0385854b661200553db661a1.zip
Diffstat (limited to 'src/mailman/pipeline/to_outgoing.py')
-rw-r--r--src/mailman/pipeline/to_outgoing.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mailman/pipeline/to_outgoing.py b/src/mailman/pipeline/to_outgoing.py
index ff27593c4..ef6908ab8 100644
--- a/src/mailman/pipeline/to_outgoing.py
+++ b/src/mailman/pipeline/to_outgoing.py
@@ -72,7 +72,7 @@ class ToOutgoing:
msgdata['verp'] = True
else:
# VERP every `interval' number of times
- msgdata['verp'] = not (int(mlist.post_id) % interval)
+ msgdata['verp'] = (int(mlist.post_id) % interval == 0)
# And now drop the message in qfiles/out
config.switchboards['out'].enqueue(
msg, msgdata, listname=mlist.fqdn_listname)