Code: Select all
move_request.add_request(
'MsgActionRequest',
{
'action': {
'id': id,
'op': 'move',
'l': destination_folder_id
}
},
'urn:zimbraMail'
)
and this request works for the majority of messages, the response given is:
Code: Select all
{'MsgActionResponse': {'action': {'id': '5581', 'op': 'move'}}}
However for a certain group of messages (35 specifically in my inbox) the message is never actually moved to the new directory. The response from the server matches that of other successfuly moved items, but again, no change is visible in the inbox.
Is there a way I can determine what specifically is causing these messages to fail to be moved to a different directory? Are there some kind of tag on the message that could cause this type of behavior?