summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xscripts/post7
1 files changed, 2 insertions, 5 deletions
diff --git a/scripts/post b/scripts/post
index 688d5fcbf..b9720f03e 100755
--- a/scripts/post
+++ b/scripts/post
@@ -88,11 +88,8 @@ def main():
return
try:
msgdata = {}
- enqueue = HandlerAPI.DeliverToList(mlist, msg, msgdata)
- if enqueue:
- # The delivery failed for some reason. Queue the message up for
- # another attempt later.
- msg.Enqueue(mlist, newdata=msgdata)
+ # ignore return value
+ HandlerAPI.DeliverToList(mlist, msg, msgdata)
finally:
mlist.Save()
mlist.Unlock()