Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Unicode C) IMAP Get QuotaSends the GETQUOTA command to the IMAP server to get the quota information for a given quota root. The GetQuota method is available in Chilkat starting at v9.5.0.58, and is only available for IMAP servers that support the QUOTA extension. The information is returned in JSON format. This example demonstrates how to parse the JSON to get the desired information. Typically, the quota root for the Inbox is the empty string. The GetQuotaRoot method can be called to get the quota root for a given mailbox.
#include <C_CkImapW.h> #include <C_CkJsonObjectW.h> void ChilkatSample(void) { HCkImapW imap; BOOL success; const wchar_t *caps; const wchar_t *jsonStr; HCkJsonObjectW json; const wchar_t *resourceName; int quotaUsed; int quotaMax; // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. imap = CkImapW_Create(); // Use TLS CkImapW_putSsl(imap,TRUE); CkImapW_putPort(imap,993); success = CkImapW_Connect(imap,L"MY-IMAP-DOMAIN"); if (success != TRUE) { wprintf(L"%s\n",CkImapW_lastErrorText(imap)); CkImapW_Dispose(imap); return; } // Authenticate success = CkImapW_Login(imap,L"MY-IMAP-LOGIN",L"MY-IMAP-PASSWORD"); if (success != TRUE) { wprintf(L"%s\n",CkImapW_lastErrorText(imap)); CkImapW_Dispose(imap); return; } // First check to see if the IMAP server supports the QUOTA extension. caps = CkImapW_capability(imap); if (CkImapW_getLastMethodSuccess(imap) != TRUE) { wprintf(L"%s\n",CkImapW_lastErrorText(imap)); CkImapW_Dispose(imap); return; } if (CkImapW_HasCapability(imap,L"QUOTA",caps) != TRUE) { wprintf(L"IMAP server does not support the QUOTA extension.\n"); CkImapW_Dispose(imap); return; } // This example assumes we already know the quota root for the given mailbox. // For Inbox, it is typically the empty string. See the documentation and example // for the GetQuotaRoot method to query for the quota root of a mailbox. // (It's probably easier to use GetQuotaRoot because the mailbox name // can be passed to it, and in addition, it returns the quota information.) // method for details jsonStr = CkImapW_getQuota(imap,L""); if (CkImapW_getLastMethodSuccess(imap) != TRUE) { wprintf(L"%s\n",CkImapW_lastErrorText(imap)); CkImapW_Dispose(imap); return; } // The JSON string will look something like this: // {"QUOTA":{"root":"","resource":"STORAGE","used":22216,"max":15728640}} wprintf(L"%s\n",jsonStr); // This is easy to parse... json = CkJsonObjectW_Create(); CkJsonObjectW_Load(json,jsonStr); // Now get the resource name (which can be STORAGE or MESSAGE) and the used/max values. // Most servers have STORAGE quotas, which are for total capacity. For example, GMail's // STORAGE quota is 15GB (at the time of writing this example). // A MESSAGE quota sets a limit on the number of messages. resourceName = CkJsonObjectW_stringOf(json,L"QUOTA.resource"); quotaUsed = CkJsonObjectW_IntOf(json,L"QUOTA.used"); quotaMax = CkJsonObjectW_IntOf(json,L"QUOTA.max"); wprintf(L"Resource: %s\n",resourceName); wprintf(L"Quota Used (in KB): %d\n",quotaUsed); wprintf(L"Quota Max (in KB): %d\n",quotaMax); // Disconnect from the IMAP server. success = CkImapW_Disconnect(imap); CkImapW_Dispose(imap); CkJsonObjectW_Dispose(json); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.