Class: Imap::Backup::CLI::Utils
- Inherits:
-
Thor
- Object
- Thor
- Imap::Backup::CLI::Utils
show all
- Includes:
- Helpers, Thor::Actions
- Defined in:
- lib/imap/backup/cli/utils.rb
Instance Method Summary
collapse
Methods included from Helpers
#account, #load_config, #options, #requested_accounts
Instance Method Details
#export_to_thunderbird(email) ⇒ Object
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
# File 'lib/imap/backup/cli/utils.rb', line 62
def export_to_thunderbird(email)
Imap::Backup::Logger.setup_logging options
force = options.key?(:force) ? options[:force] : false
profile_name = options[:profile]
config = load_config(**options)
account = account(config, email)
profile = thunderbird_profile(profile_name)
if !profile
raise "Thunderbird profile '#{profile_name}' not found" if profile_name
raise "Default Thunderbird profile not found"
end
serialized_folders = Account::SerializedFolders.new(account: account)
raise "No serialized folders were found for account '#{email}'" if serialized_folders.none?
serialized_folders.each do |serializer, _folder|
Thunderbird::MailboxExporter.new(
email, serializer, profile, force: force
).run
end
end
|
#ignore_history(email) ⇒ Object
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# File 'lib/imap/backup/cli/utils.rb', line 24
def ignore_history(email)
Logger.setup_logging options
config = load_config(**options)
account = account(config, email)
backup_folders = Account::BackupFolders.new(
client: account.client, account: account
)
backup_folders.each do |folder|
next if !folder.exist?
serializer = Serializer.new(account.local_path, folder.name)
do_ignore_folder_history(folder, serializer)
end
end
|