Enum EmailMimeExtractionOutcome
- Namespace
- MailFathom.Application.Emails.Extraction
- Assembly
- MailFathom.Application.dll
States whether a message's MIME could be read, and what stopped the reader when it could not.
public enum EmailMimeExtractionOutcome
Fields
Extracted = 0The message was read and its normalized metadata is present.
MalformedContent = 1The bytes do not parse as a MIME message, which is expected of real mail rather than exceptional.
NestingDepthLimitExceeded = 3The message nests multiparts deeper than the configured limit, so reading it was abandoned.
PartCountLimitExceeded = 2The message declares more parts than the configured limit, so reading it was abandoned.