Class: Net::IMAP::MailboxACLItem

Inherits:
Struct
  • Object
show all
Defined in:
lib/net/imap.rb

Overview

Net::IMAP::MailboxACLItem represents 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

Instance Attribute Details

#rightsObject

Returns the value of attribute rights

Returns:

  • (Object)

    the current value of rights



1597
1598
1599
# File 'lib/net/imap.rb', line 1597

def rights
  @rights
end

#userObject

Returns the value of attribute user

Returns:

  • (Object)

    the current value of user



1597
1598
1599
# File 'lib/net/imap.rb', line 1597

def user
  @user
end