method
mailbox_list
mailbox_list()
private
Hide source
# File lib/net/imap.rb, line 2826 def mailbox_list attr = flag_list match(T_SPACE) token = match(T_QUOTED, T_NIL) if token.symbol == T_NIL delim = nil else delim = token.value end match(T_SPACE) name = astring return MailboxList.new(attr, delim, name) end