Sample code for 30+ languages & platforms
Classic ASP

IMAP Get Quota Root

Sends 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.

Chilkat Classic ASP Downloads

Classic ASP
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
success = 0

' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.

set imap = Server.CreateObject("Chilkat.Imap")

' Use TLS
imap.Ssl = 1
imap.Port = 993
success = imap.Connect("MY-IMAP-DOMAIN")
If (success <> 1) Then
    Response.Write "<pre>" & Server.HTMLEncode( imap.LastErrorText) & "</pre>"
    Response.End
End If

' Authenticate
success = imap.Login("MY-IMAP-LOGIN","MY-IMAP-PASSWORD")
If (success <> 1) Then
    Response.Write "<pre>" & Server.HTMLEncode( imap.LastErrorText) & "</pre>"
    Response.End
End If

' First check to see if the IMAP server supports the QUOTA extension.
caps = imap.Capability()
If (imap.LastMethodSuccess <> 1) Then
    Response.Write "<pre>" & Server.HTMLEncode( imap.LastErrorText) & "</pre>"
    Response.End
End If

If (imap.HasCapability("QUOTA",caps) <> 1) Then
    Response.Write "<pre>" & Server.HTMLEncode( "IMAP server does not support the QUOTA extension.") & "</pre>"
    Response.End
End If

jsonStr = imap.GetQuotaRoot("Inbox")
If (imap.LastMethodSuccess <> 1) Then
    Response.Write "<pre>" & Server.HTMLEncode( imap.LastErrorText) & "</pre>"
    Response.End
End If

' The JSON string will look something like this:
' {"QUOTAROOT":{"mailbox":"Inbox","root":""},"QUOTA":{"root":"","resource":"STORAGE","used":22216,"max":15728640}}
Response.Write "<pre>" & Server.HTMLEncode( jsonStr) & "</pre>"

' This is easy to parse...
set json = Server.CreateObject("Chilkat.JsonObject")
success = json.Load(jsonStr)

' Get the quota root for Inbox, which is an empty string in the case above.
quotaRoot = json.StringOf("QUOTAROOT.root")
Response.Write "<pre>" & Server.HTMLEncode( "Quota Root for Inbox: [" & quotaRoot & "]") & "</pre>"

' 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")

Response.Write "<pre>" & Server.HTMLEncode( "Resource: " & resourceName) & "</pre>"
Response.Write "<pre>" & Server.HTMLEncode( "Quota Used (in KB): " & quotaUsed) & "</pre>"
Response.Write "<pre>" & Server.HTMLEncode( "Quota Max (in KB): " & quotaMax) & "</pre>"

' Disconnect from the IMAP server.
success = imap.Disconnect()

%>
</body>
</html>