123456789_123456789_123456789_123456789_123456789_

Class: Net::IMAP::MailboxList

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

MailboxList represents the data of an untagged LIST response, for a single mailbox path. #list returns an array of MailboxList objects.

Instance Attribute Summary

Instance Attribute Details

#attrarray of Symbols (rw)

Returns the name attributes. Each name attribute is a symbol capitalized by String#capitalize, such as :Noselect (not :NoSelect). For the semantics of each attribute, see:

[ GitHub ]

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

class MailboxList < Struct.new(:attr, :delim, :name)

#delimsingle character string (rw)

Returns the hierarchy delimiter for the mailbox path.

[ GitHub ]

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

class MailboxList < Struct.new(:attr, :delim, :name)

#nameString (rw)

Returns the mailbox name.

[ GitHub ]

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

class MailboxList < Struct.new(:attr, :delim, :name)