Send the GETACL command along with a specified mailbox. If this
mailbox exists, an array containing objects of Net::IMAP::MailboxACLItem
will be returned.
# File lib/net/imap.rb, line 639
def getacl(mailbox)
synchronize do
send_command("GETACL", mailbox)
return @responses.delete("ACL")[-1]
end
end