diff options
Diffstat (limited to 'Mailman/Handlers/Sendmail.py')
| -rw-r--r-- | Mailman/Handlers/Sendmail.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Handlers/Sendmail.py b/Mailman/Handlers/Sendmail.py index 39c6b0bb1..b2c133489 100644 --- a/Mailman/Handlers/Sendmail.py +++ b/Mailman/Handlers/Sendmail.py @@ -92,7 +92,7 @@ def process(mlist, msg, msgdata): len(msg.body), errcode)) # TBD: can we do better than this? What if only one recipient out # of the entire chunk failed? - failedrecips.extend(chunk) + failedrecips.append(chunk) # Log the successful post syslog('post', 'post to %s from %s, size=%d, success' % (mlist.internal_name(), msg.GetSender(), len(msg.body))) |
