IMAPIFolder::SetReadFlags

The IMAPIFolder::SetReadFlags method sets or clears the MSGFLAG_READ flag in the PR_MESSAGE_FLAGS12X4D91 property of one or more of the folder s messages and manages the sending of read reports.

Quick Info

See IMAPIFolder : IMAPIContainer161AJWS.

 

HRESULT SetReadFlags(

    LPENTRYLIST lpMsgList,

 

    ULONG ulUIParam,

 

    LPMAPIPROGRESS lpProgress,

 

    ULONG ulFlags

 

   )

 

 

Parameters

lpMsgList

[in] Pointer to an array of ENTRYLIST25LJIV5 structures that identify the message or messages with read flags to set or clear. If lpMsgList is set to NULL, the read flags for all of the folder s messages are set or cleared.

ulUIParam

[in] Handle of the parent window for the progress indicator. The ulUIParam parameter is ignored unless the MESSAGE_DIALOG flag is set in the ulFlags parameter.

lpProgress

[in] Pointer to a progress object for displaying a progress indicator. If NULL is passed in lpProgress, the message store provider displays a progress indicator using MAPI s implementation. The lpProgress parameter is ignored unless the MESSAGE_DIALOG flag is set in ulFlags.

ulFlags

[in] Bitmask of flags that controls the setting of a message s read flag and the processing of read reports. The following flags can be set:

CLEAR_READ_FLAG

The MSGFLAG_READ flag should be cleared in PR_MESSAGE_FLAGS and that no read report should be sent.

CLEAR_NRN_PENDING

The MSGFLAG_NRN_PENDING flag should be cleared in PR_MESSAGE_FLAGS and a nonread report should not be sent.

CLEAR_RN_PENDING

The MSGFLAG_RN_PENDING flag should be cleared in PR_MESSAGE_FLAGS and no read report should be sent.

GENERATE_RECEIPT_ONLY

A read report should be sent if one is pending, but there should be no change in the state of the MSGFLAG_READ flag.

MAPI_DEFERRED_ERRORS

Allows SetReadFlags to return successfully, possibly before the operation has completed.

MESSAGE_DIALOG

Displays a progress indicator while the operation proceeds.

SUPPRESS_RECEIPT

A pending read report should be canceled if a read report had been requested and this call changes the state of the message from unread to read. If this call does not change the state of the message, the message store provider can ignore this flag.

 

Return Values

S_OK

The read flag for the specified message or messages was successfully set or cleared.

MAPI_E_NO_SUPPRESS

The message store provider does not support the suppression of read reports.

MAPI_E_INVALID_PARAMETER

One of the following combinations of flags is set in the ulFlags parameter:

    SUPPRESS_RECEIPT | CLEAR_READ_FLAG

    SUPPRESS_RECEIPT | CLEAR_READ_FLAG | GENERATE_RECEIPT_ONLY

    CLEAR_READ_FLAG | GENERATE_RECEIPT_ONLY

MAPI_W_PARTIAL_COMPLETION

The call succeeded, but not all of the messages were successfully processed. When this warning is returned, the call should be handled as successful. To test for this warning, use the HR_FAILED macro. See Using Macros for Error Handling3AFTHZP.

 

Remarks

The IMAPIFolder::SetReadFlags method sets or clears the MSGFLAG_READ flag in the PR_MESSAGE_FLAGS12X4D91 property of one or more of the folder s messages. Setting the MSGFLAG_READ flag marks a message as having been read, which does not necessarily indicate that the intended recipient has actually read the message.

SetReadFlags also manages the sending of read reports.

The read flag cannot be altered for:

    Messages that do not exist.

    Messages that have been moved elsewhere.

    Messages that are open with read/write access.

    Messages that are currently submitted.

 

Notes to Implementers

You can choose not to support the sending of read reports and the request to suppress read reports. To avoid suppressing a read report, return MAPI_E_NO_SUPPRESS when SetReadFlags is called with SUPPRESS_RECEIPT set in ulFlags.

When lpMsgList points to more than one message, perform the operation as completely as possible for each message. Do not stop the operation prematurely unless a failure occurs that is beyond your control, such as running out of memory, running out of disk space, or corruption in the message store.

If none of the flags is set in the ulFlags parameter, the following rules apply:

    If MSGFLAG_READ is already set, do nothing.

    If MSGFLAG_READ is not set, set it immediately and send any pending read reports if the PR_READ_RECEIPT_REQUESTEDGYIX43 property is set.

When the SUPPRESS_RECEIPT flag is set:

    If MSGFLAG_READ is already set, do nothing.

    If MSGFLAG_READ is not set, set it and cancel any pending read reports.

 

When the CLEAR_READ_FLAG flag is set, clear the MSGFLAG_READ flag in each message s PR_MESSAGE_FLAGS property and do not send any read reports.

When the GENERATE_RECEIPT_ONLY flag is set, send any pending read reports. Do not set or clear MSGFLAG_READ.

When both the SUPPRESS_RECEIPT and GENERATE_RECEIPT_ONLY flags are set, set the PR_READ_RECEIPT_REQUESTED to FALSE if it is set and do not send a read report.

Notes to Callers

Expect these return values under the following conditions:

Condition

Return value

SetReadFlags has successfully processed every message.

S_OK

SetReadFlags was unable to successfully process every message.

MAPI_W_PARTIAL_COMPLETION or MAPI_E_NOT_FOUND

SetReadFlags was unable to complete.

Any error value except MAPI_E_NOT_FOUND

 

When SetReadFlags is unable to complete, do not assume that no work was done. SetReadFlags might have been able to set or clear the MSGFLAG_READ flag for one or more of the messages before encountering the error.

See Also

IMessage::SetReadFlag, PR_MESSAGE_FLAGS