aboutsummaryrefslogtreecommitdiffstats
path: root/Mailman
diff options
context:
space:
mode:
authorMark Sapiro <mark@msapiro.net>2016-03-06 22:27:49 -0800
committerMark Sapiro <mark@msapiro.net>2016-03-06 22:27:49 -0800
commitbf7b73081b17eda9589e5cd6ee0242912633d306 (patch)
tree5e5f614a395f9aac8308f58c46295ae823f0a779 /Mailman
parent7ec3c9cbbb0bb8fa4b966a52c51a9c916b8e690e (diff)
downloadmailman2-bf7b73081b17eda9589e5cd6ee0242912633d306.tar.gz
mailman2-bf7b73081b17eda9589e5cd6ee0242912633d306.tar.xz
mailman2-bf7b73081b17eda9589e5cd6ee0242912633d306.zip
Fixed CommandRunner shunting a message with a null byte in the body.
Diffstat (limited to 'Mailman')
-rw-r--r--Mailman/Queue/CommandRunner.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Mailman/Queue/CommandRunner.py b/Mailman/Queue/CommandRunner.py
index c5cc3d94..a9f6f000 100644
--- a/Mailman/Queue/CommandRunner.py
+++ b/Mailman/Queue/CommandRunner.py
@@ -134,7 +134,8 @@ class Results:
handler = sys.modules[modname]
# ValueError can be raised if cmd has dots in it.
# and KeyError if cmd is otherwise good but ends with a dot.
- except (ImportError, ValueError, KeyError):
+ # and TypeError if cmd has a null byte.
+ except (ImportError, ValueError, KeyError, TypeError):
# If we're on line zero, it was the Subject: header that didn't
# contain a command. It's possible there's a Re: prefix (or
# localized version thereof) on the Subject: line that's messing