123456789_123456789_123456789_123456789_123456789_

Class: Net::IMAP::MailboxACLItem

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, Struct
Instance Chain:
self, Struct
Inherits: Struct
  • Object
Defined in: lib/net/imap.rb

Overview

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

  • #mailbox rw

    MailboxACLItem represents the response from GETACL.

  • #rights rw

    MailboxACLItem represents the response from GETACL.

  • #user rw

    MailboxACLItem represents the response from GETACL.

Instance Attribute Details

#mailbox (rw)

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.

[ GitHub ]

  
# File 'lib/net/imap.rb', line 1875

MailboxACLItem = Struct.new(:user, :rights, :mailbox)

#rights (rw)

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.

[ GitHub ]

  
# File 'lib/net/imap.rb', line 1875

MailboxACLItem = Struct.new(:user, :rights, :mailbox)

#user (rw)

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.

[ GitHub ]

  
# File 'lib/net/imap.rb', line 1875

MailboxACLItem = Struct.new(:user, :rights, :mailbox)