diff options
| -rw-r--r-- | Mailman/Bouncers/SimpleMatch.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Mailman/Bouncers/SimpleMatch.py b/Mailman/Bouncers/SimpleMatch.py index 05387d77f..dfb434033 100644 --- a/Mailman/Bouncers/SimpleMatch.py +++ b/Mailman/Bouncers/SimpleMatch.py @@ -71,7 +71,7 @@ patterns = [ -def process(msg): +def process(msg, patterns=patterns): mi = MsgReader.MsgReader(msg) # simple state machine # 0 = nothing seen yet @@ -80,6 +80,7 @@ def process(msg): state = 0 while 1: line = mi.readline() + #print '(%d) line: %s' % (state, line[:-1]) if not line: break if state == 0: |
