imap_processor 1.5 → 1.6

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: 7ebadbaa317cabbc2b15ca821a55739a5689c614
4
- data.tar.gz: 3fb713f7d17b9b04dd1d5f081725734fa90fad97
3
+ metadata.gz: 64ddb04b56787b6fdcd6c727755411b21e46282a
4
+ data.tar.gz: 5db3b017a08a2852bccb113c69b558f0ebc532b8
5
5
  SHA512:
6
- metadata.gz: 027324815a2b2a44928ba687d74c23f06a66eef0470cdbfab5f5fe604b84a0b2b7b12ffd2cbc40202b4dd76a55083b8b42eb2806d0bb886980638015c63ee235
7
- data.tar.gz: ee70746ac80bcac8339abcfb7281bdb6464a6eb6d384aeabff4873e96f460f41b18c9ef1475e371613c016edf8bb068f47ff52bb817405270c31e46527c4a995
6
+ metadata.gz: 3499a98406aa2074a826972c2584cd652b6761ece82daa183fca355ceb78e0c04dcf3628fdf716dcf9fd96ac569ba7b17606524ae0b3fb271158dd7a226cbed7
7
+ data.tar.gz: c623f510ff4b5644d4ae19624c355542602c5c0fee3d00397e5496936729e332ed97f4adafe4f23457f6623caed4edec60c1b142d5fe1cf4961416a417df762e
Binary file
data.tar.gz.sig CHANGED
Binary file
@@ -1,3 +1,9 @@
1
+ === 1.6 / 2014-10-17
2
+
3
+ * 1 minor enhancement:
4
+
5
+ * Add XOAUTH2 authentication type. (mattbeedle)
6
+
1
7
  === 1.5 / 2014-08-06
2
8
 
3
9
  * 3 major enhancements:
@@ -1,6 +1,7 @@
1
1
  = imap_processor
2
2
 
3
- * http://seattlerb.rubyforge.org/imap_processor
3
+ home :: https://github.com/seattlerb/imap_processor
4
+ rdoc :: http://docs.seattlerb.org/imap_processor
4
5
 
5
6
  == DESCRIPTION:
6
7
 
@@ -8,7 +9,6 @@ IMAPProcessor is a client for processing messages on an IMAP server. It
8
9
  provides some basic mechanisms for connecting to an IMAP server, determining
9
10
  capabilities and handling messages.
10
11
 
11
-
12
12
  IMAPProcessor ships with several executables which can query and
13
13
  manipulate IMAP mailboxes in several different ways:
14
14
 
data/Rakefile CHANGED
@@ -7,8 +7,8 @@ Hoe.plugin :seattlerb
7
7
  Hoe.plugin :rdoc
8
8
 
9
9
  Hoe.spec 'imap_processor' do
10
- developer 'Eric Hodel', 'drbrain@segment7.net'
11
10
  developer 'Ryan Davis', 'ryand-ruby@zenspider.com'
11
+ developer 'Eric Hodel', 'drbrain@segment7.net'
12
12
 
13
13
  license "MIT"
14
14
  end
@@ -26,7 +26,7 @@ class IMAPProcessor
26
26
  ##
27
27
  # The version of IMAPProcessor you are using
28
28
 
29
- VERSION = "1.5"
29
+ VERSION = "1.6"
30
30
 
31
31
  ##
32
32
  # Base IMAPProcessor error class
@@ -389,7 +389,7 @@ Example ~/.#{@@opts_file_name}:
389
389
  # Net::IMAP supports using AUTHENTICATE with LOGIN, PLAIN, and
390
390
  # CRAM-MD5... if the server reports a different AUTH method, then we
391
391
  # should fall back to using LOGIN
392
- if %w( LOGIN PLAIN CRAM-MD5 ).include?( auth.upcase )
392
+ if %w( LOGIN PLAIN CRAM-MD5 XOAUTH2 ).include?( auth.upcase )
393
393
  auth = auth.upcase
394
394
  log "Trying #{auth} authentication"
395
395
  res = imap.authenticate auth, username, password
metadata CHANGED
@@ -1,19 +1,19 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: imap_processor
3
3
  version: !ruby/object:Gem::Version
4
- version: '1.5'
4
+ version: '1.6'
5
5
  platform: ruby
6
6
  authors:
7
- - Eric Hodel
8
7
  - Ryan Davis
8
+ - Eric Hodel
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain:
12
12
  - |
13
13
  -----BEGIN CERTIFICATE-----
14
- MIIDPjCCAiagAwIBAgIBATANBgkqhkiG9w0BAQUFADBFMRMwEQYDVQQDDApyeWFu
14
+ MIIDPjCCAiagAwIBAgIBAjANBgkqhkiG9w0BAQUFADBFMRMwEQYDVQQDDApyeWFu
15
15
  ZC1ydWJ5MRkwFwYKCZImiZPyLGQBGRYJemVuc3BpZGVyMRMwEQYKCZImiZPyLGQB
16
- GRYDY29tMB4XDTEzMDkxNjIzMDQxMloXDTE0MDkxNjIzMDQxMlowRTETMBEGA1UE
16
+ GRYDY29tMB4XDTE0MDkxNzIzMDcwN1oXDTE1MDkxNzIzMDcwN1owRTETMBEGA1UE
17
17
  AwwKcnlhbmQtcnVieTEZMBcGCgmSJomT8ixkARkWCXplbnNwaWRlcjETMBEGCgmS
18
18
  JomT8ixkARkWA2NvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALda
19
19
  b9DCgK+627gPJkB6XfjZ1itoOQvpqH1EXScSaba9/S2VF22VYQbXU1xQXL/WzCkx
@@ -23,14 +23,14 @@ cert_chain:
23
23
  qhtV7HJxNKuPj/JFH0D2cswvzznE/a5FOYO68g+YCuFi5L8wZuuM8zzdwjrWHqSV
24
24
  gBEfoTEGr7Zii72cx+sCAwEAAaM5MDcwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAw
25
25
  HQYDVR0OBBYEFEfFe9md/r/tj/Wmwpy+MI8d9k/hMA0GCSqGSIb3DQEBBQUAA4IB
26
- AQCFZ7JTzoy1gcG4d8A6dmOJy7ygtO5MFpRIz8HuKCF5566nOvpy7aHhDDzFmQuu
27
- FX3zDU6ghx5cQIueDhf2SGOncyBmmJRRYawm3wI0o1MeN6LZJ/3cRaOTjSFy6+S6
28
- zqDmHBp8fVA2TGJtO0BLNkbGVrBJjh0UPmSoGzWlRhEVnYC33TpDAbNA+u39UrQI
29
- ynwhNN7YbnmSR7+JU2cUjBFv2iPBO+TGuWC+9L2zn3NHjuc6tnmSYipA9y8Hv+As
30
- Y4evBVezr3SjXz08vPqRO5YRdO3zfeMT8gBjRqZjWJGMZ2lD4XNfrs7eky74CyZw
31
- xx3n58i0lQkBE1EpKE0lFu/y
26
+ AQAFoDJRokCQdxFfOrmsKX41KOFlU/zjrbDVM9hgB/Ur999M6OXGSi8FitXNtMwY
27
+ FVjsiAPeU7HaWVVcZkj6IhINelTkXsxgGz/qCzjHy3iUMuZWw36cS0fiWJ5rvH+e
28
+ hD7uXxJSFuyf1riDGI1aeWbQ74WMwvNstOxLUMiV5a1fzBhlxPqb537ubDjq/M/h
29
+ zPUFPVYeL5KjDHLCqI2FwIk2sEMOQgjpXHzl+3NlD2LUgUhHDMevmgVua0e2GT1B
30
+ xJcC6UN6NHMOVMyAXsr2HR0gRRx4ofN1LoP2KhXzSr8UMvQYlwPmE0N5GQv1b5AO
31
+ VpzF30vNaJK6ZT7xlIsIlwmH
32
32
  -----END CERTIFICATE-----
33
- date: 2014-08-07 00:00:00.000000000 Z
33
+ date: 2014-10-17 00:00:00.000000000 Z
34
34
  dependencies:
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: minitest
@@ -66,20 +66,19 @@ dependencies:
66
66
  requirements:
67
67
  - - ~>
68
68
  - !ruby/object:Gem::Version
69
- version: '3.12'
69
+ version: '3.13'
70
70
  type: :development
71
71
  prerelease: false
72
72
  version_requirements: !ruby/object:Gem::Requirement
73
73
  requirements:
74
74
  - - ~>
75
75
  - !ruby/object:Gem::Version
76
- version: '3.12'
76
+ version: '3.13'
77
77
  description: |-
78
78
  IMAPProcessor is a client for processing messages on an IMAP server. It
79
79
  provides some basic mechanisms for connecting to an IMAP server, determining
80
80
  capabilities and handling messages.
81
81
 
82
-
83
82
  IMAPProcessor ships with several executables which can query and
84
83
  manipulate IMAP mailboxes in several different ways:
85
84
 
@@ -91,8 +90,8 @@ description: |-
91
90
  imap_learn :: Flags messages based on what you've flagged before.
92
91
  imap_mkdir :: Ensures that certain mailboxes exist.
93
92
  email:
94
- - drbrain@segment7.net
95
93
  - ryand-ruby@zenspider.com
94
+ - drbrain@segment7.net
96
95
  executables:
97
96
  - imap_archive
98
97
  - imap_cleanse
@@ -133,7 +132,7 @@ files:
133
132
  - lib/net/imap/date.rb
134
133
  - lib/net/imap/idle.rb
135
134
  - test/test_imap_processor.rb
136
- homepage: http://seattlerb.rubyforge.org/imap_processor
135
+ homepage: https://github.com/seattlerb/imap_processor
137
136
  licenses:
138
137
  - MIT
139
138
  metadata: {}
@@ -155,7 +154,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
155
154
  version: '0'
156
155
  requirements: []
157
156
  rubyforge_project:
158
- rubygems_version: 2.2.1
157
+ rubygems_version: 2.4.1
159
158
  signing_key:
160
159
  specification_version: 4
161
160
  summary: IMAPProcessor is a client for processing messages on an IMAP server
metadata.gz.sig CHANGED
@@ -1 +1 @@
1
- m��EpjJ��F�~�ĺ4Ҋ5��7M8O�Įhᱷ,�r%UUv���Y걍�5��C��{�O�V��`#$k�-��N�.c�Ӗ�o�@^S�Opd�������c����^[��68��Z=�0ݜV���6z�|/hyOW��fyB���0��Q_Gwk e��Z�I��Xu}��6{d�'�,�9���8��b��x ���� �"aWa�Jn6(8��6��6���6���x^���><k��&p�eoX��1)
1
+ `�M)84���/K=��7�r�N�}�>���tCi�p878/[�=�Ň���ܽ@���Z �*?Fc��U���j����N��]�Ҽ���L˛�����w��������\�aeg5��{��̒��t��x��'e�\F)(v��-h��3��������a�#h���ֈC��D����<j)c�� W����bX8-/� ��UJ� z?�G���aC"7C7�pͳYU~�0%�Q+����վV�ݲ�.!�hR