. Fixed issue 77 and issue 489: It was a bug in Cc and Reply-To header parsing

This commit is contained in:
Bao-Long Nguyen-Trong 2009-06-15 05:04:03 +00:00
parent 553fdbeed5
commit c6f6e995f6
1 changed files with 6 additions and 3 deletions

View File

@ -73,11 +73,14 @@ public class MimeMessage extends Message {
protected void parse(InputStream in) throws IOException, MessagingException {
mHeader.clear();
mBody = null;
mBcc = null;
mTo = null;
mFrom = null;
mTo = null;
mCc = null;
mBcc = null;
mReplyTo = null;
mSentDate = null;
mBody = null;
MimeStreamParser parser = new MimeStreamParser();
parser.setContentHandler(new MimeMessageBuilder());