diff options
| author | bwarsaw | 2000-09-25 13:33:50 +0000 |
|---|---|---|
| committer | bwarsaw | 2000-09-25 13:33:50 +0000 |
| commit | 0fa404f4c1e09517c340de87fcbdb2e82d532c7a (patch) | |
| tree | d415ac4fa0fb951f7f68cb5c8c704b26cabc04f5 | |
| parent | 4cd57755b12b6f4c61dff2d4b4867fa5033dd91c (diff) | |
| download | mailman-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.py | 2 |
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() |
