aboutsummaryrefslogtreecommitdiffstats
path: root/NEWS
diff options
context:
space:
mode:
authorMark Sapiro <mark@msapiro.net>2009-08-01 16:15:35 -0700
committerMark Sapiro <mark@msapiro.net>2009-08-01 16:15:35 -0700
commite469619d91f4f15574e233a2cfa4b07c8d7f36d6 (patch)
tree68ed37abcbd7b340a50cdd045c66c316119606fb /NEWS
parentfdfee4b34c818c410dd586e86ab1dad99c2a5f4c (diff)
downloadmailman2-e469619d91f4f15574e233a2cfa4b07c8d7f36d6.tar.gz
mailman2-e469619d91f4f15574e233a2cfa4b07c8d7f36d6.tar.xz
mailman2-e469619d91f4f15574e233a2cfa4b07c8d7f36d6.zip
Mailman no longer folds long sub-part headers in multipart messages.
In addition, Mailman no longer escapes From_ lines in the body of messages sent to regular list members, although MTA's may do it anyway. This is to avoid breaking signatures per Bug #265967. Changes include - Message.py, added a Generator class to avoid header folding and an as_string() method wirth a mangle_from_ argument. - Mailbox.py, uses new Message.Generator class. - SMTPDirect.py, uses as_string(mangle_from_=False) to flatten message. - Scrubber.py, removed unused ScrubberGenerator class.
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 47bc5f73..e73c3ff7 100644
--- a/NEWS
+++ b/NEWS
@@ -8,6 +8,11 @@ Here is a history of user visible changes to Mailman.
Bug Fixes and other patches
+ - Mailman no longer folds long sub-part headers in multipart messages.
+ In addition, Mailman no longer escapes From_ lines in the body of
+ messages sent to regular list members, although MTA's may do it anyway.
+ This is to avoid breaking signatures per Bug #265967.
+
- XSS protection in the web interface went too far in escaping HTML
entities. Fixed.