~mailman-coders/mailman/2.1

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Mark Sapiro
  • Date: 2009-08-01 23:15:35 UTC
  • Revision ID: mark@msapiro.net-20090801231535-yl4w1if310rh1o23
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.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
 
9
9
  Bug Fixes and other patches
10
10
 
 
11
    - Mailman no longer folds long sub-part headers in multipart messages.
 
12
      In addition, Mailman no longer escapes From_ lines in the body of
 
13
      messages sent to regular list members, although MTA's may do it anyway.
 
14
      This is to avoid breaking signatures per Bug #265967.
 
15
 
11
16
    - XSS protection in the web interface went too far in escaping HTML
12
17
      entities.  Fixed.
13
18