itrp-export-monitor 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- YmVjNzQ1ZDYzMWE0MGI1MjA1ZGI0NDc3NjVlNGFjZTZjYjM3YmQxMw==
4
+ MTc0MGQ2ZjI1NzRhZWIwZWQ3Nzc2NTQzNTQyYTJhMmI3NDFkMTQyYw==
5
5
  data.tar.gz: !binary |-
6
- YmU3ZGE5NTE1ZDYzYzUyZjgyN2I0ZjY0OGFjN2QxMGJmOTZjNzU0Zg==
6
+ ODcyNjNkODMxYTE0MGJmZWU5MTI2OGY3MDU1ZTZiZWViMTUzN2QxNQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- MmQ4YmZiMDUyZTg3YTZlZDMzZWY1ODBlZjA5YjFiMWFhNTJjMDM4ZDQ0OGU5
10
- OWQ1OGUwYzc3NDUxZGQ5ZTZkOTk4YjJhNzBmOGIxZjIwZGU5ZDVlOTRhY2Zl
11
- YjIzMDNiMzM2MWVjOWViOTkwN2YxY2QxYjE1ZDY1YmI4MWJkYmQ=
9
+ NDZhNDAxMTYxMjI0MDU1MDkzNGY0Nzc5NWRmMmIxMzI1MzhhODFlNjA0Njc0
10
+ ZmI0Mzk5NTAxMzM3YWZiMTQxZWJiNjNiMDc3MDcxNmMyMmZlMWYxMmEwNmFi
11
+ ZjA4Yjg5MTQ1NzM5NTQyNTZhZDI4MGNkY2NmZjZjNmY2NDU0Zjk=
12
12
  data.tar.gz: !binary |-
13
- YWM5ZjZlYjFhZDEyZDgzMzc3MmExMTM2MDRiMjJkODc3ZWM0MTJhZmIzMTRj
14
- ZTRlMzExNTZmNDIxOTk2Y2QxNGNjMjE4OTJlZmNmN2ZkZWM0ZjMyYmFhMWIz
15
- MjhjZWEwNTFlMzYzYzliYjM2ZjgzMWU4MGFlZGUxNWRlYmFlMGY=
13
+ ZjhmOGQ3Y2FiMGQyYzllNzg4YTczOWVhMTc5ZjE2OTg4MDEyYjhiN2UxYTNm
14
+ NzdjNGRmOGFmMGFkYTI5MGY0ZDIzYjQ3YzdjNTQ2N2RmMWI3MjQ1OWIxNzIw
15
+ NGQ5NzIwZDM4NmU2MTEyN2YyMzEzNmU2OTg4YzJhNDRiNmNhMzQ=
data/Gemfile.lock CHANGED
@@ -7,7 +7,7 @@ PATH
7
7
  gem_config
8
8
  i18n
9
9
  itrp-client
10
- rubyzip
10
+ rubyzip (>= 1.1.0)
11
11
 
12
12
  GEM
13
13
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -248,6 +248,27 @@ The `exit_when_idle` option may be used to stop the Export Monitor when there ar
248
248
  export mails coming in for a couple of minutes. This may be useful in case you want to
249
249
  fire up the Export Monitor at a scheduled time using the cron-tab or Windows Task Scheduler.
250
250
 
251
+ #### Cannot connect to IMAP server?
252
+
253
+ In case the connection to the IMAP server fails, you may see the following in the log file:
254
+
255
+ ```
256
+ A connection attempt failed because the connected party did not properly respond after a period of time,
257
+ or established connection failed because connected host has failed to respond.
258
+ ```
259
+
260
+ To test the connection and get some more details on what is going wrong, use *telnet* to connect directly
261
+ to the IMAP server:
262
+
263
+ ```
264
+ $ telnet imap.gmail.com 993
265
+ Trying 74.125.136.109...
266
+ Connected to gmail-imap.l.google.com.
267
+ Escape character is '^]'.
268
+ ```
269
+
270
+ If the connection fails, you will get a different results from the one listed above.
271
+
251
272
  Other considerations
252
273
  --------------------
253
274
 
@@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
24
24
  spec.add_runtime_dependency 'gem_config'
25
25
  spec.add_runtime_dependency 'itrp-client'
26
26
  spec.add_runtime_dependency 'active_support'
27
- spec.add_runtime_dependency 'rubyzip'
27
+ spec.add_runtime_dependency 'rubyzip', '>= 1.1.0'
28
28
  spec.add_runtime_dependency 'clacks', '>= 1.0.0'
29
29
  spec.add_dependency 'i18n'
30
30
 
@@ -1,7 +1,7 @@
1
1
  module Itrp
2
2
  module Export
3
3
  module Monitor
4
- VERSION = "1.0.0"
4
+ VERSION = "1.0.1"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: itrp-export-monitor
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - ITRP
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-11-20 00:00:00.000000000 Z
11
+ date: 2013-11-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gem_config
@@ -58,14 +58,14 @@ dependencies:
58
58
  requirements:
59
59
  - - ! '>='
60
60
  - !ruby/object:Gem::Version
61
- version: '0'
61
+ version: 1.1.0
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - ! '>='
67
67
  - !ruby/object:Gem::Version
68
- version: '0'
68
+ version: 1.1.0
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: clacks
71
71
  requirement: !ruby/object:Gem::Requirement