diff options
Diffstat (limited to 'Mailman/Handlers/Replybot.py')
| -rw-r--r-- | Mailman/Handlers/Replybot.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Handlers/Replybot.py b/Mailman/Handlers/Replybot.py index 3ae9c3384..685dbfbb9 100644 --- a/Mailman/Handlers/Replybot.py +++ b/Mailman/Handlers/Replybot.py @@ -38,7 +38,7 @@ def process(mlist, msg): torequest = getattr(msg, 'torequest', 0) if (toadmin and not mlist.autorespond_admin) or \ (torequest and not mlist.autorespond_requests) or \ - not mlist.autorespond_postings: + (not toadmin and not torequest and not mlist.autorespond_postings): return # # Now see if we're in the grace period for this sender (guaranteed to be |
