Service: zimbraMail

Command: OpenIMAPFolder
Namespace: urn:zimbraMail
Description:
Properties:
Authorization token required UNKNOWN
Admin Authorization token required UNKNOWN

OpenIMAPFolderRequest

    <OpenIMAPFolderRequest l="..." limit="(int)"> ## OpenIMAPFolderRequest
        <cursor id="{cursor-prev-id}" /> ## ImapCursorInfo
    </OpenIMAPFolderRequest>

elements and attributes you can define within a <OpenIMAPFolderRequest> element:

XPath Required / Optional Description
@l Required (only 1) Type: String
The ID of the folder to open
@limit Required (only 1) Type: int
The maximum number of results to return
/cursor Optional (0 or 1) Cursor specifying the last item on the previous results page
/cursor@id Required (only 1) Type: String
ID of the last IMAP item of the last page returned by OpenImapFolderRequest. If this item is deleted, the cursor is cleared.

OpenIMAPFolderResponse

    <OpenIMAPFolderResponse [more="(0|1)"]> ## OpenIMAPFolderResponse
        <folder>
            (<m t="{item-type}" f="{flags} (Integer)" tn="{tag-names}" id="{msg-id} (int)" i4uid="{imap-uid} (int)" /> ## ImapMessageInfo)+
        </folder>
        <cursor id="{cursor-prev-id}" /> ## ImapCursorInfo
    </OpenIMAPFolderResponse>

elements and attributes you can define within a <OpenIMAPFolderResponse> element:

XPath Required / Optional Description
@more Optional (0 or 1) Type: 0|1
whether there are more imap messages remaining in the folder
/folder Required (only 1)
/folder/m Required (1 or more)
/folder/m@t Required (only 1) Type: String
Item type
/folder/m@f Required (only 1) Type: Integer
Flags
/folder/m@tn Required (only 1) Type: String
Comma separated list of name of tags associated with this item
/folder/m@id Required (only 1) Type: int
Message ID
/folder/m@i4uid Required (only 1) Type: int
IMAP UID
/cursor Optional (0 or 1) Cursor to be used by the next request, if more results exist
/cursor@id Required (only 1) Type: String
ID of the last IMAP item of the last page returned by OpenImapFolderRequest. If this item is deleted, the cursor is cleared.