You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some of these values are defined in comm-central, but we should probably move them out and properly define PR_MESSAGE_FLAGS as an enum in ews-rs, since it's not Thunderbird-specific.
The text was updated successfully, but these errors were encountered:
PR_MESSAGE_FLAGS
is a MAPI property that can be used byCreateItem
(and probably alsoUpdateItem
) to define a range of properties on a message, such as whether they're read/unread, draft, etc. The different flags are documented here: https://learn.microsoft.com/en-us/office/client-developer/outlook/mapi/pidtagmessageflags-canonical-propertyThe actual values of (most of) these flags can be found here: https://github.com/microsoft/MAPIStubLibrary/blob/1d30c31ebf05ef444371520cd4268d6e1fda8a3b/include/MAPIDefS.h#L2143-L2154
Some of these values are defined in comm-central, but we should probably move them out and properly define
PR_MESSAGE_FLAGS
as an enum in ews-rs, since it's not Thunderbird-specific.The text was updated successfully, but these errors were encountered: