MessageValidator.Validate issue

Hello,
MessageValidator.Validate returns IsSuccess False and errors on these 4 emlx files
Can you please verify if the errors are legit?
Thanks.
EMLX.zip (24.3 KB)

Hello,

We checked the files.

136153, 207046, 229417:

This was fixed under EMAILNET-41829: with the fix all three files are detected as Emlx and Validate() returns IsSuccess = true. The fix will be included in the next release.

114895:
one genuine error, one side effect. The outer closing boundary at the end of the message is truncated: the file ends with --Apple-Mail=_F073CB14-…-8C1A8748438B- (a single dash, no line break) immediately followed by the <?xml …> plist. RFC 2046 requires --boundary--, so the error Message doesn't contain the closing boundary line "Apple-Mail=_F073CB14-…" is legitimate.
This is an Apple Mail quirk, and the message is still fully loadable with MailMessage.Load().

The second error, about the inner boundary Apple-Mail=_199BBC0B-…, is a side effect: that boundary is present in the file, but our EMLX pre-processing, which strips the trailing plist, cuts one line too many when the truncated boundary and <?xml share a line. We will fix this. After the fix Validate() will report only the single genuine error for this file.

Thank you.