Problems with MIMEInput and boundaries.
2009-06-02
Peter Wilkinson2009-06-03
Binger David2009-06-03
Peter Wilkinson2009-06-03
Binger David2009-06-04
Peter WilkinsonProblems with MIMEInput and boundaries.
Binger David
Does it suffice to change:
self.pat = re.compile(
as_bytes(r'--%s(--)?[ \t]*\r\n' % re.escape(boundary)))
to
self.pat = re.compile(
as_bytes(r'--%s(--)?[ \t]*(\r\n)?' % re.escape(boundary)))
in MIMEInput.__init__()?