Chilkat HOME ASP Visual Basic VB.NET C# Visual C++ C MFC Delphi FoxPro Java Perl PHP Python Ruby SQL Server VBScript
IMAP Session LoggingDemonstrates how to use session logging with IMAP.
#include <C_CkImap.h> void ChilkatSample(void) { HCkImap imap; BOOL success; imap = CkImap_Create(); // Anything unlocks the component and begins a fully-functional 30-day trial. success = CkImap_UnlockComponent(imap,"Anything for 30-day trial"); if (success != TRUE) { printf("%s\n",CkImap_lastErrorText(imap)); return; } // Set the KeepSessionLog property to enable IMAP session logging CkImap_putKeepSessionLog(imap,TRUE); // Connect to an IMAP server. success = CkImap_Connect(imap,"mail.chilkatsoft.com"); if (success != TRUE) { printf("%s\n",CkImap_lastErrorText(imap)); return; } // Login success = CkImap_Login(imap,"mylogin","mypassword"); if (success != TRUE) { printf("%s\n",CkImap_lastErrorText(imap)); return; } // Select an IMAP mailbox success = CkImap_SelectMailbox(imap,"Inbox"); if (success != TRUE) { printf("%s\n",CkImap_lastErrorText(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. CkImap_Disconnect(imap); // Display the session log... printf("%s\n",CkImap_sessionLog(imap)); CkImap_Dispose(imap); } |
Need a specific example? Send a request to support@chilkatsoft.com
© 2000-2008 Chilkat Software, Inc. All Rights Reserved.