actionmailbox-imap 0.2.3 → 0.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 94f029fa9bdad891e441d15f07aa414a6c1517e45525a2e6aa33330bdc6a9fb4
4
- data.tar.gz: bba9680a7f8ecad4112f599c1720b74fd62f0708324ecbc3e7e945b02151b55a
3
+ metadata.gz: 1a4546fa118314e4970cebeb9908ad184ea96b4ddd0f2fe016bd95f4874a3ae7
4
+ data.tar.gz: 782481e8fb2e40a4d18553351344bb3315c929bda28b15881328c55bba065dbf
5
5
  SHA512:
6
- metadata.gz: 27a5c013a2b51e4b9cd7aca19055ea8f2950c45fc8273c6cdb52c926c4c04c21824bc854b143cb23decca5726ac693871f4ac5825b62f391c147232f28c71cd3
7
- data.tar.gz: 71915e332b4b30f9107b73054a09b534c5f70f933fe7f1a8e4058d354175d95c1a4d42352dd812202b263123e76d164a00d7c4c540959d7fae0454fd80c86fff
6
+ metadata.gz: 3331cd3bd988e62ac31e9e2fe20d3ce4a08cf06f23686a905e1879fb7479361d3a8e94a6255814dcede40fe775ffed352237cf3805fa43c3134f234d409ff508
7
+ data.tar.gz: 8e40e6bf28107fabe298a7b32397e54282f57a4e35ed42fa28d7de8d7a8f4ee6f7c300256c9507277bc5a722a5c5768200bae38b342655fadc30077a6625191f
data/README.md CHANGED
@@ -8,7 +8,7 @@ A IMAP relay for ActionMailbox.
8
8
  This is a very simple gem that provides a rake task attempt to relay messsages to ActionMailbox from the [ActionMailbox::IMAP Client](https://github.com/kimmelsg/actionmailbox-imap/blob/master/CLIENT.md).
9
9
 
10
10
  If a message is successuflly relayed to ActionMailbox, then the message will be marked deleted.
11
- If a message is not successfully relayed to ActionMailbox, then the message will be marked Unread in order to be processed again later.
11
+ If a message is not successfully relayed to ActionMailbox, then the message will be marked flagged.
12
12
 
13
13
  ### Why it was created
14
14
 
@@ -1,5 +1,5 @@
1
1
  module Actionmailbox
2
2
  module Imap
3
- VERSION = "0.2.3"
3
+ VERSION = "0.2.4"
4
4
  end
5
5
  end
@@ -3,7 +3,7 @@ module Imap
3
3
  source_root File.expand_path("templates", __dir__)
4
4
 
5
5
  def copy_imap_config_file
6
- copy_file "config.yml", "config/actionmailbox_imap.yml"
6
+ copy_file "config.yml", "config/actionmailbox_imap.yaml"
7
7
  end
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: actionmailbox-imap
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ethan Knowlton
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-08-25 00:00:00.000000000 Z
11
+ date: 2019-08-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -82,7 +82,7 @@ files:
82
82
  - lib/actionmailbox/imap/railtie.rb
83
83
  - lib/actionmailbox/imap/version.rb
84
84
  - lib/generators/imap/install_generator.rb
85
- - lib/generators/imap/templates/config.yml
85
+ - lib/generators/imap/templates/config.yaml
86
86
  - lib/tasks/actionmailbox/ingress.rake
87
87
  homepage: https://github.com/kimmelsg
88
88
  licenses:
@@ -104,7 +104,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
104
104
  - !ruby/object:Gem::Version
105
105
  version: '0'
106
106
  requirements: []
107
- rubygems_version: 3.0.1
107
+ rubygems_version: 3.0.4
108
108
  signing_key:
109
109
  specification_version: 4
110
110
  summary: Relay IMAP messages to ActionMailbox