Previous | Contents | Index |
Mark a user's message copy for deletion.
int POPSTORE_message_mark_delete (user_context, message_index) POPSTORE_user_context *user_context; int message_index;
User context created by a prior call to
user_context
POPSTORE_user_begin_d
. Used for input only.Index of the message to mark for deletion. Used for input only.
message_index
To mark a user's stored message for deletion, usePOPSTORE_message_mark_delete
. The index of the message to mark for deletion is specified withmessage_index
. The first message has index 1, the second index 2, and so on. Note that the message is not immediately deleted. It is retained until the user context is shut down withPOPSTORE_user_end
. 5 Note further that the underlying message file will only be deleted when all popstore recipients of the message have deleted the message.
POPSTORE_SUCCESS Normal, successful completion. POPSTORE_BADMSGID Message index is less than 1 or greater than user_context->message_count
.POPSTORE_NULLCONTEXT user_context
context is null.POPSTORE_NULLMSGLIST user_context->messages
is null.POPSTORE_NULLPROFILE user_context->profile
context is null.
5 Such deferrals are necessary in
order to implement the
|
Previous | Next | Contents | Index |