IMAPListMessages

Command group Flag affected Reversible Execute on client Platform(s)
External commands YES NO NO All

Syntax

IMAPListMessages (socket,list[,stsproc,responselist]) Returns status

Description

Note: The flag is set according to whether Omnis was able to make a call to this external command.

This Web command is multi-threaded, allowing another thread to execute in the multi-threaded server while it runs. Note that the same socket cannot safely be used concurrently by more than one thread.

IMAPListMessages gets the list of messages in the currently selected mailbox.

Before using this command, you must select a mailbox using the IMAPSelectMailbox command

Socket is an Omnis Long Integer field containing a socket opened to an IMAP server using IMAPConnect.

List receives the list of messages in the mailbox. Before calling the command, you must defined the list to have nine columns, as follows:

Column Contains
UID A long integer which receives the IMAP Unique Identifier (UID) of the message. Note that the line number in the list is the IMAP message sequence number, at the point the list was generated. It is safest to use UIDs to identify messages.
Size A long integer which receives the RFC 822 size in bytes of the message.
InternalDate A date-time which receives the Internal Date of the message. This is typically the date and time that the message was placed in the mailbox.
Answered A long integer which is set to kTrue if the message has the Answered flag, kFalse if not.
Deleted A long integer which is set to kTrue if the message has the Deleted flag, kFalse if not.
Draft A long integer which is set to kTrue if the message has the Draft flag, kFalse if not.
Flagged A long integer which is set to kTrue if the message has the Flagged flag, kFalse if not.
Recent A long integer which is set to kTrue if the message has the Recent flag, kFalse if not.
Seen A long integer which is set to kTrue if the message has the Seen flag, kFalse if not.

Stsproc is an optional parameter containing the name of an Omnis method that this command calls with status messages. This command calls the method with no parameters, and the status information in the variable #S1. The status information logs protocol messages exchanged on the connection to the server.

Responselist is an optional parameter into which this command places response lines received from the IMAP server. Before calling this command, define the responselist to have a single Character column. When the command returns successfully, the response list contains the untagged and tagged responses received from the IMAP server as a result of executing this command. These sometimes include unsolicited information, for example, an update on the current number of messages in the selected mailbox. Each line in the response list is a response line received from the server. See RFC 3501 for more details, if you need to handle this sort of information.

This command returns an integer, which is less than zero if an error occurred. Possible error codes are listed in the Web Command Error Codes Appendix.

Example

# List all messages in the currently selected mailbox
Do iMessageList.$define(iUID,iSize,iInternalDate,iAnswered,iDeleted,iDraft,iFlagged,iRecent,iSeen)
IMAPListMessages (iIMAPSocket,iMessageListReturns lStatus
If lStatus<0
  # Command failed
End If