diff options
author | tkikuchi <> | 2004-12-14 23:47:44 +0000 |
---|---|---|
committer | tkikuchi <> | 2004-12-14 23:47:44 +0000 |
commit | b7116278a64ddfe6ce2022665c401916d4889422 (patch) | |
tree | 28807413e022ab9f3851050ab980f0a5733dd903 /Mailman/Handlers/ToDigest.py | |
parent | a3a7b94b04974c40bca54caece474e8506d53822 (diff) | |
download | mailman2-b7116278a64ddfe6ce2022665c401916d4889422.tar.gz mailman2-b7116278a64ddfe6ce2022665c401916d4889422.tar.xz mailman2-b7116278a64ddfe6ce2022665c401916d4889422.zip |
[ 975768 ] senddigests doesn't handle consecutive unparseable messages
Thanks Thomas for raising my attention.
Diffstat (limited to '')
-rw-r--r-- | Mailman/Handlers/ToDigest.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Mailman/Handlers/ToDigest.py b/Mailman/Handlers/ToDigest.py index e41fa244..53110f04 100644 --- a/Mailman/Handlers/ToDigest.py +++ b/Mailman/Handlers/ToDigest.py @@ -214,6 +214,7 @@ def send_i18n_digests(mlist, mboxfp): if msg == '': # It was an unparseable message msg = mbox.next() + continue msgcount += 1 messages.append(msg) # Get the Subject header |