in reply to Re^3: Mail::Pop3Client messing up PGP email messages
in thread Mail::Pop3Client messing up PGP email messages
Here's the code I'm trying:
use strict; use MIME::Decoder; open FH, "audit1.gpg"; my $decoder = new MIME::Decoder "7Bit"; $decoder->decode(\*FH, \*STDOUT); close FH;
Very basic, but I'm still getting the encoded 3D which shouldn't be there at the end of the message.
I know that the encryption is correct, because when I physically remove the 3D towards the end of the file, it decodes properly.
Can you please point me to what I might be missing?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Mail::Pop3Client messing up PGP email messages
by sgifford (Prior) on May 30, 2006 at 06:36 UTC |