sa-tmail 1.2.5.1

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.
Files changed (201) hide show
  1. data/CHANGES +74 -0
  2. data/LICENSE +21 -0
  3. data/NOTES +7 -0
  4. data/README +179 -0
  5. data/Rakefile +2 -0
  6. data/ext/Makefile +20 -0
  7. data/ext/tmailscanner/tmail/MANIFEST +4 -0
  8. data/ext/tmailscanner/tmail/depend +1 -0
  9. data/ext/tmailscanner/tmail/extconf.rb +34 -0
  10. data/ext/tmailscanner/tmail/tmailscanner.c +614 -0
  11. data/lib/tmail.rb +6 -0
  12. data/lib/tmail/Makefile +18 -0
  13. data/lib/tmail/address.rb +392 -0
  14. data/lib/tmail/attachments.rb +65 -0
  15. data/lib/tmail/base64.rb +46 -0
  16. data/lib/tmail/compat.rb +41 -0
  17. data/lib/tmail/config.rb +67 -0
  18. data/lib/tmail/core_extensions.rb +63 -0
  19. data/lib/tmail/encode.rb +590 -0
  20. data/lib/tmail/header.rb +962 -0
  21. data/lib/tmail/index.rb +9 -0
  22. data/lib/tmail/interface.rb +1162 -0
  23. data/lib/tmail/loader.rb +3 -0
  24. data/lib/tmail/mail.rb +578 -0
  25. data/lib/tmail/mailbox.rb +496 -0
  26. data/lib/tmail/main.rb +6 -0
  27. data/lib/tmail/mbox.rb +3 -0
  28. data/lib/tmail/net.rb +250 -0
  29. data/lib/tmail/obsolete.rb +132 -0
  30. data/lib/tmail/parser.rb +1060 -0
  31. data/lib/tmail/parser.y +416 -0
  32. data/lib/tmail/port.rb +379 -0
  33. data/lib/tmail/quoting.rb +155 -0
  34. data/lib/tmail/require_arch.rb +58 -0
  35. data/lib/tmail/scanner.rb +49 -0
  36. data/lib/tmail/scanner_r.rb +261 -0
  37. data/lib/tmail/stringio.rb +280 -0
  38. data/lib/tmail/utils.rb +361 -0
  39. data/lib/tmail/version.rb +39 -0
  40. data/lib/vendor/rchardet-1.3/COPYING +504 -0
  41. data/lib/vendor/rchardet-1.3/README +12 -0
  42. data/lib/vendor/rchardet-1.3/lib/rchardet.rb +67 -0
  43. data/lib/vendor/rchardet-1.3/lib/rchardet/big5freq.rb +927 -0
  44. data/lib/vendor/rchardet-1.3/lib/rchardet/big5prober.rb +42 -0
  45. data/lib/vendor/rchardet-1.3/lib/rchardet/chardistribution.rb +237 -0
  46. data/lib/vendor/rchardet-1.3/lib/rchardet/charsetgroupprober.rb +112 -0
  47. data/lib/vendor/rchardet-1.3/lib/rchardet/charsetprober.rb +75 -0
  48. data/lib/vendor/rchardet-1.3/lib/rchardet/codingstatemachine.rb +64 -0
  49. data/lib/vendor/rchardet-1.3/lib/rchardet/constants.rb +42 -0
  50. data/lib/vendor/rchardet-1.3/lib/rchardet/escprober.rb +90 -0
  51. data/lib/vendor/rchardet-1.3/lib/rchardet/escsm.rb +244 -0
  52. data/lib/vendor/rchardet-1.3/lib/rchardet/eucjpprober.rb +88 -0
  53. data/lib/vendor/rchardet-1.3/lib/rchardet/euckrfreq.rb +596 -0
  54. data/lib/vendor/rchardet-1.3/lib/rchardet/euckrprober.rb +42 -0
  55. data/lib/vendor/rchardet-1.3/lib/rchardet/euctwfreq.rb +430 -0
  56. data/lib/vendor/rchardet-1.3/lib/rchardet/euctwprober.rb +42 -0
  57. data/lib/vendor/rchardet-1.3/lib/rchardet/gb2312freq.rb +474 -0
  58. data/lib/vendor/rchardet-1.3/lib/rchardet/gb2312prober.rb +42 -0
  59. data/lib/vendor/rchardet-1.3/lib/rchardet/hebrewprober.rb +289 -0
  60. data/lib/vendor/rchardet-1.3/lib/rchardet/jisfreq.rb +570 -0
  61. data/lib/vendor/rchardet-1.3/lib/rchardet/jpcntx.rb +229 -0
  62. data/lib/vendor/rchardet-1.3/lib/rchardet/langbulgarianmodel.rb +229 -0
  63. data/lib/vendor/rchardet-1.3/lib/rchardet/langcyrillicmodel.rb +330 -0
  64. data/lib/vendor/rchardet-1.3/lib/rchardet/langgreekmodel.rb +227 -0
  65. data/lib/vendor/rchardet-1.3/lib/rchardet/langhebrewmodel.rb +202 -0
  66. data/lib/vendor/rchardet-1.3/lib/rchardet/langhungarianmodel.rb +226 -0
  67. data/lib/vendor/rchardet-1.3/lib/rchardet/langthaimodel.rb +201 -0
  68. data/lib/vendor/rchardet-1.3/lib/rchardet/latin1prober.rb +147 -0
  69. data/lib/vendor/rchardet-1.3/lib/rchardet/mbcharsetprober.rb +89 -0
  70. data/lib/vendor/rchardet-1.3/lib/rchardet/mbcsgroupprober.rb +47 -0
  71. data/lib/vendor/rchardet-1.3/lib/rchardet/mbcssm.rb +542 -0
  72. data/lib/vendor/rchardet-1.3/lib/rchardet/sbcharsetprober.rb +124 -0
  73. data/lib/vendor/rchardet-1.3/lib/rchardet/sbcsgroupprober.rb +58 -0
  74. data/lib/vendor/rchardet-1.3/lib/rchardet/sjisprober.rb +88 -0
  75. data/lib/vendor/rchardet-1.3/lib/rchardet/universaldetector.rb +166 -0
  76. data/lib/vendor/rchardet-1.3/lib/rchardet/utf8prober.rb +87 -0
  77. data/log/BugTrackingLog.txt +1245 -0
  78. data/log/Changelog.txt +534 -0
  79. data/log/Testlog.txt +2340 -0
  80. data/log/Todo.txt +30 -0
  81. data/meta/MANIFEST +128 -0
  82. data/meta/VERSION +1 -0
  83. data/meta/project.yaml +30 -0
  84. data/meta/unixname +1 -0
  85. data/sample/bench_base64.rb +48 -0
  86. data/sample/data/multipart +23 -0
  87. data/sample/data/normal +29 -0
  88. data/sample/data/sendtest +5 -0
  89. data/sample/data/simple +14 -0
  90. data/sample/data/test +27 -0
  91. data/sample/extract-attachements.rb +33 -0
  92. data/sample/from-check.rb +26 -0
  93. data/sample/multipart.rb +26 -0
  94. data/sample/parse-bench.rb +68 -0
  95. data/sample/parse-test.rb +19 -0
  96. data/sample/sendmail.rb +94 -0
  97. data/setup.rb +1482 -0
  98. data/site/contributing/index.html +183 -0
  99. data/site/css/clean.css +27 -0
  100. data/site/css/layout.css +31 -0
  101. data/site/css/style.css +60 -0
  102. data/site/download/index.html +61 -0
  103. data/site/img/envelope.jpg +0 -0
  104. data/site/img/mailman.gif +0 -0
  105. data/site/img/stamp-sm.jpg +0 -0
  106. data/site/img/stamp.jpg +0 -0
  107. data/site/img/stampborder.jpg +0 -0
  108. data/site/img/tfire.jpg +0 -0
  109. data/site/img/tmail.png +0 -0
  110. data/site/index.html +272 -0
  111. data/site/js/jquery.js +31 -0
  112. data/site/log/Changelog.xsl +33 -0
  113. data/site/log/changelog.xml +1677 -0
  114. data/site/outdated/BUGS +3 -0
  115. data/site/outdated/DEPENDS +1 -0
  116. data/site/outdated/Incompatibilities +89 -0
  117. data/site/outdated/Incompatibilities.ja +102 -0
  118. data/site/outdated/NEWS +9 -0
  119. data/site/outdated/README.ja +73 -0
  120. data/site/outdated/doc.ja/address.html +275 -0
  121. data/site/outdated/doc.ja/basics.html +405 -0
  122. data/site/outdated/doc.ja/config.html +49 -0
  123. data/site/outdated/doc.ja/details.html +146 -0
  124. data/site/outdated/doc.ja/index.html +39 -0
  125. data/site/outdated/doc.ja/mail.html +793 -0
  126. data/site/outdated/doc.ja/mailbox.html +265 -0
  127. data/site/outdated/doc.ja/port.html +95 -0
  128. data/site/outdated/doc.ja/tmail.html +58 -0
  129. data/site/outdated/doc.ja/usage.html +202 -0
  130. data/site/outdated/rdd/address.rrd.m +229 -0
  131. data/site/outdated/rdd/basics.rd.m +275 -0
  132. data/site/outdated/rdd/config.rrd.m +26 -0
  133. data/site/outdated/rdd/details.rd.m +117 -0
  134. data/site/outdated/rdd/index.rhtml.m +54 -0
  135. data/site/outdated/rdd/mail.rrd.m +701 -0
  136. data/site/outdated/rdd/mailbox.rrd.m +228 -0
  137. data/site/outdated/rdd/port.rrd.m +69 -0
  138. data/site/outdated/rdd/tmail.rrd.m +33 -0
  139. data/site/outdated/rdd/usage.rd.m +247 -0
  140. data/site/quickstart/index.html +69 -0
  141. data/site/quickstart/quickstart.html +52 -0
  142. data/site/quickstart/usage.html +193 -0
  143. data/site/reference/address.html +247 -0
  144. data/site/reference/config.html +30 -0
  145. data/site/reference/index.html +101 -0
  146. data/site/reference/mail.html +726 -0
  147. data/site/reference/mailbox.html +245 -0
  148. data/site/reference/port.html +75 -0
  149. data/site/reference/tmail.html +35 -0
  150. data/test/extctrl.rb +6 -0
  151. data/test/fixtures/mailbox +414 -0
  152. data/test/fixtures/mailbox_without_any_from_or_sender +10 -0
  153. data/test/fixtures/mailbox_without_from +11 -0
  154. data/test/fixtures/mailbox_without_return_path +12 -0
  155. data/test/fixtures/raw_attack_email_with_zero_length_whitespace +29 -0
  156. data/test/fixtures/raw_base64_decoded_string +0 -0
  157. data/test/fixtures/raw_base64_email +83 -0
  158. data/test/fixtures/raw_base64_encoded_string +1 -0
  159. data/test/fixtures/raw_email +14 -0
  160. data/test/fixtures/raw_email10 +20 -0
  161. data/test/fixtures/raw_email11 +34 -0
  162. data/test/fixtures/raw_email12 +32 -0
  163. data/test/fixtures/raw_email13 +29 -0
  164. data/test/fixtures/raw_email2 +114 -0
  165. data/test/fixtures/raw_email3 +70 -0
  166. data/test/fixtures/raw_email4 +59 -0
  167. data/test/fixtures/raw_email5 +19 -0
  168. data/test/fixtures/raw_email6 +20 -0
  169. data/test/fixtures/raw_email7 +66 -0
  170. data/test/fixtures/raw_email8 +47 -0
  171. data/test/fixtures/raw_email9 +28 -0
  172. data/test/fixtures/raw_email_multiple_from +30 -0
  173. data/test/fixtures/raw_email_quoted_with_0d0a +14 -0
  174. data/test/fixtures/raw_email_reply +32 -0
  175. data/test/fixtures/raw_email_simple +11 -0
  176. data/test/fixtures/raw_email_with_bad_date +48 -0
  177. data/test/fixtures/raw_email_with_illegal_boundary +58 -0
  178. data/test/fixtures/raw_email_with_mimepart_without_content_type +94 -0
  179. data/test/fixtures/raw_email_with_multipart_mixed_quoted_boundary +50 -0
  180. data/test/fixtures/raw_email_with_nested_attachment +100 -0
  181. data/test/fixtures/raw_email_with_partially_quoted_subject +14 -0
  182. data/test/fixtures/raw_email_with_quoted_illegal_boundary +58 -0
  183. data/test/kcode.rb +14 -0
  184. data/test/temp_test_one.rb +46 -0
  185. data/test/test_address.rb +1216 -0
  186. data/test/test_attachments.rb +131 -0
  187. data/test/test_base64.rb +64 -0
  188. data/test/test_encode.rb +139 -0
  189. data/test/test_header.rb +1021 -0
  190. data/test/test_helper.rb +9 -0
  191. data/test/test_mail.rb +756 -0
  192. data/test/test_mbox.rb +184 -0
  193. data/test/test_port.rb +440 -0
  194. data/test/test_quote.rb +107 -0
  195. data/test/test_scanner.rb +209 -0
  196. data/test/test_utils.rb +36 -0
  197. data/work/script/make +26 -0
  198. data/work/script/rdoc +39 -0
  199. data/work/script/setup +1616 -0
  200. data/work/script/test +30 -0
  201. metadata +309 -0
@@ -0,0 +1,30 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # TODO: Ensure compile first (but only if needed)
4
+ # system "task/make"
5
+
6
+ # Run unit tests
7
+
8
+ live = ARGV.include?('--live')
9
+ pure = ARGV.include?('--pure') # pure won't work if live.
10
+
11
+ unless live
12
+ $LOAD_PATH.unshift(File.expand_path('lib'))
13
+ $LOAD_PATH.unshift(File.expand_path('ext/tmailscanner')) unless pure
14
+ end
15
+ $LOAD_PATH.unshift('test') # NEEDED?
16
+
17
+ unless glob = ARGV.select{ |a| a !~ /^[-]/ }[0]
18
+ glob = 'test/test_*.rb'
19
+ end
20
+
21
+ Dir[glob].each do |file|
22
+ next if File.directory?(file)
23
+ begin
24
+ puts "Loading: #{file}" if $DEBUG
25
+ load(file)
26
+ rescue LoadError
27
+ puts "Error loading: #{file}"
28
+ end
29
+ end
30
+
metadata ADDED
@@ -0,0 +1,309 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: sa-tmail
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.2.5.1
5
+ platform: ruby
6
+ authors:
7
+ - Mikel Lindsaar <raasdnil AT gmail.com>
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-05-17 00:00:00 -03:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description: TMail is a Ruby-based mail handler. It allows you to compose stadards compliant emails in a very Ruby-way.
17
+ email: raasdnil AT gmail.com
18
+ executables: []
19
+
20
+ extensions:
21
+ - ext/tmailscanner/tmail/extconf.rb
22
+ extra_rdoc_files:
23
+ - README
24
+ - CHANGES
25
+ - LICENSE
26
+ - NOTES
27
+ - Rakefile
28
+ files:
29
+ - CHANGES
30
+ - ext/Makefile
31
+ - ext/tmailscanner/tmail/depend
32
+ - ext/tmailscanner/tmail/extconf.rb
33
+ - ext/tmailscanner/tmail/MANIFEST
34
+ - ext/tmailscanner/tmail/tmailscanner.c
35
+ - lib/tmail/address.rb
36
+ - lib/tmail/attachments.rb
37
+ - lib/tmail/base64.rb
38
+ - lib/tmail/compat.rb
39
+ - lib/tmail/config.rb
40
+ - lib/tmail/core_extensions.rb
41
+ - lib/tmail/encode.rb
42
+ - lib/tmail/header.rb
43
+ - lib/tmail/index.rb
44
+ - lib/tmail/interface.rb
45
+ - lib/tmail/loader.rb
46
+ - lib/tmail/mail.rb
47
+ - lib/tmail/mailbox.rb
48
+ - lib/tmail/main.rb
49
+ - lib/tmail/Makefile
50
+ - lib/tmail/mbox.rb
51
+ - lib/tmail/net.rb
52
+ - lib/tmail/obsolete.rb
53
+ - lib/tmail/parser.rb
54
+ - lib/tmail/parser.y
55
+ - lib/tmail/port.rb
56
+ - lib/tmail/quoting.rb
57
+ - lib/tmail/require_arch.rb
58
+ - lib/tmail/scanner.rb
59
+ - lib/tmail/scanner_r.rb
60
+ - lib/tmail/stringio.rb
61
+ - lib/tmail/utils.rb
62
+ - lib/tmail/version.rb
63
+ - lib/tmail.rb
64
+ - LICENSE
65
+ - log/BugTrackingLog.txt
66
+ - log/Changelog.txt
67
+ - log/Testlog.txt
68
+ - log/Todo.txt
69
+ - meta/MANIFEST
70
+ - meta/project.yaml
71
+ - meta/unixname
72
+ - meta/VERSION
73
+ - NOTES
74
+ - Rakefile
75
+ - README
76
+ - sample/bench_base64.rb
77
+ - sample/data/multipart
78
+ - sample/data/normal
79
+ - sample/data/sendtest
80
+ - sample/data/simple
81
+ - sample/data/test
82
+ - sample/extract-attachements.rb
83
+ - sample/from-check.rb
84
+ - sample/multipart.rb
85
+ - sample/parse-bench.rb
86
+ - sample/parse-test.rb
87
+ - sample/sendmail.rb
88
+ - setup.rb
89
+ - site/contributing/index.html
90
+ - site/css/clean.css
91
+ - site/css/layout.css
92
+ - site/css/style.css
93
+ - site/download/index.html
94
+ - site/img/envelope.jpg
95
+ - site/img/mailman.gif
96
+ - site/img/stamp-sm.jpg
97
+ - site/img/stamp.jpg
98
+ - site/img/stampborder.jpg
99
+ - site/img/tfire.jpg
100
+ - site/img/tmail.png
101
+ - site/index.html
102
+ - site/js/jquery.js
103
+ - site/log/changelog.xml
104
+ - site/log/Changelog.xsl
105
+ - site/outdated/BUGS
106
+ - site/outdated/DEPENDS
107
+ - site/outdated/doc.ja/address.html
108
+ - site/outdated/doc.ja/basics.html
109
+ - site/outdated/doc.ja/config.html
110
+ - site/outdated/doc.ja/details.html
111
+ - site/outdated/doc.ja/index.html
112
+ - site/outdated/doc.ja/mail.html
113
+ - site/outdated/doc.ja/mailbox.html
114
+ - site/outdated/doc.ja/port.html
115
+ - site/outdated/doc.ja/tmail.html
116
+ - site/outdated/doc.ja/usage.html
117
+ - site/outdated/Incompatibilities
118
+ - site/outdated/Incompatibilities.ja
119
+ - site/outdated/NEWS
120
+ - site/outdated/rdd/address.rrd.m
121
+ - site/outdated/rdd/basics.rd.m
122
+ - site/outdated/rdd/config.rrd.m
123
+ - site/outdated/rdd/details.rd.m
124
+ - site/outdated/rdd/index.rhtml.m
125
+ - site/outdated/rdd/mail.rrd.m
126
+ - site/outdated/rdd/mailbox.rrd.m
127
+ - site/outdated/rdd/port.rrd.m
128
+ - site/outdated/rdd/tmail.rrd.m
129
+ - site/outdated/rdd/usage.rd.m
130
+ - site/outdated/README.ja
131
+ - site/quickstart/index.html
132
+ - site/quickstart/quickstart.html
133
+ - site/quickstart/usage.html
134
+ - site/reference/address.html
135
+ - site/reference/config.html
136
+ - site/reference/index.html
137
+ - site/reference/mail.html
138
+ - site/reference/mailbox.html
139
+ - site/reference/port.html
140
+ - site/reference/tmail.html
141
+ - test/extctrl.rb
142
+ - test/fixtures/mailbox
143
+ - test/fixtures/mailbox_without_any_from_or_sender
144
+ - test/fixtures/mailbox_without_from
145
+ - test/fixtures/mailbox_without_return_path
146
+ - test/fixtures/raw_attack_email_with_zero_length_whitespace
147
+ - test/fixtures/raw_base64_decoded_string
148
+ - test/fixtures/raw_base64_email
149
+ - test/fixtures/raw_base64_encoded_string
150
+ - test/fixtures/raw_email
151
+ - test/fixtures/raw_email10
152
+ - test/fixtures/raw_email11
153
+ - test/fixtures/raw_email12
154
+ - test/fixtures/raw_email13
155
+ - test/fixtures/raw_email2
156
+ - test/fixtures/raw_email3
157
+ - test/fixtures/raw_email4
158
+ - test/fixtures/raw_email5
159
+ - test/fixtures/raw_email6
160
+ - test/fixtures/raw_email7
161
+ - test/fixtures/raw_email8
162
+ - test/fixtures/raw_email9
163
+ - test/fixtures/raw_email_multiple_from
164
+ - test/fixtures/raw_email_quoted_with_0d0a
165
+ - test/fixtures/raw_email_reply
166
+ - test/fixtures/raw_email_simple
167
+ - test/fixtures/raw_email_with_bad_date
168
+ - test/fixtures/raw_email_with_illegal_boundary
169
+ - test/fixtures/raw_email_with_mimepart_without_content_type
170
+ - test/fixtures/raw_email_with_multipart_mixed_quoted_boundary
171
+ - test/fixtures/raw_email_with_nested_attachment
172
+ - test/fixtures/raw_email_with_partially_quoted_subject
173
+ - test/fixtures/raw_email_with_quoted_illegal_boundary
174
+ - test/kcode.rb
175
+ - test/temp_test_one.rb
176
+ - test/test_address.rb
177
+ - test/test_attachments.rb
178
+ - test/test_base64.rb
179
+ - test/test_encode.rb
180
+ - test/test_header.rb
181
+ - test/test_helper.rb
182
+ - test/test_mail.rb
183
+ - test/test_mbox.rb
184
+ - test/test_port.rb
185
+ - test/test_quote.rb
186
+ - test/test_scanner.rb
187
+ - test/test_utils.rb
188
+ - work/script/make
189
+ - work/script/rdoc
190
+ - work/script/setup
191
+ - work/script/test
192
+ - lib/vendor/rchardet-1.3/COPYING
193
+ - lib/vendor/rchardet-1.3/README
194
+ - lib/vendor/rchardet-1.3/lib/rchardet.rb
195
+ - lib/vendor/rchardet-1.3/lib/rchardet/big5freq.rb
196
+ - lib/vendor/rchardet-1.3/lib/rchardet/big5prober.rb
197
+ - lib/vendor/rchardet-1.3/lib/rchardet/chardistribution.rb
198
+ - lib/vendor/rchardet-1.3/lib/rchardet/charsetgroupprober.rb
199
+ - lib/vendor/rchardet-1.3/lib/rchardet/charsetprober.rb
200
+ - lib/vendor/rchardet-1.3/lib/rchardet/codingstatemachine.rb
201
+ - lib/vendor/rchardet-1.3/lib/rchardet/constants.rb
202
+ - lib/vendor/rchardet-1.3/lib/rchardet/escprober.rb
203
+ - lib/vendor/rchardet-1.3/lib/rchardet/escsm.rb
204
+ - lib/vendor/rchardet-1.3/lib/rchardet/eucjpprober.rb
205
+ - lib/vendor/rchardet-1.3/lib/rchardet/euckrfreq.rb
206
+ - lib/vendor/rchardet-1.3/lib/rchardet/euckrprober.rb
207
+ - lib/vendor/rchardet-1.3/lib/rchardet/euctwfreq.rb
208
+ - lib/vendor/rchardet-1.3/lib/rchardet/euctwprober.rb
209
+ - lib/vendor/rchardet-1.3/lib/rchardet/gb2312freq.rb
210
+ - lib/vendor/rchardet-1.3/lib/rchardet/gb2312prober.rb
211
+ - lib/vendor/rchardet-1.3/lib/rchardet/hebrewprober.rb
212
+ - lib/vendor/rchardet-1.3/lib/rchardet/jisfreq.rb
213
+ - lib/vendor/rchardet-1.3/lib/rchardet/jpcntx.rb
214
+ - lib/vendor/rchardet-1.3/lib/rchardet/langbulgarianmodel.rb
215
+ - lib/vendor/rchardet-1.3/lib/rchardet/langcyrillicmodel.rb
216
+ - lib/vendor/rchardet-1.3/lib/rchardet/langgreekmodel.rb
217
+ - lib/vendor/rchardet-1.3/lib/rchardet/langhebrewmodel.rb
218
+ - lib/vendor/rchardet-1.3/lib/rchardet/langhungarianmodel.rb
219
+ - lib/vendor/rchardet-1.3/lib/rchardet/langthaimodel.rb
220
+ - lib/vendor/rchardet-1.3/lib/rchardet/latin1prober.rb
221
+ - lib/vendor/rchardet-1.3/lib/rchardet/mbcharsetprober.rb
222
+ - lib/vendor/rchardet-1.3/lib/rchardet/mbcsgroupprober.rb
223
+ - lib/vendor/rchardet-1.3/lib/rchardet/mbcssm.rb
224
+ - lib/vendor/rchardet-1.3/lib/rchardet/sbcharsetprober.rb
225
+ - lib/vendor/rchardet-1.3/lib/rchardet/sbcsgroupprober.rb
226
+ - lib/vendor/rchardet-1.3/lib/rchardet/sjisprober.rb
227
+ - lib/vendor/rchardet-1.3/lib/rchardet/universaldetector.rb
228
+ - lib/vendor/rchardet-1.3/lib/rchardet/utf8prober.rb
229
+ has_rdoc: true
230
+ homepage: http://tmail.rubyforge.org
231
+ licenses: []
232
+
233
+ post_install_message:
234
+ rdoc_options:
235
+ - --inline-source
236
+ - --title
237
+ - TMail
238
+ - --main
239
+ - README
240
+ require_paths:
241
+ - lib
242
+ - ext/tmailscanner
243
+ required_ruby_version: !ruby/object:Gem::Requirement
244
+ requirements:
245
+ - - ">="
246
+ - !ruby/object:Gem::Version
247
+ version: "0"
248
+ version:
249
+ required_rubygems_version: !ruby/object:Gem::Requirement
250
+ requirements:
251
+ - - ">="
252
+ - !ruby/object:Gem::Version
253
+ version: "0"
254
+ version:
255
+ requirements: []
256
+
257
+ rubyforge_project: tmail
258
+ rubygems_version: 1.3.5
259
+ signing_key:
260
+ specification_version: 2
261
+ summary: Ruby Mail Handler
262
+ test_files:
263
+ - test/extctrl.rb
264
+ - test/fixtures/mailbox
265
+ - test/fixtures/mailbox_without_any_from_or_sender
266
+ - test/fixtures/mailbox_without_from
267
+ - test/fixtures/mailbox_without_return_path
268
+ - test/fixtures/raw_attack_email_with_zero_length_whitespace
269
+ - test/fixtures/raw_base64_decoded_string
270
+ - test/fixtures/raw_base64_email
271
+ - test/fixtures/raw_base64_encoded_string
272
+ - test/fixtures/raw_email
273
+ - test/fixtures/raw_email10
274
+ - test/fixtures/raw_email11
275
+ - test/fixtures/raw_email12
276
+ - test/fixtures/raw_email13
277
+ - test/fixtures/raw_email2
278
+ - test/fixtures/raw_email3
279
+ - test/fixtures/raw_email4
280
+ - test/fixtures/raw_email5
281
+ - test/fixtures/raw_email6
282
+ - test/fixtures/raw_email7
283
+ - test/fixtures/raw_email8
284
+ - test/fixtures/raw_email9
285
+ - test/fixtures/raw_email_multiple_from
286
+ - test/fixtures/raw_email_quoted_with_0d0a
287
+ - test/fixtures/raw_email_reply
288
+ - test/fixtures/raw_email_simple
289
+ - test/fixtures/raw_email_with_bad_date
290
+ - test/fixtures/raw_email_with_illegal_boundary
291
+ - test/fixtures/raw_email_with_mimepart_without_content_type
292
+ - test/fixtures/raw_email_with_multipart_mixed_quoted_boundary
293
+ - test/fixtures/raw_email_with_nested_attachment
294
+ - test/fixtures/raw_email_with_partially_quoted_subject
295
+ - test/fixtures/raw_email_with_quoted_illegal_boundary
296
+ - test/kcode.rb
297
+ - test/temp_test_one.rb
298
+ - test/test_address.rb
299
+ - test/test_attachments.rb
300
+ - test/test_base64.rb
301
+ - test/test_encode.rb
302
+ - test/test_header.rb
303
+ - test/test_helper.rb
304
+ - test/test_mail.rb
305
+ - test/test_mbox.rb
306
+ - test/test_port.rb
307
+ - test/test_quote.rb
308
+ - test/test_scanner.rb
309
+ - test/test_utils.rb