Class: Imap::Backup::Client::Default
- Inherits:
-
Object
- Object
- Imap::Backup::Client::Default
- Extended by:
- Forwardable
- Defined in:
- lib/imap/backup/client/default.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#account ⇒ Object
readonly
Returns the value of attribute account.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
-
#server ⇒ Object
readonly
Returns the value of attribute server.
-
#state ⇒ Object
Returns the value of attribute state.
Instance Method Summary collapse
-
#disconnect ⇒ Object
Track mailbox selection during delegation to Net::IMAP instance.
- #examine(mailbox) ⇒ Object
-
#initialize(server, account, options) ⇒ Default
constructor
A new instance of Default.
- #list ⇒ Object
- #login ⇒ Object
- #reconnect ⇒ Object
- #select(mailbox) ⇒ Object
- #username ⇒ Object
Constructor Details
#initialize(server, account, options) ⇒ Default
Returns a new instance of Default.
19 20 21 22 23 24 |
# File 'lib/imap/backup/client/default.rb', line 19 def initialize(server, account, ) @account = account = @server = server @state = nil end |
Instance Attribute Details
#account ⇒ Object (readonly)
Returns the value of attribute account.
14 15 16 |
# File 'lib/imap/backup/client/default.rb', line 14 def account @account end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
15 16 17 |
# File 'lib/imap/backup/client/default.rb', line 15 def end |
#server ⇒ Object (readonly)
Returns the value of attribute server.
16 17 18 |
# File 'lib/imap/backup/client/default.rb', line 16 def server @server end |
#state ⇒ Object
Returns the value of attribute state.
17 18 19 |
# File 'lib/imap/backup/client/default.rb', line 17 def state @state end |
Instance Method Details
#disconnect ⇒ Object
Track mailbox selection during delegation to Net::IMAP instance
52 53 54 55 |
# File 'lib/imap/backup/client/default.rb', line 52 def disconnect imap.disconnect self.state = nil end |
#examine(mailbox) ⇒ Object
57 58 59 60 61 62 63 |
# File 'lib/imap/backup/client/default.rb', line 57 def examine(mailbox) return if state == [:examine, mailbox] result = imap.examine(mailbox) self.state = [:examine, mailbox] result end |
#list ⇒ Object
26 27 28 29 30 31 32 33 |
# File 'lib/imap/backup/client/default.rb', line 26 def list root = provider_root mailbox_lists = imap.list(root, "*") return [] if mailbox_lists.nil? mailbox_lists.map { |ml| extract_name(ml) } end |
#login ⇒ Object
35 36 37 38 39 |
# File 'lib/imap/backup/client/default.rb', line 35 def login Logger.logger.debug "Logging in: #{account.username}/#{masked_password}" imap.login(account.username, account.password) Logger.logger.debug "Login complete" end |
#reconnect ⇒ Object
41 42 43 44 |
# File 'lib/imap/backup/client/default.rb', line 41 def reconnect disconnect login end |
#select(mailbox) ⇒ Object
65 66 67 68 69 70 |
# File 'lib/imap/backup/client/default.rb', line 65 def select(mailbox) return if state == [:select, mailbox] imap.select(mailbox) self.state = [:select, mailbox] end |
#username ⇒ Object
46 47 48 |
# File 'lib/imap/backup/client/default.rb', line 46 def username account.username end |