Pascal (Lazarus/Delphi)
Pascal (Lazarus/Delphi)
IMAP Get Quota
Sends 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.
Chilkat Pascal (Lazarus/Delphi) Downloads
program ChilkatDemo;
// Demonstrates using the Chilkat Pascal wrapper via the C bridge DLL.
// Builds as a console application under Lazarus (FPC) or Delphi.
{$IFDEF FPC}
{$MODE DELPHI}
{$ENDIF}
{$APPTYPE CONSOLE}
uses
{$IFDEF UNIX}
cthreads,
{$ENDIF}
SysUtils,
CkDllLoader,
Chilkat.Imap,
Chilkat.JsonObject;
// ---------------------------------------------------------------------------
procedure RunDemo;
var
success: Boolean;
imap: TImap;
caps: string;
jsonStr: string;
json: TJsonObject;
resourceName: string;
quotaUsed: Integer;
quotaMax: Integer;
begin
success := False;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
imap := TImap.Create;
// Use TLS
imap.Ssl := True;
imap.Port := 993;
success := imap.Connect('MY-IMAP-DOMAIN');
if (success <> True) then
begin
WriteLn(imap.LastErrorText);
Exit;
end;
// Authenticate
success := imap.Login('MY-IMAP-LOGIN','MY-IMAP-PASSWORD');
if (success <> True) then
begin
WriteLn(imap.LastErrorText);
Exit;
end;
// First check to see if the IMAP server supports the QUOTA extension.
caps := imap.Capability();
if (imap.LastMethodSuccess <> True) then
begin
WriteLn(imap.LastErrorText);
Exit;
end;
if (imap.HasCapability('QUOTA',caps) <> True) then
begin
WriteLn('IMAP server does not support the QUOTA extension.');
Exit;
end;
// 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 := imap.GetQuota('');
if (imap.LastMethodSuccess <> True) then
begin
WriteLn(imap.LastErrorText);
Exit;
end;
// The JSON string will look something like this:
// {"QUOTA":{"root":"","resource":"STORAGE","used":22216,"max":15728640}}
WriteLn(jsonStr);
// This is easy to parse...
json := TJsonObject.Create;
json.Load(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 := json.StringOf('QUOTA.resource');
quotaUsed := json.IntOf('QUOTA.used');
quotaMax := json.IntOf('QUOTA.max');
WriteLn('Resource: ' + resourceName);
WriteLn('Quota Used (in KB): ' + quotaUsed);
WriteLn('Quota Max (in KB): ' + quotaMax);
// Disconnect from the IMAP server.
success := imap.Disconnect();
imap.Free;
json.Free;
end;
// ---------------------------------------------------------------------------
begin
try
RunDemo;
except
on E: Exception do
WriteLn('Unhandled exception: ', E.ClassName, ': ', E.Message);
end;
WriteLn;
{$IFDEF MSWINDOWS}
WriteLn('Press Enter to exit...');
ReadLn;
{$ENDIF}
end.