summaryrefslogtreecommitdiff
path: root/Mailman/Queue/IncomingRunner.py
diff options
context:
space:
mode:
authorbwarsaw2001-07-13 17:02:50 +0000
committerbwarsaw2001-07-13 17:02:50 +0000
commit7ee69b9ccaf87d2602f9a60284fe2ff8e543c1f4 (patch)
treee3217e9671571aecbfe8d3d726079993b2448ec6 /Mailman/Queue/IncomingRunner.py
parent6c47bb5b932850784f99c8ed4b0627dd9b22d276 (diff)
downloadmailman-7ee69b9ccaf87d2602f9a60284fe2ff8e543c1f4.tar.gz
mailman-7ee69b9ccaf87d2602f9a60284fe2ff8e543c1f4.tar.zst
mailman-7ee69b9ccaf87d2602f9a60284fe2ff8e543c1f4.zip
Diffstat (limited to 'Mailman/Queue/IncomingRunner.py')
-rw-r--r--Mailman/Queue/IncomingRunner.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/Mailman/Queue/IncomingRunner.py b/Mailman/Queue/IncomingRunner.py
index 462daf066..1cbdb79e5 100644
--- a/Mailman/Queue/IncomingRunner.py
+++ b/Mailman/Queue/IncomingRunner.py
@@ -146,14 +146,5 @@ class IncomingRunner(Runner):
except Errors.RejectMessage, e:
mlist.BounceMessage(msg, msgdata, e)
return 0
- except Exception, e:
- # Some other exception occurred, which we definitely did not
- # expect, so set this message up for requeuing.
- self._log(e)
- # We stick the name of the failed module back into the front
- # of the pipeline list so that it can resume where it left off
- # when qrunner tries to redeliver it.
- pipeline.insert(0, handler)
- return 1
# We've successfully completed handling of this message
return 0