Class: Imap::Backup::Thunderbird::MailboxExporter

Inherits:
Object
  • Object
show all
Defined in:
lib/imap/backup/thunderbird/mailbox_exporter.rb

Instance Method Summary collapse

Constructor Details

#initialize(email, serializer, profile, force: false) ⇒ MailboxExporter

Returns a new instance of MailboxExporter.



11
12
13
14
15
16
# File 'lib/imap/backup/thunderbird/mailbox_exporter.rb', line 11

def initialize(email, serializer, profile, force: false)
  @email = email
  @serializer = serializer
  @profile = profile
  @force = force
end

Instance Method Details

#runObject



18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# File 'lib/imap/backup/thunderbird/mailbox_exporter.rb', line 18

def run
  if !profile_set_up
    error "The Thunderbird profile '#{profile.title}' " \
          "has not been set up. " \
          "Please set it up before trying to export"
    return false
  end

  local_folder_ok = local_folder.set_up
  if !local_folder_ok
    error "Failed to set up local folder"
    return false
  end

  skip_for_msf = check_msf
  return false if skip_for_msf

  skip_for_local_folder = check_local_folder
  return false if skip_for_local_folder

  info "Exporting account '#{email}' to folder '#{local_folder.full_path}'"
  copy_messages

  true
end