. Fixed issue 77 and issue 489: It was a bug in Cc and Reply-To header parsing
This commit is contained in:
parent
553fdbeed5
commit
c6f6e995f6
1 changed files with 6 additions and 3 deletions
|
@ -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());
|
||||
|
|
Loading…
Reference in a new issue