Fabiano Breves wrote: > >Ok, sent to your e-mail address a txt file with the source code of the >message. > >Just wondering ( I don't know how the software does it ) could mailman just >get the Approved from the text part and search for it in the other parts of >the msg ??
That's exactly what it does, but the problem in this case is that the HTML part is quoted-printable encoded and the approved: line was split across two lines of the message HTML part. I.e. '=\n' was inserted between Approved: and the password so the search failed. This could be accounted for by adjusting the search pattern, but the real fix is to 'decode' the encoded part (which could be base64 encoded) before searching. This in turn has other implications for resetting the part after removing the Approved: line, but I'll work on it. -- 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
