Stephen J. Turnbull wrote:
>
>It's almost a trivial patch; in the email/Generator.py file find the
>keyword argument continuation_ws='\t' to the Header initialization and
>change the '\t' to ' '.


This is an incomplete solution. See Mailman/Handlers/CookHeaders.py.

You really need to patch the prefix_subject function in that module by
changing

    ws = '\t'

in

    # Try to figure out what the continuation_ws is for the header
    if isinstance(subject, Header):
        lines = str(subject).splitlines()
    else:
        lines = subject.splitlines()
    ws = '\t'
    if len(lines) > 1 and lines[1] and lines[1][0] in ' \t':
        ws = lines[1][0]

to

    ws = ' '

or possibly replace that whole piece with just

    ws = ' '

-- 
Mark Sapiro <[EMAIL PROTECTED]>       The highway is for gamblers,
San Francisco Bay Area, California    better use your sense - B. Dylan

------------------------------------------------------
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=show&amp;file=faq01.027.htp

Reply via email to