diff options
| author | bwarsaw | 2000-02-26 20:07:06 +0000 |
|---|---|---|
| committer | bwarsaw | 2000-02-26 20:07:06 +0000 |
| commit | da8234fd1cc8aa4a50dfbbc990119596369edc31 (patch) | |
| tree | 254f5f846d495a0ab3950ce9d05119e1b5e398b7 /Mailman/Handlers/Replybot.py | |
| parent | 5f4641c5e22edcdb1e3c3275a6353ee8da308c51 (diff) | |
| download | mailman-da8234fd1cc8aa4a50dfbbc990119596369edc31.tar.gz mailman-da8234fd1cc8aa4a50dfbbc990119596369edc31.tar.zst mailman-da8234fd1cc8aa4a50dfbbc990119596369edc31.zip | |
process(): had the shutcut return logic slightly off
Diffstat (limited to '')
| -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 |
