diff options
Diffstat (limited to 'src/mailman/pipeline/to_outgoing.py')
| -rw-r--r-- | src/mailman/pipeline/to_outgoing.py | 2 |
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) |
