in reply to email parsing problem?

This is happening because the emails are in Quoted-Printable format. You may want to look into filtering via MIME::QuotedPrint.

Replies are listed 'Best First'.
Re: Re: email parsing problem?
by Octavian (Monk) on Dec 10, 2003 at 20:31 UTC
    well, I added the :
    use MIME::QuotedPrint;
    line, and changed:
    print tomail "$line\n";
    to use:
    $decoded = MIME::QuotedPrint::decode($line); print tomail "$decoded";
    and still no joy...I have a feeling this is the way to go, but I am not grasping the concept or something...