imap-backup 14.5.1 → 14.5.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/imap/backup/cli/single.rb +5 -2
- data/lib/imap/backup/serializer.rb +4 -2
- data/lib/imap/backup/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e2b34662687d096c2dc7e4522910a009d12aeb4eb6f57c66c9f352ca3e1d8051
|
4
|
+
data.tar.gz: 993b38940bf5c037cdf56a088b0dde8e380ec6bb081f1268eeddad72f6d9ea76
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3cc751ae2e157ea6e1e6f59cff363c21536219fd732962f2a5d5b97e3c8373a9bf698868023cf212590d75b784f74b8a36a5c5c87d2e6005f71314aa1511be00
|
7
|
+
data.tar.gz: 0ed900bd4e5ae9b01c3d10cefeb35da2d4185788fd6aded23b1f957dfdfae476c1a6dabb2804a61a889b91359f03e74a208eb6e3c411af255f61aec7a18435ad
|
@@ -104,9 +104,12 @@ module Imap::Backup
|
|
104
104
|
"path",
|
105
105
|
type: "string",
|
106
106
|
desc: "the path of the directory where backups are to be saved. " \
|
107
|
-
"If the directory does not
|
107
|
+
"If the directory does not exist, it will be created. " \
|
108
108
|
"If not set, this is set to a diretory under the current path " \
|
109
|
-
"which is derived from the username, by replacing '@' with '_'."
|
109
|
+
"which is derived from the username, by replacing '@' with '_'." \
|
110
|
+
"If this path parameter is not indicated, " \
|
111
|
+
"the default is the current directory plus the email " \
|
112
|
+
"with '@' replaced by '_'.",
|
110
113
|
aliases: ["-P"]
|
111
114
|
)
|
112
115
|
method_option(
|
@@ -102,8 +102,10 @@ module Imap::Backup
|
|
102
102
|
@validated = true
|
103
103
|
return true
|
104
104
|
end
|
105
|
-
|
106
|
-
Logger.logger.info("
|
105
|
+
warn_imap = !imap_valid && imap.exist?
|
106
|
+
Logger.logger.info("Metadata file '#{imap.pathname}' is invalid") if warn_imap
|
107
|
+
warn_mbox = !mbox_valid && mbox.exist?
|
108
|
+
Logger.logger.info("Mailbox '#{mbox.pathname}' is invalid") if warn_mbox
|
107
109
|
|
108
110
|
delete
|
109
111
|
|
data/lib/imap/backup/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: imap-backup
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 14.5.
|
4
|
+
version: 14.5.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joe Yates
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-01-
|
11
|
+
date: 2024-01-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: highline
|
@@ -233,7 +233,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
233
233
|
- !ruby/object:Gem::Version
|
234
234
|
version: '0'
|
235
235
|
requirements: []
|
236
|
-
rubygems_version: 3.
|
236
|
+
rubygems_version: 3.5.3
|
237
237
|
signing_key:
|
238
238
|
specification_version: 4
|
239
239
|
summary: Backup GMail (or other IMAP) accounts to disk
|