diff options
author | tkikuchi <> | 2005-02-12 14:31:45 +0000 |
---|---|---|
committer | tkikuchi <> | 2005-02-12 14:31:45 +0000 |
commit | ccd53bc99e5aa7bf6cc2565f6dca8762351767ec (patch) | |
tree | 6acbf1bb1f27580746a8ea75e9c60bae8456f0b4 /Mailman/Queue | |
parent | 9aa489fc0a63970b5616085cb9d918a1431898ee (diff) | |
download | mailman2-ccd53bc99e5aa7bf6cc2565f6dca8762351767ec.tar.gz mailman2-ccd53bc99e5aa7bf6cc2565f6dca8762351767ec.tar.xz mailman2-ccd53bc99e5aa7bf6cc2565f6dca8762351767ec.zip |
Request from Brad Knowles. We need subject prefix stripped
from the posts from mailling list for gatewaying to nntp.
Diffstat (limited to '')
-rw-r--r-- | Mailman/Queue/NewsRunner.py | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/Mailman/Queue/NewsRunner.py b/Mailman/Queue/NewsRunner.py index 2b40a3ca..be1dd93d 100644 --- a/Mailman/Queue/NewsRunner.py +++ b/Mailman/Queue/NewsRunner.py @@ -102,11 +102,14 @@ def prepare_message(mlist, msg, msgdata): del msg['approved'] msg['Approved'] = mlist.GetListEmail() # Should we restore the original, non-prefixed subject for gatewayed - # messages? - origsubj = msgdata.get('origsubj') - if not mlist.news_prefix_subject_too and origsubj is not None: + # messages? TK: We use stripped_subject (prefix stripped) which was + # crafted in CookHeaders.py to ensure prefix was stripped from the subject + # came from mailing list user. + stripped_subject = msgdata.get('stripped_subject') \ + or msgdaga.get('origsubj') + if not mlist.news_prefix_subject_too and stripped_subject is not None: del msg['subject'] - msg['subject'] = origsubj + msg['subject'] = stripped_subject # Add the appropriate Newsgroups: header ngheader = msg['newsgroups'] if ngheader is not None: |