getacl(mailbox)
public
Send the GETACL command along with a specified mailbox. If this
mailbox exists, an array containing objects of Net::IMAP::MailboxACLItem
will be returned.
Show source
def getacl(mailbox)
synchronize do
send_command("GETACL", mailbox)
return @responses.delete("ACL")[-1]
end
end