class IMAPProcessor::Connection
A Connection
Struct that has imap
and capability
accessors
Public Instance Methods
idle?()
click to toggle source
Does this connection support the IDLE
extension?
# File lib/imap_processor.rb, line 47 def idle? capability.include? 'IDLE' end
uidplus?()
click to toggle source
Does this connection support the UIDPLUS extension?
# File lib/imap_processor.rb, line 54 def uidplus? capability.include? 'UIDPLUS' end