tmail 1.2.1 → 1.2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (126) hide show
  1. data/CHANGES +50 -5
  2. data/MANIFEST +188 -0
  3. data/NOTES +1 -1
  4. data/README +10 -4
  5. data/Rakefile +1 -10
  6. data/lib/tmail.rb +1 -0
  7. data/lib/tmail/Makefile +0 -1
  8. data/lib/tmail/address.rb +190 -17
  9. data/lib/tmail/attachments.rb +1 -1
  10. data/lib/tmail/base64.rb +4 -10
  11. data/lib/tmail/compat.rb +8 -6
  12. data/lib/tmail/config.rb +2 -6
  13. data/lib/tmail/core_extensions.rb +14 -18
  14. data/lib/tmail/encode.rb +47 -12
  15. data/lib/tmail/header.rb +7 -10
  16. data/lib/tmail/index.rb +2 -1
  17. data/lib/tmail/interface.rb +14 -12
  18. data/lib/tmail/loader.rb +2 -0
  19. data/lib/tmail/mail.rb +83 -24
  20. data/lib/tmail/mailbox.rb +70 -10
  21. data/lib/tmail/main.rb +2 -0
  22. data/lib/tmail/mbox.rb +2 -0
  23. data/lib/tmail/net.rb +16 -15
  24. data/lib/tmail/obsolete.rb +7 -12
  25. data/lib/tmail/parser.rb +1 -0
  26. data/lib/tmail/require_arch.rb +2 -0
  27. data/lib/tmail/scanner.rb +2 -1
  28. data/lib/tmail/scanner_r.rb +11 -10
  29. data/lib/tmail/utils.rb +83 -26
  30. data/lib/tmail/version.rb +3 -2
  31. data/log/BugTrackingLog.txt +1208 -0
  32. data/log/{ChangeLog.txt → Changelog-0.txt} +36 -0
  33. data/log/Changelog.txt +534 -0
  34. data/log/Testlog.txt +114 -0
  35. data/log/Todo.txt +0 -2
  36. data/meta/VERSION +1 -0
  37. data/meta/project.yaml +8 -5
  38. data/meta/unixname +1 -0
  39. data/setup.rb +1481 -0
  40. data/site/contributing/index.html +183 -0
  41. data/site/css/clean.css +27 -0
  42. data/site/css/layout.css +31 -0
  43. data/site/css/style.css +60 -0
  44. data/site/download/index.html +61 -0
  45. data/site/img/envelope.jpg +0 -0
  46. data/site/img/mailman.gif +0 -0
  47. data/site/img/stamp-sm.jpg +0 -0
  48. data/site/img/stamp.jpg +0 -0
  49. data/site/img/stampborder.jpg +0 -0
  50. data/site/img/tfire.jpg +0 -0
  51. data/site/img/tmail.png +0 -0
  52. data/site/index.html +270 -0
  53. data/site/js/jquery.js +31 -0
  54. data/site/log/Changelog.xsl +33 -0
  55. data/site/log/changelog.xml +1677 -0
  56. data/site/outdated/BUGS +3 -0
  57. data/site/outdated/DEPENDS +1 -0
  58. data/site/outdated/Incompatibilities +89 -0
  59. data/site/outdated/Incompatibilities.ja +102 -0
  60. data/site/outdated/NEWS +9 -0
  61. data/site/outdated/README.ja +73 -0
  62. data/site/outdated/doc.ja/address.html +275 -0
  63. data/site/outdated/doc.ja/basics.html +405 -0
  64. data/site/outdated/doc.ja/config.html +49 -0
  65. data/site/outdated/doc.ja/details.html +146 -0
  66. data/site/outdated/doc.ja/index.html +39 -0
  67. data/site/outdated/doc.ja/mail.html +793 -0
  68. data/site/outdated/doc.ja/mailbox.html +265 -0
  69. data/site/outdated/doc.ja/port.html +95 -0
  70. data/site/outdated/doc.ja/tmail.html +58 -0
  71. data/site/outdated/doc.ja/usage.html +202 -0
  72. data/site/outdated/rdd/address.rrd.m +229 -0
  73. data/site/outdated/rdd/basics.rd.m +275 -0
  74. data/site/outdated/rdd/config.rrd.m +26 -0
  75. data/site/outdated/rdd/details.rd.m +117 -0
  76. data/site/outdated/rdd/index.rhtml.m +54 -0
  77. data/site/outdated/rdd/mail.rrd.m +701 -0
  78. data/site/outdated/rdd/mailbox.rrd.m +228 -0
  79. data/site/outdated/rdd/port.rrd.m +69 -0
  80. data/site/outdated/rdd/tmail.rrd.m +33 -0
  81. data/site/outdated/rdd/usage.rd.m +247 -0
  82. data/site/quickstart/index.html +69 -0
  83. data/site/quickstart/quickstart.html +52 -0
  84. data/site/quickstart/usage.html +193 -0
  85. data/site/reference/address.html +247 -0
  86. data/site/reference/config.html +30 -0
  87. data/site/reference/index.html +101 -0
  88. data/site/reference/mail.html +726 -0
  89. data/site/reference/mailbox.html +245 -0
  90. data/site/reference/port.html +75 -0
  91. data/site/reference/tmail.html +35 -0
  92. data/test/fixtures/mailbox +405 -4
  93. data/test/fixtures/raw_email_multiple_from +30 -0
  94. data/test/kcode.rb +2 -2
  95. data/test/temp_test_one.rb +46 -0
  96. data/test/test_address.rb +77 -38
  97. data/test/test_encode.rb +0 -2
  98. data/test/test_header.rb +47 -24
  99. data/test/test_mail.rb +52 -9
  100. data/test/test_mbox.rb +28 -0
  101. data/test/test_port.rb +33 -27
  102. data/test/test_quote.rb +35 -8
  103. data/work/script/make +26 -0
  104. data/work/script/rdoc +39 -0
  105. data/{script → work/script}/setup +0 -0
  106. data/work/script/test +30 -0
  107. metadata +249 -184
  108. data/log/History.txt +0 -40
  109. data/meta/config.yaml +0 -8
  110. data/meta/icli.yaml +0 -16
  111. data/meta/tmail.roll +0 -3
  112. data/script/changelog +0 -19
  113. data/script/clobber/distclean +0 -8
  114. data/script/clobber/package +0 -10
  115. data/script/compile +0 -32
  116. data/script/pack/gem +0 -93
  117. data/script/pack/tgz +0 -41
  118. data/script/pack/zip +0 -41
  119. data/script/prepare +0 -15
  120. data/script/publish +0 -51
  121. data/script/rdoc +0 -42
  122. data/script/release +0 -10
  123. data/script/stamp +0 -33
  124. data/script/stats +0 -138
  125. data/script/tag +0 -25
  126. data/script/test +0 -36
@@ -27,8 +27,9 @@
27
27
  # with permission of Minero Aoki.
28
28
  #++
29
29
 
30
- module TMail #:nodoc:
31
- module VERSION #:nodoc:
30
+ #:stopdoc:
31
+ module TMail
32
+ module VERSION
32
33
  MAJOR = 1
33
34
  MINOR = 2
34
35
  TINY = 1
@@ -0,0 +1,1208 @@
1
+ == Sat Mar 1 23:34:40 GMT 2008 Mikel Lindsaar <raasdnil@gmail.com>
2
+
3
+ * Closed #18516 - Fix TMail::Mail#preamble, and add #preamble= (Charles Lowe)
4
+ * Closed #18515 - Removed ftools from test case (Charles Lowe)
5
+
6
+ == Fri Feb 22 15:28:16 GMT 2008 Mikel Lindsaar <raasdnil@gmail.com>
7
+
8
+ * A _LOT_ more documentation, almost ready for the next release
9
+
10
+ == Thu Feb 21 10:40:21 GMT 2008 Mikel Lindsaar <raasdnil@gmail.com>
11
+
12
+ * Closed #18038 - Multiple froms not being parsed correctly, added a test case to cover this and show the correct handling - (Mikel)
13
+
14
+ == Wed Feb 13 00:40:08 GMT 2008 Mikel Lindsaar <raasdnil@gmail.com>
15
+
16
+ * Closed #17719 - Reading unix mailbox fails using File.truncate - (Mikel)
17
+
18
+ * Updated documentation for UNIXMbox.new
19
+
20
+ == Tue Jan 15 04:09:28 GMT 2008 Mikel Lindsaar <raasdnil@gmail.com>
21
+
22
+ * Added another test case from ActionMailer into test_quote.rb
23
+
24
+ == Tue Jan 15 01:50:23 GMT 2008 Mikel Lindsaar <raasdnil@gmail.com>
25
+
26
+ * Closed #17011 - test_quote.rb fails on 1.9 - (Mikel)
27
+
28
+ * Closed #17007 - test_header.rb fails on 1.9 - (Mikel)
29
+
30
+ * Closed #17008 - test_mail.rb fails on 1.9 - (Mikel)
31
+
32
+ == Sat Jan 12 04:13:47 GMT 2008 Mikel Lindsaar <raasdnil@gmail.com>
33
+
34
+ * Closed #17012 - test_scanner.rb fails on 1.9 - (Mikel and Kornelius Kalnbach)
35
+
36
+ * Closed #17010 - test_port.rb fails on 1.9 - (Mikel and Kornelius Kalnbach)
37
+
38
+ * Closed #17009 - test_mbox.rb fails on 1.9 - (Mikel and Kornelius Kalnbach)
39
+
40
+ * Closed #17006 - test_encode.rb fails on 1.9 - (Mikel and Kornelius Kalnbach)
41
+
42
+ * Closed #17005 - test_attachments.rb fails on 1.9 - (Mikel and Kornelius Kalnbach)
43
+
44
+ * Closed #17004 - test_address.rb fails on 1.9 - (Mikel and Kornelius Kalnbach)
45
+
46
+ == Sat Jan 12 02:07:24 GMT 2008 Mikel Lindsaar <raasdnil@gmail.com>
47
+
48
+ * Closed #17044 - Fixed Minero's TODO: "allow this type of header: "Minero A. <aamine@loveruby.net>"
49
+
50
+ * Closed #17045 - Fixed the Address class to pre quote the email address 'mikel@me.com <mikel@me.com>' into '"mikel@me.com" <mikel@me.com>' which handles this problem
51
+
52
+ == Sat Jan 10 10:13:12 GMT 2008 Mikel Lindsaar <raasdnil@gmail.com>
53
+
54
+ === TMail 1.2.1 Released
55
+
56
+ == Thu Jan 10 15:09:02 GMT 2008 Mikel Lindsaar <raasdnil@gmail.com>
57
+
58
+ * Closed #16899 - HeaderField.new_from_port and added test cases to cover this code. Also changed behaviour of HeaderField.new_from_port to return nil if it does not find a matching header in the port provided. Extended UNIXMbox.fromaddr to also search for EnvelopeSender and also made it a public method, not private - Thanks to Maarten O. for alerting these bugs
59
+
60
+ * Closed #16900 - UNIXMbox.fromaddr missing port param and does not return Envelope Sender. This report was initially to correct typo on "Regep" to "Regexp". Also added test cases to cover this class method. Also added ability to scan for the EnvelopeSender explictly as it would not come up on searching for "From" due to Regexp confilct with From: (with the colon). Thanks to Maarten O. for reporting this.
61
+
62
+ == Thu Dec 25 23:10:16 GMT 2007 Mikel Lindsaar <raasdnil@gmail.com>
63
+
64
+ * Closed Bug - Handled quote boundary being gready on content-type header fields (M. Mondragon)
65
+
66
+ == Thu Dec 25 20:10:46 GMT 2007 Mikel Lindsaar <raasdnil@gmail.com>
67
+
68
+ * Change the name of mailscanner to tmailscanner to handle a copyright issue. MailScanner is a copyrighted name.
69
+
70
+ == Thu Dec 02 11:11:36 GMT 2008 Mikel Lindsaar <raasdnil@gmail.com>
71
+
72
+ * Added about 15 test cases from the Rails community. Added failing test case for an unquoted @ char in the From header field. Need to check fully if this is needed or not, but it is there anyway - to be resolved. I have emailed 822 mailing list to check this out.
73
+
74
+ == Fri Nov 30 08:04:09 GMT 2007 Mikel Lindsaar <raasdnil@gmail.com>
75
+
76
+ * Closed 16025 - TMail scanner.rb would not parse ATOM chars correctly making it fail tests where the C version passed them. Fixed this by updating the Scanner.rb version to be in step with the C version (there was an extra @ symbol in the ATOM CHARS definition that was not in the C version.) (mikel)
77
+
78
+ == Fri Nov 25 05:41:15 GMT 2007 Mikel Lindsaar <raasdnil@gmail.com>
79
+
80
+ * Closed 16283 - TMail would not decode correctly due to bug in text-utils - put in previous patch from old tmail trunk version. Thanks to garyo for spotting this.
81
+
82
+ == Mon Nov 19 23:15:29 GMT 2007 Mikel Lindsaar <raasdnil@gmail.com>
83
+
84
+ * Added about 500 lines of documentation to the interface.rb file.
85
+
86
+ * Changed TMail::Mail#sender to have a default "default" value of nil to be in alignment with all the other interface values.
87
+
88
+ == Thu Nov 15 13:26:45 GMT 2007 Mikel Lindsaar <raasdnil@gmail.com>
89
+
90
+ * Closed 15445 - TMail::Mail#create_forward now returns a new Mail object that has the original mail as an encoded 7 bit multipart attachment. Also moved create_forward and create_reply from tmail/net into tmail/interface as it makes more sense to have it there.
91
+
92
+ * Closed 15643 - TMail::Mail#reply_addresses was returning an empty array if reply_to was set to nil (ie, the header field existed but was empty) instead of returning the from address or default.
93
+
94
+ * Did a BUNCH of documentation of the tmail/interface.rb file.
95
+
96
+ * Made base64_decode and base64_encode into ! versions as they are destructive on the mail body (encodes the body to base64 or decodes it), made aliases for base64_decode and base64_encode to point back to the bang versions. Doing this with a view to change base64_encode to a non destructive version (returns the encoded body) in future versions.
97
+
98
+ = Version 1.1.1. Released Mon Oct 24 21:14:00 2007 +1100
99
+
100
+ == Thu Nov 1 10:02:26 GMT 2007 Mikel Lindsaar <raasdnil@gmail.com>
101
+
102
+ * Closed Did another patch on the folding, re-read the RFC's and got clarification on when SHOULD and MUST fold. New folding section at the bottom of encode handles various line lengths which include or do not include whitespace
103
+
104
+ == Wed Oct 31 05:10:34 GMT 2007 Mikel Lindsaar <raasdnil@gmail.com>
105
+
106
+ * Put in an escape clause in the def fold method of class Encode to skip folding of any X- header line.
107
+
108
+ == Sun Oct 28 03:45:16 GMT 2007 Mikel Lindsaar <raasdnil@gmail.com>
109
+
110
+ * Refactored how the package was going to_s - made the handling of quotation marks inside of the header more consistent and in accordance with the RFCs on the matter (ie, a filename in a content-disposition field paramater filename=README.TXT will not be quoted unless it contains special characters per RFC 1521 )
111
+
112
+ == Sun Oct 28 03:45:16 GMT 2007 Mikel Lindsaar <raasdnil@gmail.com>
113
+
114
+ * Made the package into a GEM
115
+
116
+ == Sat Oct 27 05:43:36 GMT 2007 Mikel Lindsaar <raasdnil@gmail.com>
117
+
118
+ * Re-factored the quotation handling - learnt more about how this is implemented by Minero, and re-wrote my handling of it to preserve quotation marks in the headers
119
+
120
+ == Sat Oct 27 05:43:36 GMT 2007 Mikel Lindsaar <raasdnil@gmail.com>
121
+
122
+ * Closed 15077 - Assigning the body via mail.body would not reparse the email body text. Changed mail.rb to reparse body if assigned via body= String.
123
+
124
+ == Thu Oct 25 05:52:02 GMT 2007 Mikel Lindsaar <raasdnil@gmail.com>
125
+
126
+ * Moved facade.rb to interface.rb - updated mail.rb to reflect this
127
+
128
+ == Thu Oct 25 05:39:09 GMT 2007 Mikel Lindsaar <raasdnil@gmail.com>
129
+
130
+ * Totally rewrote the README file to be in RDoc format and provide a beginning place for the RDoc documentation
131
+
132
+ * Cleaned up the root directory of all the spurious files.
133
+
134
+ * Merged the Changelog files and made it into RDoc format.
135
+
136
+ * Cleaned up the Bugs and TODO files
137
+
138
+ * Added RDoc headers to each source file.
139
+
140
+ * Started doing the RDoc on the utils.rb file
141
+
142
+ == Thu Oct 25 11:12:00 2007 +1100 Mikel Lindsaar <raasdnil@gmail.com>
143
+
144
+ * Added quickstart page to WWW as well as applied styling to all existing pages in the site.
145
+
146
+ * Uploaded site to rubyforge
147
+
148
+ == Thu Oct 25 9:00:00 2007 Tom <transfire@gmail.com>
149
+
150
+ * Added website to trunk, basic styling and templates, logos and general layout.
151
+
152
+ = Version 0.11.0. Released Mon Oct 24 21:14:00 2007 +1100
153
+
154
+ == Wed Oct 24 17:50:00 2007 +1100 Mikel Lindsaar <raasdnil@gmail.com>
155
+
156
+ * Fixed all but two tests which are one encoding problem with relating to RFC 2231 and another problem where special characters are not properly quoted if they are the name portion of an email address (ie, TMail does not handle the address <"@"@example.com> properly)
157
+
158
+ * Closed #14964 - The TMail from ActionMailer Preview Release 2.0 is now fully merged. All previous tests and examples relating to TMail that were part of ActionMailer 2.0 Preview Release now pass.
159
+
160
+ * Closed #15008 - Fixed handling of multipart content type headers. Now tested against many types of email. TMails' behaviour now is to take any boundary type, if it contains illegal characters, it will wrap it in "" when requesting the content type by mail['content-type] you will receive it unquoted, when outputting the email to_s as a whole you will receive the content-type field with the boundary section quoted if it contains illegal characters.
161
+
162
+ * Replaced id with object_id line 221 in stringio.rb
163
+
164
+ == Wed Oct 24 15:35:00 2007 +1100 Mikel Lindsaar <raasdnil@gmail.com>
165
+
166
+ * Copied over the TMail/*.rb files from the TRUNK version of Rails ActionMailer (2.0 Preview Release) into branch for 0.11.0
167
+
168
+ * Fixed up many broken tests so that they pass (testing errors, including wrong paths etc)
169
+
170
+ * Closed #15002 - Fixed error where handling of MIME content-type headers that had quoted parameters due to including RFC 2045 special characters were being stripped of their quotation marks when the mail object was sent "to_s". Now any quotation marks that were in the original are maintained in the result
171
+
172
+ * Closed #14999 - TMail now "fixes" illegal Content-Type bondary= parameter by wrapping it in double quotation marks per RFC 2045 and also produces this in the mail.to_s method
173
+
174
+ * Added in tmail/core_extensions.rb which installs Object.blank? unless Object already responds_to?(:blank?) ie, we are already in a Rails environment.
175
+
176
+ * Updated names of the test files as a start to cleaning up the tests directory.
177
+
178
+ = Version 0.10.9. Released Mon Oct 22 00:36:00 2007 +1100
179
+
180
+ == Mon Oct 22 22:32:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
181
+
182
+ * General cleanup - converted all files to UTF-8 from the various encodings.
183
+
184
+ == Mon Oct 22 22:00:00 2007 +1100 Mikel Lindsaar <raasdnil@gmail.com>
185
+
186
+ * Fixed all tests so that they now pass - were problems with the times being checked were hard coded for Tokyo time and so would fail in a different time zone. All of these now pass
187
+
188
+ * Fixed handling of MIME content-type header handling so that TMail now quotes any content-type it finds to contain invalid characters per RFC 2045 which are "/", "?" or "=". Per RFC, handling is to put double quotes are put around it with the quote_boundary method, we now do this.
189
+
190
+ * Updated Copyright year for Minero Aoki
191
+
192
+ = Version 0.10.8. Released Fri Feb 20 09:37:34 2004
193
+
194
+ == Fri Feb 20 09:34:40 2004 Minero Aoki <aamine@loveruby.net>
195
+
196
+ * lib/tmail/*.rb, ext/.c: Lesser GPL is LGPL 2.1.
197
+
198
+ * lib/tmail/*.rb, ext/*.c: update Copyright year.
199
+
200
+ == Fri Feb 20 09:33:42 2004 Minero Aoki <aamine@loveruby.net>
201
+
202
+ * Makefile: new target `import'.
203
+
204
+ * Makefile (dist): exectest.rb is useless now because tests do not use runit.
205
+
206
+ * Makefile (dist): remove web/.
207
+
208
+ == Fri Feb 20 09:31:58 2004 Minero Aoki <aamine@loveruby.net>
209
+
210
+ * lib/tmail/stringio.rb: import amstd/stringio.rb rev 1.12.
211
+
212
+ == Fri Feb 20 09:16:20 2004 Minero Aoki <aamine@loveruby.net>
213
+
214
+ * NEWS: new file.
215
+
216
+ == Fri Feb 20 09:02:35 2004 Minero Aoki <aamine@loveruby.net>
217
+
218
+ * Makefile (clean): cleans documentation
219
+
220
+ == Fri Feb 20 09:02:03 2004 Minero Aoki <aamine@loveruby.net>
221
+
222
+ * doc/* .rrd.m: use 'a|b' to expressing "type a or b".
223
+
224
+ == Fri Feb 20 08:57:24 2004 Minero Aoki <aamine@loveruby.net>
225
+
226
+ * doc/* .rrd.m: ( arg ) -> (arg).
227
+
228
+ == Fri Feb 20 08:49:09 2004 Minero Aoki <aamine@loveruby.net>
229
+
230
+ * lib/tmail/mailbox.rb: require 'tmail/textutils' to be independent.
231
+
232
+ == Fri Feb 20 08:35:00 2004 Minero Aoki <aamine@loveruby.net>
233
+
234
+ * Makefile: version 0.10.8.
235
+
236
+ * ext/tmail/scanner_c/scanner_c.c: ditto.
237
+
238
+ * lib/tmail/info.rb: ditto.
239
+
240
+ * lib/tmail/scanner_r.rb: ditto.
241
+
242
+ == Fri Feb 20 08:34:00 2004 Minero Aoki <aamine@loveruby.net>
243
+
244
+ * test/testbase64.rb: moved from ext/tmail/base64.
245
+
246
+ == Mon Nov 3 18:37:46 2003 Minero Aoki <aamine@loveruby.net>
247
+
248
+ * ext/tmail/base64/base64.c: eliminate cc warning.
249
+
250
+ * ext/tmail/base64/base64.c: use StringValue instead of rb_str2cstr if exists.
251
+
252
+ == Mon Nov 3 18:36:15 2003 Minero Aoki <aamine@loveruby.net>
253
+
254
+ * Makefile: replace `make' with $(MAKE) macro.
255
+
256
+ * Makefile: new target `clean'.
257
+
258
+ * ext/tmail/Makefile: replace `make' with $(MAKE) macro.
259
+
260
+ * ext/tmail/Makefile: new target `clean', `distclean'.
261
+
262
+ * lib/tmail/Makefile: add header.
263
+
264
+ == Mon Nov 3 18:34:12 2003 Minero Aoki <aamine@loveruby.net>
265
+
266
+ * lib/tmail/port.rb: #filename -> #path (alias filename)
267
+
268
+ * lib/tmail/port.rb: @filename -> @path
269
+
270
+ * lib/tmail/port.rb (copy_file): simplify.
271
+
272
+ * lib/tmail/port.rb: apply latest coding style.
273
+
274
+ == Sun Oct 12 12:50:35 2003 Minero Aoki <aamine@loveruby.net>
275
+
276
+ * Makefile: new target "test".
277
+
278
+ == Sun Oct 12 12:46:02 2003 Minero Aoki <aamine@loveruby.net>
279
+
280
+ * lib/tmail/textutils.rb: @uniq -> @@uniq, to allow including TextUtils.
281
+
282
+ * test/testtextutils.rb: new file.
283
+
284
+ * test/testtextutils.rb: test TextUtils#new_boundary.
285
+
286
+ == Thu Oct 9 05:10:51 2003 Brian F. Feldman <green@FreeBSD.org>
287
+
288
+ * mailbox.rb (fromaddr): should take parameter.
289
+
290
+ * header.rb (new_from_port): modify typo.
291
+
292
+ == Fri Sep 12 16:54:07 2003 Minero Aoki <aamine@loveruby.net>
293
+
294
+ * sample/sendmail.rb (setup_mail): small refactoring.
295
+
296
+ == Fri Sep 12 16:48:49 2003 Minero Aoki <aamine@loveruby.net>
297
+
298
+ * sample/extract-attachments.rb: new file.
299
+
300
+ == Fri Sep 12 16:23:46 2003 Minero Aoki <aamine@loveruby.net>
301
+
302
+ * lib/tmail/mailbox.rb (UNIXMbox): should be able to trancate mbox file. The patch is contributed
303
+ by Brian Fundakowski.
304
+
305
+ == Thu Aug 28 16:52:55 2003 Minero Aoki <aamine@loveruby.net>
306
+
307
+ * Makefile: install.rb -> setup.rb
308
+
309
+ == Tue Aug 12 09:20:05 2003 Minero Aoki <aamine@loveruby.net>
310
+
311
+ * lib/tmail/mail.rb ([]=): raise BadMessage if multiple headers set.
312
+
313
+ == Thu Aug 7 18:52:10 2003 Minero Aoki <aamine@loveruby.net>
314
+
315
+ * lib/tmail/mail.rb (read_multipart): return if the message have not boundary. [ruby-list:38050]
316
+
317
+ * test/testmail.rb: test it.
318
+
319
+ == Thu Aug 7 18:50:46 2003 Minero Aoki <aamine@loveruby.net>
320
+
321
+ * doc/mailbox.rrd.m: adjust header level.
322
+
323
+ * doc/port.rrd.m: ditto.
324
+
325
+ == Sat Aug 2 21:43:16 2003 Minero Aoki <aamine@loveruby.net>
326
+
327
+ * doc/address.rrd.m: use new ReferenceRD type designator.
328
+
329
+ * doc/config.rrd.m: ditto.
330
+
331
+ * doc/mail.rrd.m: ditto.
332
+
333
+ * doc/mailbox.rrd.m: ditto.
334
+
335
+ * doc/port.rrd.m: ditto.
336
+
337
+ * doc/tmail.rrd.m: ditto.
338
+
339
+ == Tue Jun 24 03:12:24 2003 Minero Aoki <aamine@as600.loveruby.net>
340
+
341
+ * lib/tmail/Makefile: rm -> rm -f.
342
+
343
+ * lib/tmail/Makefile: BSD make does not accept $<.
344
+
345
+ == Wed May 21 16:10:56 2003 Minero Aoki <aamine@loveruby.net>
346
+
347
+ * lib/tmail/mail.rb (set_disposition): tested.
348
+
349
+ * lib/tmail/textutils.rb: new const RFC2231_UNSAFE
350
+
351
+ * lib/tmail/encode.rb (encode_value): use RFC2231_UNSAFE.
352
+
353
+ * lib/tmail/encode.rb (encode_value): encoded hex must use capital A-F.
354
+
355
+ * test/testmail.rb: new method #test_set_disposition.
356
+
357
+ * test/testheader.rb: typo: attached -> attachment
358
+
359
+ * test/testheader.rb: test RFC2231 decoding.
360
+
361
+ == Mon May 19 07:34:01 2003 Minero Aoki <aamine@loveruby.net>
362
+
363
+ * sample/sendmail.rb: rewritten.
364
+
365
+ == Mon May 19 06:36:41 2003 Minero Aoki <aamine@loveruby.net>
366
+
367
+ * lib/tmail/mail.rb: include facade.rb.
368
+
369
+ * lib/tmail/facade.rb: removed.
370
+
371
+ * lib/tmail/utils.rb: move TextUtils modules in to tmail/textutils.rb.
372
+
373
+ * lib/tmail/textutils.rb: new file.
374
+
375
+ * lib/tmail/encode.rb: tmail/utils -> tmail/textutils
376
+
377
+ * lib/tmail/header.rb: ditto.
378
+
379
+ * lib/tmail/parser.y: ditto.
380
+
381
+ * lib/tmail/scanner.rb: ditto.
382
+
383
+ * lib/tmail/obsolete.rb: obsolete Mail.loadfrom, load_from.
384
+
385
+ * lib/tmail/obsolete.rb: Mail#from_address is not obsolete.
386
+
387
+ == Mon May 19 06:22:06 2003 Minero Aoki <aamine@loveruby.net>
388
+
389
+ * lib/tmail/Makefile: new task `clean' and `distclean'. [ruby-list:37687]
390
+
391
+ * ext/tmail/Makefile: ditto.
392
+
393
+ == Sun May 18 03:02:57 2003 Minero Aoki <aamine@loveruby.net>
394
+
395
+ * lib/tmail/Makefile: change racc log file name.
396
+
397
+ == Sun May 18 03:01:27 2003 Minero Aoki <aamine@loveruby.net>
398
+
399
+ * lib/tmail/parser.y: remove useless (last added) rule `received_spec'.
400
+
401
+ == Sun May 18 03:00:16 2003 Minero Aoki <aamine@loveruby.net>
402
+
403
+ * lib/tmail/parser.y (local): allow "foo.bar." and "foo..bar".
404
+
405
+ * lib/tmail/address.rb: allow empty "word".
406
+
407
+ * lib/tmail/address.rb (local): return '""' on empty local.
408
+
409
+ * test/testaddress.rb (test_parse__dot): test "foo.bar." and "foo..bar".
410
+
411
+ * test/testaddress.rb (test_parse__outofspec): Now empty local is legal.
412
+
413
+ == Sun May 18 02:56:07 2003 Minero Aoki <aamine@loveruby.net>
414
+
415
+ * Makefile (dist): version tag is like V1-2-3 ('_' -> '-')
416
+
417
+ == Sun May 18 02:04:34 2003 Minero Aoki <aamine@loveruby.net>
418
+
419
+ * lib/tmail/info.rb: update version.
420
+
421
+ * lib/tmail/scanner_r.rb: ditto.
422
+
423
+ * ext/tmail/scanner_c/scanner_c.c: ditto.
424
+
425
+ == Sun May 18 02:03:42 2003 Minero Aoki <aamine@loveruby.net>
426
+
427
+ * Makefile: new task `update'.
428
+
429
+ * Makefile (dist): export selected version.
430
+
431
+ == Sun May 18 01:00:47 2003 Minero Aoki <aamine@loveruby.net>
432
+
433
+ * lib/tmail/Makefile: fix quoting bug.
434
+
435
+ == Sun May 18 00:56:24 2003 Minero Aoki <aamine@loveruby.net>
436
+
437
+ * Makefile: define DEBUG=true on local compilation.
438
+
439
+ * lib/tmail/Makefile: add debug options if defined(DEBUG)
440
+
441
+ == Sun May 18 00:47:26 2003 Minero Aoki <aamine@loveruby.net>
442
+
443
+ * Makefile: put install.rb into packages.
444
+
445
+ * Makefile: put COPYING into packages.
446
+
447
+ == Sun May 18 00:44:28 2003 Minero Aoki <aamine@loveruby.net>
448
+
449
+ * Makefile: create lib/tmail/parser.rb before packing.
450
+
451
+ * lib/tmail/Makefile: use racc -E.
452
+
453
+ == Sun May 18 00:36:56 2003 Minero Aoki <aamine@loveruby.net>
454
+
455
+ * test/kcode.rb: "class RUNIT::TestCase" syntax is 1.8 feature.
456
+
457
+ == Sun May 18 00:28:22 2003 Minero Aoki <aamine@loveruby.net>
458
+
459
+ * Makefile: new task `doc'.
460
+
461
+ * Makefile: new task `site'.
462
+
463
+ * doc/index.html.m -> doc/index.rhtml.m
464
+
465
+ == Sat May 17 23:54:22 2003 Minero Aoki <aamine@loveruby.net>
466
+
467
+ * Remake: removed.
468
+
469
+ == Sat May 17 20:50:43 2003 Minero Aoki <aamine@loveruby.net>
470
+
471
+ * doc/address.rrd.m: add 'j' and '.' mark explicitly.
472
+
473
+ * doc/basics.rd.m: ditto.
474
+
475
+ * doc/config.rrd.m: ditto.
476
+
477
+ * doc/details.rd.m: ditto.
478
+
479
+ * doc/index.html.m: ditto.
480
+
481
+ * doc/mail.rrd.m: ditto.
482
+
483
+ * doc/mailbox.rrd.m: ditto.
484
+
485
+ * doc/port.rrd.m: ditto.
486
+
487
+ * doc/tmail.rrd.m: ditto.
488
+
489
+ * doc/usage.rd.m: ditto.
490
+
491
+ == Sat May 17 20:48:34 2003 Minero Aoki <aamine@loveruby.net>
492
+
493
+ * Makefile: cvs export option was wrong.
494
+
495
+ == Sat May 17 20:37:23 2003 Minero Aoki <aamine@loveruby.net>
496
+
497
+ * rename doc/
498
+ * -> doc/
499
+ * .m
500
+
501
+ == Sat May 17 20:13:40 2003 Minero Aoki <aamine@loveruby.net>
502
+
503
+ * Makefile: wrote .PHONY.
504
+
505
+ * ext/tmail/Makefile: wrote .PHONY.
506
+
507
+ == Fri May 16 22:55:52 2003 Minero Aoki <aamine@loveruby.net>
508
+
509
+ * Makefile: remove useless old code.
510
+
511
+ * lib/tmail/Makefile: new file.
512
+
513
+ * lib/tmail/stringio.rb: imported from amstd.
514
+
515
+ * ext/tmail/Makefile: new file.
516
+
517
+ == Fri May 16 22:27:28 2003 Minero Aoki <aamine@loveruby.net>
518
+
519
+ * .cvsignore -> lib/tmail/.cvsignore
520
+
521
+ == Fri May 16 22:23:57 2003 Minero Aoki <aamine@loveruby.net>
522
+
523
+ * accept setup.rb hierarchy in the repository.
524
+
525
+ == Fri May 16 21:18:44 2003 Minero Aoki <aamine@loveruby.net>
526
+
527
+ * encode.rb (concat_E): force to flush @text before process.
528
+
529
+ * encode.rb: update coding style.
530
+
531
+ * test/testmail.rb: test if comments are decoded/encoded.
532
+
533
+ == Fri May 16 21:01:55 2003 Minero Aoki <aamine@loveruby.net>
534
+
535
+ * test/testkcode.rb: new file.
536
+
537
+ * test/testmail.rb: use kcode.rb.
538
+
539
+ * test/testheader.rb: ditto.
540
+
541
+ == Fri May 16 20:58:01 2003 Minero Aoki <aamine@loveruby.net>
542
+
543
+ * mailbox.rb (MhMailbox#inspect): fix.
544
+
545
+ * mailbox.rb (UNIXMbox): new method UNIXMbox.static_new
546
+
547
+ * mailbox.rb (UNIXMbox): does update check of mail spool.
548
+
549
+ * mailbox.rb (UNIXMbox): fix temporal directory clean up.
550
+
551
+ == Fri May 16 20:50:40 2003 Minero Aoki <aamine@loveruby.net>
552
+
553
+ * facade.rb (Mail#friendly_from): use comments.
554
+
555
+ == Fri May 16 20:49:58 2003 Minero Aoki <aamine@loveruby.net>
556
+
557
+ * header.rb: update coding style.
558
+
559
+ == Fri May 16 20:44:49 2003 Minero Aoki <aamine@loveruby.net>
560
+
561
+ * parser.y (Parser#parse): decode comments.
562
+
563
+ * test/testheader.rb: test if comments are decoded.
564
+
565
+ == Fri May 16 20:42:59 2003 Minero Aoki <aamine@loveruby.net>
566
+
567
+ * mail.rb: rename method: Mail#select -> values_at
568
+
569
+ == Mon Apr 28 07:55:52 2003 Minero Aoki <aamine@loveruby.net>
570
+
571
+ * facade.rb (to, cc, bcc, from, reply_to): support AddressGroup.
572
+
573
+ * test/testmail.rb (to, cc, bcc, from, reply_to): ditto.
574
+
575
+ == Mon Apr 28 07:54:31 2003 Minero Aoki <aamine@loveruby.net>
576
+
577
+ * facade.rb: escape ']' following warning.
578
+
579
+ * scanner_r.rb: ditto.
580
+
581
+ == Sat Apr 5 01:40:44 2003 Minero Aoki <aamine@loveruby.net>
582
+
583
+ * Makefile: implement task `dist'.
584
+
585
+ == Sat Apr 5 01:24:08 2003 Minero Aoki <aamine@loveruby.net>
586
+
587
+ * b64 -> base64
588
+
589
+ * b64/tmbase64.c -> base64/base64.c
590
+
591
+ * base64/extconf.rb: Shared object name is 'base64.so'.
592
+
593
+ * encode.rb: require tmail/base64.rb explicitly.
594
+
595
+ == Sat Apr 5 01:22:40 2003 Minero Aoki <aamine@loveruby.net>
596
+
597
+ * Makefile: new task 'dist'.
598
+
599
+ == Sat Apr 5 01:02:40 2003 Minero Aoki <aamine@loveruby.net>
600
+
601
+ * Makefile: new file.
602
+
603
+ == Sat Apr 5 01:01:48 2003 Minero Aoki <aamine@loveruby.net>
604
+
605
+ * mv rmails.rb scanner_r.rb
606
+
607
+ * mv sc scanner_c
608
+
609
+ * mv sc/cmails.c scanner_c/scanner_c.c
610
+
611
+ * mv T test
612
+
613
+ == Sat Apr 5 00:30:53 2003 Minero Aoki <aamine@loveruby.net>
614
+
615
+ * mbox.rb: new file. Added for backward compatibility.
616
+
617
+ == Sat Apr 5 00:30:06 2003 Minero Aoki <aamine@loveruby.net>
618
+
619
+ * mbox.rb: renamed to mailbox.rb.
620
+
621
+ * mailbox.rb: new file.
622
+
623
+ == Sat Apr 5 00:30:06 2003 Minero Aoki <aamine@loveruby.net>
624
+
625
+ * mp.y -> parser.y
626
+
627
+ == Fri Nov 15 17:56:01 2002 Minero Aoki <aamine@loveruby.net>
628
+
629
+ * sc/mails.c: missing prototype.
630
+
631
+ = Version 0.10.6. Released Sun Nov 10 23:19:45 2002
632
+
633
+ == Sun Nov 10 23:19:17 2002 Minero Aoki <aamine@loveruby.net>
634
+
635
+ * doc/mail.rrd: format examples correctly.
636
+
637
+ == Sun Nov 10 22:59:08 2002 Minero Aoki <aamine@loveruby.net>
638
+
639
+ * doc/mail.rrd: add Mail#type_param, disposition_param.
640
+
641
+ == Sun Nov 10 22:37:42 2002 Minero Aoki <aamine@loveruby.net>
642
+
643
+ * address.rb: adjust to new coding rule.
644
+
645
+ * encode.rb: ditto.
646
+
647
+ * header.rb: ditto.
648
+
649
+ * mail.rb: ditto.
650
+
651
+ * mbox.rb: ditto.
652
+
653
+ * mp.y: ditto.
654
+
655
+ * net.rb: ditto.
656
+
657
+ * obsolete.rb: ditto.
658
+
659
+ * port.rb: ditto.
660
+
661
+ * rmails.rb: ditto.
662
+
663
+ == Sun Nov 10 22:37:01 2002 Minero Aoki <aamine@loveruby.net>
664
+
665
+ * T/testmail.rb: test whether the `default' arg is working.
666
+
667
+ * utils.rb: decode (wrongly encoded) parameters for Content-Disposition.
668
+
669
+ * T/testmail.rb: test MIME-B decode for disposition parameters.
670
+
671
+ * facade.rb: set_disposition should overwrites params.
672
+
673
+ * facade.rb: set_content_type should overwrites params.
674
+
675
+ == Sun Nov 10 20:46:25 2002 Minero Aoki <aamine@loveruby.net>
676
+
677
+ * facade.rb (set_content_type): reject wrong text like "text".
678
+
679
+ == Sun Nov 10 20:15:15 2002 Minero Aoki <aamine@loveruby.net>
680
+
681
+ * facade.rb: TMail::Mail#message_id, mime_version, content_type, sub_type, transfer_encoding,
682
+ disposition: default value did not work.
683
+
684
+ * facade.rb: new method TMail::Mail#disposition_params, disposition_param
685
+
686
+ == Sun Nov 10 20:13:35 2002 Minero Aoki <aamine@loveruby.net>
687
+
688
+ * mail.rb: new method TMail::Mail#each_port.
689
+
690
+ == Sun Nov 10 20:12:50 2002 Minero Aoki <aamine@loveruby.net>
691
+
692
+ * address.rb: type -> self.class
693
+
694
+ * header.rb: ditto.
695
+
696
+ * port.rb: ditto.
697
+
698
+ == Sun Nov 10 20:11:13 2002 Minero Aoki <aamine@loveruby.net>
699
+
700
+ * T/testmail.rb: check "Content-Type: text" (missing subtype).
701
+
702
+ == Sun Nov 10 20:10:22 2002 Minero Aoki <aamine@loveruby.net>
703
+
704
+ * sc/mails.c: Check_Type -> StringValue.
705
+
706
+ * sc/mails.c: reformat.
707
+
708
+ == Thu Nov 7 05:11:21 2002 Minero Aoki <aamine@loveruby.net>
709
+
710
+ * mbox.rb (UNIXMbox): fix typo. (thanks: Brian Fundakowski Feldman)
711
+
712
+ == Wed Aug 14 18:58:35 2002 Minero Aoki <aamine@loveruby.net>
713
+
714
+ * mail.rb: does not delay to read message body unless @port.reproducible?
715
+
716
+ * port.rb: new method Port#reproducible?
717
+
718
+ (thanks: Simon Conrad-Armes)
719
+
720
+ == Wed Aug 14 18:53:52 2002 Minero Aoki <aamine@loveruby.net>
721
+
722
+ * facade.rb: modify format.
723
+
724
+ = Version 0.10.5. Released Wed Jul 10 20:47:15 2002
725
+
726
+ == Wed Jul 10 20:25:16 2002 Minero Aoki <aamine@loveruby.net>
727
+
728
+ * facade.rb: new method Mail#header_string.
729
+
730
+ * facade.rb: new method Mail#type_params, type_param.
731
+
732
+ == Wed Jul 10 20:23:29 2002 Minero Aoki <aamine@loveruby.net>
733
+
734
+ * port.rb: reduce warnings.
735
+
736
+ == Wed Jul 10 20:23:03 2002 Minero Aoki <aamine@loveruby.net>
737
+
738
+ * b64/depend, sc/depend:
739
+ * .o depend on Makefile and
740
+ * .h
741
+
742
+ == Thu May 30 22:25:11 2002 Minero Aoki <aamine@loveruby.net>
743
+
744
+ * mbox.rb (Maildir#new_port): use unique sequence number instead of sleep & try. (patched by
745
+ Kikutani, Makoto)
746
+
747
+ * mbox.rb (Maildir#new_port): takes optional block to initialize mail file.
748
+
749
+ * port.rb (MaildirPort): new method #move_to_new, #move_to_cur.
750
+
751
+ == Thu May 30 21:28:52 2002 Minero Aoki <aamine@loveruby.net>
752
+
753
+ * header.rb: internal_new had not initialized @comment. (reported by Kikutani, Makoto)
754
+
755
+ * encode.rb (HFdecoder): quote phrase.
756
+
757
+ == Thu May 30 20:44:27 2002 Minero Aoki <aamine@loveruby.net>
758
+
759
+ * header.rb (ReturnPathHeader): support null address spec. (reported by Kikutani, Makoto)
760
+
761
+ == 0.10.4 (2002-05-17)
762
+
763
+ * Maildir が動いていなかった
764
+
765
+ * Maildir#each_port の渡すファイルが名前でソートされていたのを 時間順になるようにした (patched by Kukutani, Makoto)
766
+
767
+ * 空の Return-Path で落ちないようにした (reported by Morikawa-san) English: Maildir did not work correctly.
768
+
769
+ * Maildir#each_port yields filenames sorted by time, not filename. (patched by Kukutani, Makoto)
770
+
771
+ * allows empty return path (Return-Path: <>). (reported by Morikawa-san)
772
+
773
+ == 0.10.3 (2002-05-07)
774
+
775
+ * バージョン 1.0 で削除する予定のメソッドを obsolete.rb にまとめた。 これを require しないことで 1.0 の挙動をテストできる。(デフォルトでは require する)
776
+
777
+ * Mail の set 系メソッドほとんどがバグのため動かなかった* 新しいメソッド MhMailbox,UNIXMbox,Maildir#reverse_each_port (suggested by Takabayashi, Satoru)
778
+
779
+ * ドキュメントにある TMail::Mail#content_type が定義されていなかった (reported by yoshihisa masuda)
780
+
781
+ * Content-Type の main/sub のあとに ';' を許すようにした (suggested by Lars Christensen)
782
+
783
+ * Mutt の作る Maildir ファイルをパースできなかった* マルチパートメールが終端されていないとき、to_s で落ちる (reported by Kikutani, Makoto) English: devide obsolete methods into obsolete.rb.* Mail#to=, cc=, bcc=, ... did not work.* new methods MhMailbox,UNIXMbox,Maildir#reverse_each_port (suggested by Takabayashi, Satoru)
784
+
785
+ * TMail::Mail#content_type is described in document but not defined. (reported by yoshihisa masuda)
786
+
787
+ * allow ';' after content type. (suggested by Lars Christensen)
788
+
789
+ * TMail::Maildir fails to parse maildir filename created by Mutt.
790
+
791
+ * Unterminted multipart mail causes unexpected exception. (reported by Kikutani, Makoto)
792
+
793
+ == 0.10.2 (2002-02-21)
794
+
795
+ * UnstructuredHeader#to_s が落ちるバグを修正 (patched by Satoru Takabayashi)
796
+
797
+ * ReceivedHeader で、via があるのに by がないとき、 またはその逆のときに結果がおかしくなるバグを修正 (patched by Satoru Takabayashi)
798
+
799
+ * TMail::TextUtils.quote_phrase が落ちるバグを修正 (reported by Matt Armstrong) English: UnstructuredHeader#to_s did not work. (patched by Satoru Takabayashi)
800
+
801
+ * ReceivedHeader#to_s did not work when h.via exists and h.by not exists (and vice versa). (patched by Satoru Takabayashi)
802
+
803
+ * TMail::TextUtils.quote_phrase did not work. (reported by Matt Armstrong)
804
+
805
+ == 0.10.1 (2002-02-03)
806
+
807
+ * テストスクリプトをパッケージに追加。メールアドレスのパースに 関するテストスクリプトは大部分を RubyMail 0.2 (by Matt Armstrong) からもらいました。
808
+
809
+ * 新しいクラス TMail::Config
810
+
811
+ * 細かいパーサのバグをたくさん直した
812
+
813
+ * クオート中の生 JIS 文字列を許すようにした
814
+
815
+ * TMail::File
816
+
817
+ * Stream は削除 (通常の File で置きかえた)。 English: test scripts added. Many test cases are imported from RubyMail 0.2, written by Matt Armstrong.
818
+
819
+ * new class TMail::Config
820
+
821
+ * Minor parser bugs are
822
+ eliminated.
823
+
824
+ * Parser supports raw iso2022jp strings appeared in quoted-words.
825
+
826
+ * TMail::File
827
+
828
+ * Stream classes removed.
829
+
830
+ == 0.10.0 (2002-01-06)
831
+
832
+ * いくつか非互換の変更を加えた。 詳細はファイル Incompatibilities を参照のこと。
833
+
834
+ * amstd strscan を使うのをやめた
835
+
836
+ * mail.so は 1.7 最新では (問題なく動くが) ちょっと危険 English: changes many method features of TMail::Mail. see file Incompatibilities.
837
+
838
+ * TMail does not depend on amstd/strscan library.
839
+
840
+ * mails.so was riskful under latest 1.7
841
+
842
+ == 0.9.9 (2001-11-15)
843
+
844
+ * typo in tmail_attr_writer (patched by Shirai, Kaoru) English: typo in tmail_attr_writer (patched by Shirai, Kaoru)
845
+
846
+ == 0.9.8 (2001-09-07)
847
+
848
+ * 間違って 0.9.7 のアーカイブを上書きして壊してたのでその再修正 (thanks Masahiro Sekiya, Joseph McDonald)
849
+
850
+ * amstd/futils から fileutils に移行
851
+
852
+ * インストーラを setup.rb から install.rb (3.0.0) に移行 English: modify 0.9.7(2) pack miss. (thanks Masahiro Sekiya, Joseph McDonald)
853
+
854
+ * amstd/futils -> fileutils
855
+
856
+ * setup.rb -> install.rb 3.0.0
857
+
858
+ == 0.9.7 (2001-07-06)
859
+
860
+ * HeaderField#body が落ちるバグを修正
861
+
862
+ * Mail クラスのドキュメントを同期 English: modify bug in HeaderField#body
863
+
864
+ * sync TMail::Mail class reference manual
865
+
866
+ == 0.9.6 (2001-06-20)
867
+
868
+ * 新しいモジュール TMail::Base64
869
+
870
+ * デフォルトでは本体の改行コード変換を行わない English: new module TMail::Base64
871
+
872
+ * does not convert line terminator by default.
873
+
874
+ == 0.9.5 (2001-05-27)
875
+
876
+ * ヘッダエンコードで fold すると空白が消えるバグを修正 (thanks Akira Yamada)
877
+
878
+ * RFC2231 に半分対応 (fold に対応してない) (thanks Yasuhiro Arima) English: spaces were too removed when folding (thanks Akira Yamada)
879
+
880
+ * support RFC2231 (still imcomplete) (reported by Yasuhiro Arima)
881
+
882
+ == 0.9.4 (2001-04-25)
883
+
884
+ * インストーラをアップデート
885
+
886
+ * Mail.load
887
+
888
+ * Mail#strftime
889
+
890
+ * Ruby 1.4 に対応 English: update installer
891
+
892
+ * Mail.load
893
+
894
+ * Mail#strftime
895
+
896
+ * supports Ruby 1.4 again
897
+
898
+ == 0.9.3 (2001-03-10)
899
+
900
+ * インストーラをアップデート
901
+
902
+ * TMail::Mail.boundary のドキュメントが残ってた (TMail.new_boundary に移行)
903
+
904
+ * ヘッダの最後に改行がない場合を考慮 English: update installer
905
+
906
+ * remove TMail::Mail.boundary,msgid from document (use TMail.new_boundary, new_msgid)
907
+
908
+ * no need of NL at the tail of header
909
+
910
+ == 0.9.2 (2001-03-08)
911
+
912
+ * HF#inspect・Address#inspect の動作を変更
913
+
914
+ * Ruby バージョンのスキャナを KCODE に動的対応させた
915
+
916
+ * ライブラリのエントリポイントを 'tmail' に変更 ('tmail/tmail' も使えるが 1.0 あたりでなくすかも) English: HF#inspect, Address#inspect changed
917
+
918
+ * support SJIS in scanner
919
+
920
+ * library entry point is 'tmail' again (<- 'tmail/tmail')
921
+
922
+ == 0.9.1 (2001-03-02)
923
+
924
+ * マルチパートのパースにバグ English: bug in parsing MIME multipart
925
+
926
+ == 0.9.0 (2001-02-24)
927
+
928
+ * to_s, inspect の動作変更
929
+
930
+ * Mail#to, from などのデフォルト値が '' から nil に変更 English: change Mail#to_s/inspect action
931
+
932
+ * default value of Mail#to, from is now nil (not '')
933
+
934
+ == 0.8.18 (2001-01-27)
935
+
936
+ * push に引数のないところがあった
937
+
938
+ * Array#filter を使わないようにした (thanks l@kondara) English: modify push without arg
939
+
940
+ * do not use Array#filter (thanks l@kondara)
941
+
942
+ == 0.8.17 (2001-01-26)
943
+
944
+ * 日本語文字のエンコードで落ちるバグを修正 (thanks 小沢さん) English: modify MIME encoding bug
945
+
946
+ == 0.8.16 (2001-01-22)
947
+
948
+ * mails.so をスタティックリンクでも大丈夫なように修正 English: modify mails.so for static link
949
+
950
+ == 0.8.15 (2000-11-28)
951
+
952
+ * HFencoder のバグを修正 (thanks 前田修吾さん) English: debug HFencoder (thanks Shugo Maeda)
953
+
954
+ == 0.8.14 (2000-11-18)
955
+
956
+ * DateH#date= にバグ (thanks 前田修吾さん)
957
+
958
+ * StringH をデコードする時 EOL を消してから nkf に渡す
959
+
960
+ * Mail#ordered_each
961
+
962
+ * eof の時 StringPort#read_all、copy_to が失敗する English: bug in DateH#date= (thanks Shugo Maeda)
963
+
964
+ * gsub(EOL, '') before nkf
965
+
966
+ * Mail#ordered_each
967
+
968
+ * StringPort#read_all, copy_to failed if eof
969
+
970
+ == 0.8.13 (2000-09-19)
971
+
972
+ * MboxLoader が動かなかった (thanks 長沢研二さん)
973
+
974
+ * HeaderField#new_header English: MboxLoader was not work (reported by Kenji Nagasawa)
975
+
976
+ * HeaderField#new_header
977
+
978
+ == 0.8.12 (2000-07-13)
979
+
980
+ * scanner.rb の移動に対応 (thanks やまだあきらさん) English: racc/scanner.rb -> scanner.rb (thanks akira yamada)
981
+
982
+ == 0.8.11 (2000-05-29)
983
+
984
+ * HFencoder#value のエンコード部分が間違ってた
985
+
986
+ * TMail::CONTROL
987
+
988
+ * 日本語マニュアルが英語になっていた (泣。thanks るびきちさん) English: HFencoder#value encoding was wrong
989
+
990
+ * TMail::CONTROL
991
+
992
+ * all doc.ja/
993
+
994
+ * .html were ENGLISH (reported by rubikitch)
995
+
996
+ == 0.8.10 (2000-05-18)
997
+
998
+ * TMail.zonestr2i の返り値が間違っていた (thanks 刀野暢洋さん)
999
+
1000
+ * datetime の秒が捨てられていた English: return values of TMail.zonestr2i was wrong (patched by tachino Nobuhiro)
1001
+
1002
+ * seconds in date-time was wrongly discarded
1003
+
1004
+ == 0.8.9 (2000-05-16)
1005
+
1006
+ * インストーラのアップデートと修正 (thanks rubikitch) English: update installer (thanks rubikitch)
1007
+
1008
+ == 0.8.8 (2000-05-12)
1009
+
1010
+ * sample/sendmail
1011
+
1012
+ * TMail#date=, mime_version=
1013
+
1014
+ * phrase のクオートを修正
1015
+
1016
+ * amstd アップデート (1.7.0) English: sample/sendmail
1017
+
1018
+ * TMail#date=, mime_version=
1019
+
1020
+ * modify phrase quoting
1021
+
1022
+ * update amstd package (1.7.0)
1023
+
1024
+ == 0.8.7 (2000-05-08)
1025
+
1026
+ * mails.rb: = じゃなくて == (thanks rubikitch)
1027
+
1028
+ * Racc ランタイムアップデート (1.0)
1029
+
1030
+ * amstd アップデート (1.6.2) English: mails.rb: not =, == (thanks rubikitch)
1031
+
1032
+ * update Racc runtime (1.0)
1033
+
1034
+ * update amstd package (1.6.2)
1035
+
1036
+ == 0.8.6 (2000-03-17)
1037
+
1038
+ * Racc ランタイムアップデート (0.12)
1039
+
1040
+ * strscan アップデート (0.5.5) English: update Racc runtime (0.12)
1041
+
1042
+ * update strscan package (0.5.5)
1043
+
1044
+ == 0.8.5 (2000-03-09)
1045
+
1046
+ * accept がマルチパートの時変になるバグ修正
1047
+
1048
+ * HeaderField#illegal?, empty?
1049
+
1050
+ * 致命的なとこだけスレッドに対応した English: Mail#accept had bug when multipart
1051
+
1052
+ * HeaderField#illegal?, empty?
1053
+
1054
+ * thread safe (only critical part)
1055
+
1056
+ == 0.8.4 (2000-03-09)
1057
+
1058
+ * ruby 1.5 での Symbol 導入に対応 English: for Symbol in ruby 1.5
1059
+
1060
+ == 0.8.3 (2000-03-04)
1061
+
1062
+ * Address#local,domain
1063
+
1064
+ * phrase、value などの文字列化の精度を改善した English: Address#local,domain
1065
+
1066
+ * better string convertion
1067
+
1068
+ == 0.8.2 (2000-02-23)
1069
+
1070
+ * FilePort#filename は public English: FilePort#filename is public
1071
+
1072
+ == 0.8.1 (2000-02-20)
1073
+
1074
+ * アドレスがない時でも Mail#to,from などが落ちないよう修正 English: modify Mail#to, from... for no addresses
1075
+
1076
+ == 0.8.0 (2000-02-19)
1077
+
1078
+ * 全てのクラスを TMail モジュールの中で定義
1079
+
1080
+ * スキャナを拡張モジュールにした
1081
+
1082
+ * TMail::Mail#body_port
1083
+
1084
+ * TMail::Mail#encoded, decoded
1085
+
1086
+ * ヘッダの文字列化システムが大きく変わった English: moves all classes into module TMail
1087
+
1088
+ * make scanner ruby extention
1089
+
1090
+ * TMail::Mail#body_port
1091
+
1092
+ * TMail::Mail#encoded, decoded
1093
+
1094
+ == 0.7.5 (2000-01-09)
1095
+
1096
+ * Racc の最新バージョンに対応 English: modify for racc 0.10.8
1097
+
1098
+ == 0.7.4 (1999-11-10)
1099
+
1100
+ * 数字のみのアカウントが変になる
1101
+
1102
+ * inspect がまたバグってた
1103
+
1104
+ * port.rb の typo
1105
+
1106
+ * amstd に対応 (must.rb -> amstd/must.rb) (all modifications are patched by Shugo Maeda) English: digit only account was wrong handled
1107
+
1108
+ * TMail#inspect contained bug
1109
+
1110
+ * type in port.rb
1111
+
1112
+ * amstd (must.rb -> amstd/must.rb) (all modifications are patched by Shugo Maeda)
1113
+
1114
+ == 0.7.3 (1999-11-06)
1115
+
1116
+ * ホスト名なしのアドレスを通すように修正 (thanks ts さん)
1117
+
1118
+ * ファイルをディレクトリに入れた (tmail.rb -> tmail/tmail.rb)
1119
+
1120
+ * racc 0.10 に対応
1121
+
1122
+ * パッケージングがかなり変化 English: parse error on address without hostname (patched by ts)
1123
+
1124
+ * main files are in tmail/ (tmail.rb -> tmail/tmail.rb)
1125
+
1126
+ * modified for racc 0.10
1127
+
1128
+ * wrote setup.rb
1129
+
1130
+ == 0.7.2 (1999-09-29)
1131
+
1132
+ * タイムゾーン関連のバグを修正
1133
+
1134
+ * Received: がひとつだけになってしまうバグを修正
1135
+
1136
+ * to_s がいろいろエンバグしてたのを修正 (thanks 前田修吾さん) English: about timezone
1137
+
1138
+ * multi Received: handling was wrong
1139
+
1140
+ * to_s contains bugs (patched by Shugo Maeda)
1141
+
1142
+ == 0.7.1 (1999-09-28)
1143
+
1144
+ * 細かいバグ修正
1145
+
1146
+ * ドキュメントの更新を忘れてた
1147
+
1148
+ * コメントをとりだせるようにした English: modify little bugs
1149
+
1150
+ * update documents
1151
+
1152
+ * can handle comments for structured header
1153
+
1154
+ == 0.7.0 (1999-09-02)
1155
+
1156
+ * ヘッダオブジェクトの遅延生成
1157
+
1158
+ * mailp.y: FROM VIA なども ATOM として評価するようにした。atom 追加 English: lazy header contruction
1159
+
1160
+ == 0.6.0 (1999-07-31)
1161
+
1162
+ * 入出力を port.rb に一本化 English: use port.rb
1163
+
1164
+ == 0.5.2 (1999-06-26)
1165
+
1166
+ * strscan に対応
1167
+
1168
+ * buffer.rb をやめ extiter.rb を使用 English: use strscan
1169
+
1170
+ * use extiter.rb, not buffer.rb
1171
+
1172
+ == 0.5.1 (1999-06-14)
1173
+
1174
+ * mailp.y を Racc 0.9 に対応
1175
+
1176
+ * 死ぬ気で英語マニュアルをつけた English: rewrite mailp.y for racc0.9.x
1177
+
1178
+ * wrote English manual
1179
+
1180
+ == 0.5.0 (1999-06-03)
1181
+
1182
+ * Header クラスを廃止
1183
+
1184
+ * recycle.rb buffer.rb を使用 English: now Header class is obsolute
1185
+
1186
+ * use recycle.rb, buffer.rb
1187
+
1188
+ == 0.4.8 (1999-05-?)
1189
+
1190
+ * パーサの精度が向上
1191
+
1192
+ * タイプミスなどをいくつか修正 English: modify mail parser
1193
+
1194
+ * modify some typos
1195
+
1196
+ == 0.3.0 (?)
1197
+
1198
+ == 0.2.0 (1998-10-30)
1199
+
1200
+ * まだ mail modules と呼ばれていた English: still named "Mail Modules"
1201
+
1202
+ == 0.1.0 (1998-10-26) .
1203
+
1204
+ * bug fix
1205
+
1206
+ == 0.0.0 (1998-10-23) .
1207
+
1208
+ * first release