tmail 1.2.3.1 → 1.2.6

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