Michael Lee wrote: > >I've noticed that when I send e-mails with attachments (for example, either >an HTML message sent from my gmail account or an attached jpeg) to my test >list, I get the following footer > >blah message >-------------- next part -------------- >An HTML attachment was scrubbed... >URL: http://lists.myexamples1.org/pipermail/bylaws/attachments/20070208/866= >c1be7/attachment.html > >The first part of the URL is clickable, the second is not. <snip> >How do I fix my footers so that no equal sign gets injected into the >attachment URL, and that the entire URL is clickable?
This is not a Mailman issue. Apparently, the message you receive is quoted-printable encoded. Among other things, quoted-printable encoding allows long lines to be split by adding an '=' just before the new-line that splits the long line. I.e., the line abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijkl could be split in a quoted-printable encoding into abcdefghijklmnopqrstuvwxyzabcdefghijklm= nopqrstuvwxyzabcdefghijkl and the user agent that renders the message is supposed to drop the = and the immediately following newline, thus rejoining the two pieces into one long line. Either your MUA (mail client) is not properly understanding the quoted-printable encoding or some other agent in the delivery path from Mailman to you has munged the message. -- Mark Sapiro <[EMAIL PROTECTED]> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan ------------------------------------------------------ Mailman-Users mailing list [email protected] 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&file=faq01.027.htp
