Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(MFC) IMAP Get Quota RootSends the GETQUOTAROOT command to the IMAP server to get the quota root for a given mailbox. This also provides quota information for the given mailbox. The GetQuotaRoot 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.
#include <CkImap.h> #include <CkJsonObject.h> void ChilkatSample(void) { CkString strOut; // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. CkImap imap; // Use TLS imap.put_Ssl(true); imap.put_Port(993); bool success = imap.Connect("MY-IMAP-DOMAIN"); if (success != true) { strOut.append(imap.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // Authenticate success = imap.Login("MY-IMAP-LOGIN","MY-IMAP-PASSWORD"); if (success != true) { strOut.append(imap.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // First check to see if the IMAP server supports the QUOTA extension. const char *caps = imap.capability(); if (imap.get_LastMethodSuccess() != true) { strOut.append(imap.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } if (imap.HasCapability("QUOTA",caps) != true) { strOut.append("IMAP server does not support the QUOTA extension."); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } const char *jsonStr = imap.getQuotaRoot("Inbox"); if (imap.get_LastMethodSuccess() != true) { strOut.append(imap.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // The JSON string will look something like this: // {"QUOTAROOT":{"mailbox":"Inbox","root":""},"QUOTA":{"root":"","resource":"STORAGE","used":22216,"max":15728640}} strOut.append(jsonStr); strOut.append("\r\n"); // This is easy to parse... CkJsonObject json; json.Load(jsonStr); // Get the quota root for Inbox, which is an empty string in the case above. const char *quotaRoot = json.stringOf("QUOTAROOT.root"); strOut.append("Quota Root for Inbox: ["); strOut.append(quotaRoot); strOut.append("]"); strOut.append("\r\n"); // 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. const char *resourceName = json.stringOf("QUOTA.resource"); int quotaUsed = json.IntOf("QUOTA.used"); int quotaMax = json.IntOf("QUOTA.max"); strOut.append("Resource: "); strOut.append(resourceName); strOut.append("\r\n"); strOut.append("Quota Used (in KB): "); strOut.appendInt(quotaUsed); strOut.append("\r\n"); strOut.append("Quota Max (in KB): "); strOut.appendInt(quotaMax); strOut.append("\r\n"); // Disconnect from the IMAP server. success = imap.Disconnect(); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); } |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.