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 +4 -4
- data/.semver +2 -2
- data/README.org +13 -11
- data/imap-filter.gemspec +3 -3
- data/lib/imap-filter/functionality.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: beb513fab3d6280b90fff252f417a6432eeeac75
|
4
|
+
data.tar.gz: dff94673ea14081b4ca1658d18442821d558bb0a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 36c32710334319de33761fdc6c2b24943d48105b72a6ea51b2b8e07c3581f26f8da64d38e177a78570e20c707c7504a07bb9b56112e85bbebf635c676d2ad389
|
7
|
+
data.tar.gz: b0a2d3992c894f9ef596a66eb3e254f31099f0fff14fc753f3bee62721db775d94da5c44f292cadd40fe3a30a0d1143125e56796e6b475b72f8b5773a939b03c
|
data/.semver
CHANGED
data/README.org
CHANGED
@@ -279,19 +279,21 @@
|
|
279
279
|
|
280
280
|
** Release Notes and Known Issues
|
281
281
|
*** Release Notes
|
282
|
-
| Version | Breif
|
283
|
-
|
284
|
-
| v0.0
|
285
|
-
| v0.0.
|
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-
|
291
|
-
| 2016-
|
292
|
-
|
|
293
|
-
|
|
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
|
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
|
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-
|
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 =
|
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
|
+
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-
|
11
|
+
date: 2016-11-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: semver
|