net-imap 0.3.3 → 0.3.4
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.
Potentially problematic release.
This version of net-imap might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/lib/net/imap/authenticators.rb +30 -10
- data/lib/net/imap/flags.rb +1 -0
- data/lib/net/imap/sasl/stringprep.rb +6 -2
- data/lib/net/imap.rb +979 -257
- data/rakelib/rfcs.rake +3 -1
- metadata +2 -2
data/rakelib/rfcs.rake
CHANGED
@@ -43,7 +43,8 @@ RFCS = {
|
|
43
43
|
2046 => "[MIME-IMT]: MIME Part Two: Media Types",
|
44
44
|
2047 => "[MIME-HDRS]: MIME Part Three: Header Extensions for Non-ASCII Text",
|
45
45
|
2183 => "[DISPOSITION]: The Content-Disposition Header",
|
46
|
-
2231 => "MIME Parameter Value and Encoded Word Extensions:
|
46
|
+
2231 => "MIME Parameter Value and Encoded Word Extensions: " \
|
47
|
+
"Character Sets, Languages, and Continuations",
|
47
48
|
2557 => "[LOCATION]: MIME Encapsulation of Aggregate Documents",
|
48
49
|
2978 => "[CHARSET]: IANA Charset Registration Procedures, BCP 19",
|
49
50
|
3282 => "[LANGUAGE-TAGS]: Content Language Headers",
|
@@ -146,6 +147,7 @@ RFCS = {
|
|
146
147
|
9208 => "IMAP QUOTA, QUOTA=, QUOTASET",
|
147
148
|
|
148
149
|
# etc...
|
150
|
+
3629 => "UTF8",
|
149
151
|
6857 => "Post-Delivery Message Downgrading for I18n Email Messages",
|
150
152
|
|
151
153
|
}.freeze
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: net-imap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shugo Maeda
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date: 2022-12-
|
12
|
+
date: 2022-12-23 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: net-protocol
|