imap_processor 1.1.1 → 1.7
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 +7 -0
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +2 -3
- data/.autotest +3 -18
- data/History.rdoc +103 -0
- data/Manifest.txt +18 -2
- data/{README.txt → README.rdoc} +35 -5
- data/Rakefile +8 -5
- data/bin/imap_archive +5 -0
- data/bin/imap_cleanse +5 -0
- data/bin/imap_flag +5 -0
- data/bin/imap_idle +6 -0
- data/bin/imap_learn +5 -0
- data/bin/imap_mkdir +5 -0
- data/lib/imap_processor.rb +304 -154
- data/lib/imap_processor/archive.rb +128 -0
- data/lib/imap_processor/cleanse.rb +67 -0
- data/lib/imap_processor/client.rb +145 -0
- data/lib/imap_processor/flag.rb +121 -0
- data/lib/imap_processor/idle.rb +74 -0
- data/lib/imap_processor/keywords.rb +9 -14
- data/lib/imap_processor/learn.rb +231 -0
- data/lib/imap_processor/mkdir.rb +25 -0
- data/lib/imap_sasl_plain.rb +1 -26
- data/lib/net/imap/date.rb +24 -0
- data/lib/net/imap/idle.rb +48 -0
- data/test/test_imap_processor.rb +185 -0
- metadata +120 -71
- metadata.gz.sig +0 -0
- data/History.txt +0 -22
metadata.gz.sig
CHANGED
Binary file
|
data/History.txt
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
=== 1.1.1 / 2009-05-19
|
2
|
-
|
3
|
-
* 1 bug fix
|
4
|
-
* Got the skip test backwards
|
5
|
-
|
6
|
-
=== 1.1 / 2009-05-18
|
7
|
-
|
8
|
-
* 1 minor enhancement
|
9
|
-
* IMAPProcessor#each_message allows messages to be omitted from the returned
|
10
|
-
uid list (skipped)
|
11
|
-
|
12
|
-
=== 1.0.1 / 2009-05-15
|
13
|
-
|
14
|
-
* 2 bug fix
|
15
|
-
* Show correct name of options file for --password help
|
16
|
-
* Fix --quiet
|
17
|
-
|
18
|
-
=== 1.0.0 / 2009-05-12
|
19
|
-
|
20
|
-
* 1 major enhancement
|
21
|
-
* Birthday!
|
22
|
-
|