summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhmeland1999-06-13 06:41:24 +0000
committerhmeland1999-06-13 06:41:24 +0000
commitc47c89e309fb0bd3c397f62cfc7f973c216c0c35 (patch)
tree3b3b684b978fbb452ccbe95a69eff279263aff55
parentc229c62c4a809966a4512f3943b41b4cde26252b (diff)
downloadmailman-c47c89e309fb0bd3c397f62cfc7f973c216c0c35.tar.gz
mailman-c47c89e309fb0bd3c397f62cfc7f973c216c0c35.tar.zst
mailman-c47c89e309fb0bd3c397f62cfc7f973c216c0c35.zip
-rw-r--r--Mailman/Digester.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/Mailman/Digester.py b/Mailman/Digester.py
index fe3ca7dd9..9ec6de940 100644
--- a/Mailman/Digester.py
+++ b/Mailman/Digester.py
@@ -40,7 +40,7 @@ You can reach the person managing the list at
%(got_owner_email)s
When replying, please edit your Subject line so it is more specific than
-"Re: Contents of %(real_name)s digest...")
+"Re: Contents of %(real_name)s digest..."
"""
@@ -402,11 +402,14 @@ class Digest:
% digestboundary)
lines.append("")
lines.append(self.body)
+ # End multipart digest text part
+ lines.append("")
+ lines.append("--" + digestboundary + "--")
else:
lines.append(
filterDigestHeaders(self.body,
mm_cfg.DEFAULT_PLAIN_DIGEST_KEEP_HEADERS,
- self.list._mime_separator))
+ digestboundary))
# List-specific footer:
if self.list.digest_footer:
lines.append("")
@@ -418,8 +421,6 @@ class Digest:
lines.append(self.SatisfyRefs(self.list.digest_footer))
# Close:
- lines.append("")
- lines.append("--" + digestboundary + "--")
if mime:
# Close encompassing mime envelope.
lines.append("")