Sample code for 30+ languages & platforms
C

Fetch a Chunk of Messages, Tracking Failures

See more IMAP Examples

Demonstrates the Chilkat Imap.FetchChunk2 method, which downloads a run of messages by sequence number and reports which succeeded and which failed. The arguments are the starting sequence number, the count, a MessageSet that receives the failed IDs, a MessageSet that receives the successfully-fetched IDs, and the EmailBundle. This example fetches the first chunk of messages and reports the success and failure counts.

Background: When bulk-downloading a large mailbox, individual messages can occasionally fail to fetch (a corrupt message on the server, a transient error) without failing the whole operation. FetchChunk2 is designed for that reality: it returns a partial EmailBundle plus two MessageSet objects so your code can log or retry exactly the messages that did not come through, rather than aborting the entire sync.

Chilkat C Downloads

C
#include <C_CkImap.h>
#include <C_CkMessageSet.h>
#include <C_CkEmailBundle.h>

void ChilkatSample(void)
    {
    BOOL success;
    HCkImap imap;
    int numMessages;
    int count;
    HCkMessageSet failedSet;
    HCkMessageSet fetchedSet;
    HCkEmailBundle bundle;

    success = FALSE;

    //  Demonstrates the Imap.FetchChunk2 method, which downloads a run of messages by sequence
    //  number and reports which succeeded and which failed.  The 1st argument is the starting
    //  sequence number, the 2nd is the count, the 3rd receives the failed IDs, the 4th receives
    //  the successfully-fetched IDs, and the 5th is the EmailBundle.

    imap = CkImap_Create();

    CkImap_putSsl(imap,TRUE);
    CkImap_putPort(imap,993);

    success = CkImap_Connect(imap,"imap.example.com");
    if (success == FALSE) {
        printf("%s\n",CkImap_lastErrorText(imap));
        CkImap_Dispose(imap);
        return;
    }

    success = CkImap_Login(imap,"user@example.com","myPassword");
    if (success == FALSE) {
        printf("%s\n",CkImap_lastErrorText(imap));
        CkImap_Dispose(imap);
        return;
    }

    numMessages = CkImap_SelectMailbox(imap,"Inbox");
    if (numMessages < 0) {
        printf("%s\n",CkImap_lastErrorText(imap));
        CkImap_Dispose(imap);
        return;
    }

    //  Fetch messages 1..25 (or fewer if the mailbox is smaller).
    count = 25;
    if (count > numMessages) {
        count = numMessages;
    }

    failedSet = CkMessageSet_Create();
    fetchedSet = CkMessageSet_Create();
    bundle = CkEmailBundle_Create();
    success = CkImap_FetchChunk2(imap,1,count,failedSet,fetchedSet,bundle);
    if (success == FALSE) {
        printf("%s\n",CkImap_lastErrorText(imap));
        CkImap_Dispose(imap);
        CkMessageSet_Dispose(failedSet);
        CkMessageSet_Dispose(fetchedSet);
        CkEmailBundle_Dispose(bundle);
        return;
    }

    printf("Fetched: %d\n",CkMessageSet_getCount(fetchedSet));
    printf("Failed:  %d\n",CkMessageSet_getCount(failedSet));

    success = CkImap_Disconnect(imap);
    if (success == FALSE) {
        printf("%s\n",CkImap_lastErrorText(imap));
        CkImap_Dispose(imap);
        CkMessageSet_Dispose(failedSet);
        CkMessageSet_Dispose(fetchedSet);
        CkEmailBundle_Dispose(bundle);
        return;
    }



    CkImap_Dispose(imap);
    CkMessageSet_Dispose(failedSet);
    CkMessageSet_Dispose(fetchedSet);
    CkEmailBundle_Dispose(bundle);

    }