summaryrefslogtreecommitdiff
path: root/Mailman/Handlers/Hold.py
diff options
context:
space:
mode:
authorbwarsaw2002-04-11 04:20:02 +0000
committerbwarsaw2002-04-11 04:20:02 +0000
commit41068c9be7b451b4a85b107be79bf809c7f2e479 (patch)
tree6dc01694266b05195a484232da13855d56c98a2f /Mailman/Handlers/Hold.py
parentd1c9b52e1ba973811995d0a52ba2251091560a04 (diff)
downloadmailman-41068c9be7b451b4a85b107be79bf809c7f2e479.tar.gz
mailman-41068c9be7b451b4a85b107be79bf809c7f2e479.tar.zst
mailman-41068c9be7b451b4a85b107be79bf809c7f2e479.zip
Diffstat (limited to 'Mailman/Handlers/Hold.py')
-rw-r--r--Mailman/Handlers/Hold.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Handlers/Hold.py b/Mailman/Handlers/Hold.py
index 40e4270b5..2d711bd55 100644
--- a/Mailman/Handlers/Hold.py
+++ b/Mailman/Handlers/Hold.py
@@ -138,7 +138,7 @@ def process(mlist, msg, msgdata):
# figure out how many recipients there are
recips = email.Utils.getaddresses(msg.get_all('to', []) +
msg.get_all('cc', []))
- if len(recips) > mlist.max_num_recipients:
+ if len(recips) >= mlist.max_num_recipients:
hold_for_approval(mlist, msg, msgdata, TooManyRecipients)
# no return
#