summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbwarsaw2002-10-07 21:35:04 +0000
committerbwarsaw2002-10-07 21:35:04 +0000
commite605ef888d34620e719b8d4743421780f4894446 (patch)
treebdf0fefb44be3d9e6d61f4e119e84154569cf5ba
parent073d8fd9f808eda7e8fee21934165d9ae99d4e39 (diff)
downloadmailman-e605ef888d34620e719b8d4743421780f4894446.tar.gz
mailman-e605ef888d34620e719b8d4743421780f4894446.tar.zst
mailman-e605ef888d34620e719b8d4743421780f4894446.zip
send_i18n_digests(): Chuq politely reminds me that in MM2.0, digests
had their Reply-To header pointing at the posting address, and that there was no good reason not to continue this tradition <wink>.
-rw-r--r--Mailman/Handlers/ToDigest.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Mailman/Handlers/ToDigest.py b/Mailman/Handlers/ToDigest.py
index 0f5c07443..b93efe7a5 100644
--- a/Mailman/Handlers/ToDigest.py
+++ b/Mailman/Handlers/ToDigest.py
@@ -147,12 +147,14 @@ def send_i18n_digests(mlist, mboxfp):
mimemsg['From'] = mlist.GetRequestEmail()
mimemsg['Subject'] = digestid
mimemsg['To'] = mlist.GetListEmail()
+ mimemsg['Reply-To'] = mlist.GetListEmail()
# Set things up for the rfc1153 digest
plainmsg = StringIO()
rfc1153msg = Message.Message()
rfc1153msg['From'] = mlist.GetRequestEmail()
rfc1153msg['Subject'] = digestid
rfc1153msg['To'] = mlist.GetListEmail()
+ rfc1153msg['Reply-To'] = mlist.GetListEmail()
separator70 = '-' * 70
separator30 = '-' * 30
# In the rfc1153 digest, the masthead contains the digest boilerplate plus