Class: Net::IMAP::MailboxACLItem
- Inherits:
-
Struct
- Object
- Struct
- Net::IMAP::MailboxACLItem
- Defined in:
- lib/net/imap/response_data.rb
Overview
Net::IMAP::MailboxACLItem represents the response from GETACL.
acl_data ::= "ACL" SPACE mailbox *(SPACE identifier SPACE rights)
identifier ::= astring
rights ::= astring
Fields:
- user
-
Login name that has certain rights to the mailbox that was specified with the getacl command.
- rights
-
The access rights the indicated user has to the mailbox.
Instance Attribute Summary collapse
-
#mailbox ⇒ Object
Returns the value of attribute mailbox.
-
#rights ⇒ Object
Returns the value of attribute rights.
-
#user ⇒ Object
Returns the value of attribute user.
Instance Attribute Details
#mailbox ⇒ Object
Returns the value of attribute mailbox
187 188 189 |
# File 'lib/net/imap/response_data.rb', line 187 def mailbox @mailbox end |
#rights ⇒ Object
Returns the value of attribute rights
187 188 189 |
# File 'lib/net/imap/response_data.rb', line 187 def rights @rights end |
#user ⇒ Object
Returns the value of attribute user
187 188 189 |
# File 'lib/net/imap/response_data.rb', line 187 def user @user end |