Sends the GETQUOTA command along with specified mailbox. If this
mailbox exists, then an array containing a Net::IMAP::MailboxQuota object
is returned. This command is generally only available to server admin.
# File lib/net/imap.rb, line 603
def getquota(mailbox)
synchronize do
send_command("GETQUOTA", mailbox)
return @responses.delete("QUOTA")
end
end