summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbwarsaw2000-09-25 13:33:50 +0000
committerbwarsaw2000-09-25 13:33:50 +0000
commit0fa404f4c1e09517c340de87fcbdb2e82d532c7a (patch)
treed415ac4fa0fb951f7f68cb5c8c704b26cabc04f5
parent4cd57755b12b6f4c61dff2d4b4867fa5033dd91c (diff)
downloadmailman-0fa404f4c1e09517c340de87fcbdb2e82d532c7a.tar.gz
mailman-0fa404f4c1e09517c340de87fcbdb2e82d532c7a.tar.zst
mailman-0fa404f4c1e09517c340de87fcbdb2e82d532c7a.zip
process(): Typo in Reply-To: munging section's logic crept into the
last patch. This caused confirmation requests to have a reply-to pointing back to the list. Closes bug #115253.
Diffstat (limited to '')
-rw-r--r--Mailman/Handlers/CookHeaders.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Handlers/CookHeaders.py b/Mailman/Handlers/CookHeaders.py
index 2ac520de0..521e49628 100644
--- a/Mailman/Handlers/CookHeaders.py
+++ b/Mailman/Handlers/CookHeaders.py
@@ -79,7 +79,7 @@ def process(mlist, msg, msgdata):
# or if there is already a reply-to set. If the user has set
# one we assume they have a good reason for it, and we don't
# second guess them.
- if not fasttrack or msg.get('reply-to'):
+ if not fasttrack and not msg.get('reply-to'):
# Set Reply-To: header to point back to this list
if mlist.reply_goes_to_list == 1:
msg['Reply-To'] = mlist.GetListEmail()