On 09/18/2012 02:20 PM, Vegard Svanberg wrote:
However, the tools I use failed, and
it's not easy to fix this manually either, since it seems aoxexport
doesn't quote in-line From-lines in the mail bodies either (for instance
if there's a random line starting with From in the message body).
I see the bug.
aoxexport generally sends =46rom, but the code that checks whether q-p
is necessary at all doesn't scan for From, so if there's no other reason
to use q-p, the message would contain an unencoded From. Fixed.
To test the theory: Which file do I have to insert what in to make
aoxexport add an extra newline?:)
src/aoxexport/exporter.cpp, right at the bottom.
+ ::write( 1, " ", 1 );
Arnt