Class: Imap::Backup::Client::Default

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/imap/backup/client/default.rb

Direct Known Subclasses

AppleMail

Instance Method Summary collapse

Constructor Details

#initialize(server, account, options) ⇒ Default

Returns a new instance of Default.



18
19
20
21
22
23
# File 'lib/imap/backup/client/default.rb', line 18

def initialize(server, , options)
  @account = 
  @options = options
  @server = server
  @state = nil
end

Instance Method Details

#disconnectObject

Track mailbox selection during delegation to Net::IMAP instance



51
52
53
54
# File 'lib/imap/backup/client/default.rb', line 51

def disconnect
  imap.disconnect
  self.state = nil
end

#examine(mailbox) ⇒ Object



56
57
58
59
60
61
62
# File 'lib/imap/backup/client/default.rb', line 56

def examine(mailbox)
  return if state == [:examine, mailbox]

  result = imap.examine(mailbox)
  self.state = [:examine, mailbox]
  result
end

#listObject



25
26
27
28
29
30
31
32
# File 'lib/imap/backup/client/default.rb', line 25

def list
  root = provider_root
  mailbox_lists = imap.list(root, "*")

  return [] if mailbox_lists.nil?

  mailbox_lists.map { |ml| extract_name(ml) }
end

#loginObject



34
35
36
37
38
# File 'lib/imap/backup/client/default.rb', line 34

def 
  Logger.logger.debug "Logging in: #{.username}/#{masked_password}"
  imap.(.username, .password)
  Logger.logger.debug "Login complete"
end

#reconnectObject



40
41
42
43
# File 'lib/imap/backup/client/default.rb', line 40

def reconnect
  disconnect
  
end

#select(mailbox) ⇒ Object



64
65
66
67
68
69
# File 'lib/imap/backup/client/default.rb', line 64

def select(mailbox)
  return if state == [:select, mailbox]

  imap.select(mailbox)
  self.state = [:select, mailbox]
end

#usernameObject



45
46
47
# File 'lib/imap/backup/client/default.rb', line 45

def username
  .username
end