imap_processor 1.3 → 1.5
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 +0 -0
- data/.gemtest +0 -0
- data/History.rdoc +83 -0
- data/Manifest.txt +11 -2
- data/{README.txt → README.rdoc} +13 -6
- data/Rakefile +6 -3
- data/bin/imap_cleanse +5 -0
- data/bin/imap_flag +5 -0
- data/bin/imap_learn +5 -0
- data/bin/imap_mkdir +5 -0
- data/lib/imap_processor.rb +206 -150
- data/lib/imap_processor/archive.rb +58 -13
- 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/learn.rb +231 -0
- data/lib/imap_processor/mkdir.rb +25 -0
- data/test/test_imap_processor.rb +37 -0
- metadata +121 -72
- metadata.gz.sig +0 -0
- data/History.txt +0 -43
metadata.gz.sig
CHANGED
Binary file
|
data/History.txt
DELETED
@@ -1,43 +0,0 @@
|
|
1
|
-
=== 1.3 / 2009-08-04
|
2
|
-
|
3
|
-
* 1 major enhancement
|
4
|
-
* IMAP IDLE support now matches ruby trunk's support. See Net::IMAP#idle
|
5
|
-
and Net::IMAP#idle_done
|
6
|
-
|
7
|
-
=== 1.2 / 2009-06-02
|
8
|
-
|
9
|
-
* 2 major enhancements
|
10
|
-
* imap_archive which archives old mail to dated mailboxes
|
11
|
-
* imap_idle which lists messages that were added or expunged from a mailbox
|
12
|
-
|
13
|
-
* 4 minor enhancements
|
14
|
-
* Added IMAPProcessor#create_mailbox
|
15
|
-
* Added IMAPProcessor#delete_messages
|
16
|
-
* Added IMAPProcessor#move_messages
|
17
|
-
* Disabled verification of SSL certs for 1.9
|
18
|
-
|
19
|
-
* 1 bug fix
|
20
|
-
* Fixed options file names, they should be Symbol keys
|
21
|
-
|
22
|
-
=== 1.1.1 / 2009-05-19
|
23
|
-
|
24
|
-
* 1 bug fix
|
25
|
-
* Got the skip test backwards
|
26
|
-
|
27
|
-
=== 1.1 / 2009-05-18
|
28
|
-
|
29
|
-
* 1 minor enhancement
|
30
|
-
* IMAPProcessor#each_message allows messages to be omitted from the returned
|
31
|
-
uid list (skipped)
|
32
|
-
|
33
|
-
=== 1.0.1 / 2009-05-15
|
34
|
-
|
35
|
-
* 2 bug fix
|
36
|
-
* Show correct name of options file for --password help
|
37
|
-
* Fix --quiet
|
38
|
-
|
39
|
-
=== 1.0.0 / 2009-05-12
|
40
|
-
|
41
|
-
* 1 major enhancement
|
42
|
-
* Birthday!
|
43
|
-
|