Unicode C
Unicode C
IMAP Session Logging
Demonstrates how to use session logging with IMAP.Chilkat Unicode C Downloads
#include <C_CkImapW.h>
void ChilkatSample(void)
{
BOOL success;
HCkImapW imap;
success = FALSE;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
imap = CkImapW_Create();
// Set the KeepSessionLog property to enable IMAP session logging
CkImapW_putKeepSessionLog(imap,TRUE);
// Connect to an IMAP server.
// Use TLS
CkImapW_putSsl(imap,TRUE);
CkImapW_putPort(imap,993);
success = CkImapW_Connect(imap,L"imap.example.com");
if (success != TRUE) {
wprintf(L"%s\n",CkImapW_lastErrorText(imap));
CkImapW_Dispose(imap);
return;
}
// Login
success = CkImapW_Login(imap,L"mylogin",L"mypassword");
if (success != TRUE) {
wprintf(L"%s\n",CkImapW_lastErrorText(imap));
CkImapW_Dispose(imap);
return;
}
// Select an IMAP mailbox
success = CkImapW_SelectMailbox(imap,L"Inbox");
if (success != TRUE) {
wprintf(L"%s\n",CkImapW_lastErrorText(imap));
CkImapW_Dispose(imap);
return;
}
// We're not really doing anything in this example
// other than to show how to examine the IMAP component's session log...
// Disconnect from the IMAP server.
success = CkImapW_Disconnect(imap);
// Display the session log...
wprintf(L"%s\n",CkImapW_sessionLog(imap));
CkImapW_Dispose(imap);
}