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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7ff8bf4fdd37e57e1fd9cef8abc4485813eeb48752768a3f463df3afac3dc4d6
4
- data.tar.gz: 831899f082fff0997acd46d1e341004ac43cf53a2883358e67ab095b88a26bf7
3
+ metadata.gz: e2b34662687d096c2dc7e4522910a009d12aeb4eb6f57c66c9f352ca3e1d8051
4
+ data.tar.gz: 993b38940bf5c037cdf56a088b0dde8e380ec6bb081f1268eeddad72f6d9ea76
5
5
  SHA512:
6
- metadata.gz: d826d98de67625935c73a0ae01f2896717428dc3357ba899f5edee47a8b458064c932eea98a7331b0c6678f233329ae71001d7038cfaf1dd22aa5ea5f19d723e
7
- data.tar.gz: 9570a8070e6ab390c65dfb1a395a69f5b26aa501a777acb8e1cd58956adddd76b0c6e6bdd828b26f29c375ff671adcb31a91fdd85839be363d99179bea92bf9f
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 exists, it will be created. " \
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
- Logger.logger.info("Metadata file '#{imap.pathname}' is invalid") if !imap_valid
106
- Logger.logger.info("Mailbox '#{mbox.pathname}' is invalid") if !mbox_valid
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
 
@@ -6,7 +6,7 @@ module Imap::Backup
6
6
  # @private
7
7
  MINOR = 5
8
8
  # @private
9
- REVISION = 1
9
+ REVISION = 2
10
10
  # @private
11
11
  PRE = nil
12
12
  # The application version
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.1
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-18 00:00:00.000000000 Z
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.4.10
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