imap-filter 0.0.4 → 0.1.0

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
  SHA1:
3
- metadata.gz: a240cdefbc038f384351e9905758f500052df1d1
4
- data.tar.gz: 768b6df466f6af225b9b82a31e6c5c8cbdff2694
3
+ metadata.gz: beb513fab3d6280b90fff252f417a6432eeeac75
4
+ data.tar.gz: dff94673ea14081b4ca1658d18442821d558bb0a
5
5
  SHA512:
6
- metadata.gz: a08b499e9f1b7a400bb12b5966694b74f4f79205215e237e51add5defdf8dcb5224eb7b0ca67d763fe45109ecbbbde509d7e9029302f6b94c7005a4295ebe5b3
7
- data.tar.gz: ffcba35a649f15287f9163a261be2eaca6f825b63231639cc00806d679be537f83e74ec3a83f931cef7d431cd60bfcf76dc3ef57d551665cd2d30babcdd6c4ce
6
+ metadata.gz: 36c32710334319de33761fdc6c2b24943d48105b72a6ea51b2b8e07c3581f26f8da64d38e177a78570e20c707c7504a07bb9b56112e85bbebf635c676d2ad389
7
+ data.tar.gz: b0a2d3992c894f9ef596a66eb3e254f31099f0fff14fc753f3bee62721db775d94da5c44f292cadd40fe3a30a0d1143125e56796e6b475b72f8b5773a939b03c
data/.semver CHANGED
@@ -1,5 +1,5 @@
1
1
  ---
2
2
  :major: 0
3
- :minor: 0
4
- :patch: 4
3
+ :minor: 1
4
+ :patch: 0
5
5
  :special: ''
data/README.org CHANGED
@@ -279,19 +279,21 @@
279
279
 
280
280
  ** Release Notes and Known Issues
281
281
  *** Release Notes
282
- | Version | Breif | Description |
283
- |---------+------------------------+--------------------------------------------------------------------------------------------------------------------------------|
284
- | v0.0.3 | Fixed bug with timeout | On some lengthy remove copy/move operations, the source account can timeout. We do a simple NOOP to keep the connection alive. |
285
- | v0.0.2 | Initial Release | |
282
+ | Version | Breif | Description |
283
+ |---------+-------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
284
+ | v0.1.0 | election day bug fixed | This was an issue with moves not deleting the sources, and had to do with state information not existing in the duplicate delegator object. This snafu has been dealt with. No more duplicate delegators |
285
+ | v0.0.4 | "Too many errors" fixed | The "duplicate mailbox" error was being counted by some providers as being "too much" so now we check first before attempting to create a new mailbox. |
286
+ | v0.0.3 | Fixed bug with timeout | On some lengthy remove copy/move operations, the source account can timeout. We do a simple NOOP to keep the connection alive. |
287
+ | v0.0.2 | Initial Release | |
286
288
 
287
289
  *** Known Issues
288
- | Date | Description |
289
- |------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
290
- | 2016-09-25 | Remote copy / moves of HTML-based email does not work cleanly. |
291
- | 2016-10-03 | Getting "Too many errors" ByeResponseError -- most likely from the errors of duplicate mailboxes (which is OK but some servers hate that). So I will have to check for the existence of the mailbox first before trying to create it. |
292
- | | Timeout errors still persist in some cases. |
293
- | | Need to capture all errors and provide human-readable responses, unless a certail verbosity level has been set. |
294
- | | |
290
+ | Date | Description |
291
+ |------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
292
+ | 2016-11-08 | US election day bug :p -- messages on move are not being moved, only copied with v0.0.4. Refactoring is broken. Use 0.0.3 for now. Fix is coming soon. |
293
+ | 2016-11-05 | Aside from being Guy Fawkes Day, the fix to "Too Many Errors" involved caching the list of mail boxes. If something else creates a mailbox while this is running, there is a potential race condition, but the name collision, if any, will only result in a "duplicate mailbox" error. |
294
+ | 2016-09-25 | Remote copy / moves of HTML-based email does not work cleanly. |
295
+ | 2016-10-03 | Timeout errors still persist in some cases. |
296
+ | | Need to capture all errors and provide human-readable responses, unless a certail verbosity level has been set. |
295
297
 
296
298
  ** Contributing to imap-filter
297
299
 
data/imap-filter.gemspec CHANGED
@@ -2,16 +2,16 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: imap-filter 0.0.4 ruby lib
5
+ # stub: imap-filter 0.1.0 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "imap-filter".freeze
9
- s.version = "0.0.4"
9
+ s.version = "0.1.0"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib".freeze]
13
13
  s.authors = ["Fred Mitchell".freeze]
14
- s.date = "2016-11-05"
14
+ s.date = "2016-11-08"
15
15
  s.description = "\n imap-filter is a Ruby implementation of an IMAP filtering application.\n it can handle multiple IMAP accounts, and create IMAP folders automatically\n where none exists.\n\n The imap-filter DSL makes it easy to filter. You can also do \"dry-runs\"\n to make sure what happens is what is expected.".freeze
16
16
  s.email = "fred.mitchell@gmx.de".freeze
17
17
  s.executables = ["imap-filter".freeze]
@@ -75,7 +75,7 @@ module ImapFilter
75
75
  a, b = ambox.split ':'
76
76
  a, b = [nil, a] if b.nil?
77
77
  a = nil if a == ''
78
- acc = FunctAccount.new( a.nil? ? default_account : _accounts[a.to_sym] )
78
+ acc = Functionality::_functional_accounts[ a.nil? ? default_account : a.to_sym ]
79
79
  mbox = b
80
80
  [acc, mbox]
81
81
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: imap-filter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fred Mitchell
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-11-05 00:00:00.000000000 Z
11
+ date: 2016-11-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: semver