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/response_data.rb

Overview

MailboxACLItem represents the data of an untagged ACL response.

#getacl returns an array of MailboxACLItem objects.

Required capability

Requires ACL [RFC4314] capability.

Instance Attribute Summary

Instance Attribute Details

#mailboxString (rw)

The mailbox to which the indicated #user has the specified #rights.

[ GitHub ]

  
# File 'lib/net/imap/response_data.rb', line 535

class MailboxACLItem < Struct.new(:user, :rights, :mailbox)

#rightsString (rw)

The access rights the indicated #user has to the #mailbox.

[ GitHub ]

  
# File 'lib/net/imap/response_data.rb', line 535

class MailboxACLItem < Struct.new(:user, :rights, :mailbox)

#userString (rw)

Login name that has certain #rights to the #mailbox that was specified with the getacl command.

[ GitHub ]

  
# File 'lib/net/imap/response_data.rb', line 535

class MailboxACLItem < Struct.new(:user, :rights, :mailbox)