Skip to content

Commit

Permalink
Make sure to read all TNEF property values in the loop.
Browse files Browse the repository at this point in the history
Partial fix for issue #538
  • Loading branch information
jstedfast committed Feb 27, 2020
1 parent 25827ec commit bfe4b26
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions MimeKit/Tnef/TnefPart.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,12 @@ static void ExtractRecipientTable (TnefReader reader, MimeMessage message)
// (since the SmtpAddress is meant to be used in the RCPT TO command).
addr = prop.ReadValueAsString ();
break;
case TnefPropertyId.Rowid:
prop.ReadValueAsInt32 ();
break;
default:
prop.ReadValue ();
break;
}
}

Expand Down

0 comments on commit bfe4b26

Please sign in to comment.