imap_list_mailboxes

Example: imap_list_mailboxesInternet Messaging Functions (IMAP)

Lists the available mailboxes.

int imap_list_mailboxes( char *transaction, char *reference, char *name, LAST );
transactionA transaction name for this step in quotes. To avoid creating a transaction for this step, use a null string, "".
reference The location or path of the mailbox in the following format: Reference=reference name
name The names of the desired mailboxes. You can use wildcards, *, together with partial mailbox names. For example: "MatchName=comp.mail.*"
LAST A marker indicating the end of the argument list.

The imap_list_mailboxes function lists the mailboxes that are available to the client. The reply contains the name attributes, hierarchy delimiter, and mailbox names.

The following table shows how references and mailbox names might be interpreted on a Linux-based server:

Reference Mailbox Name Interpretation
~smith/Mail/foo.*~smith/Mail/foo.*
archive/%archive/%
#news.comp.mail.*news.comp.mail.
~smith/Mail//usr/doc/foousr/doc/foo
archive/fred/Mailfred/Mail

The first three examples demonstrate how reference arguments are interpreted. The character "*" is a wildcard, and matches zero or other characters.

This function is for use with global sessions. For multiple sessions, use the imap_list_mailboxes_ex function, which allows you to specify a session identifier.

Return Values

If this function succeeds, it returns LR_PASS. Otherwise, it returns LR_FAIL.

Parameterization

All arguments of this function of the type char, can be parameterized with standard parameterization.