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
@@ -1,3 +1,39 @@
1
+ == Tue Jan 15 04:09:28 GMT 2008 Mikel Lindsaar <raasdnil@gmail.com>
2
+
3
+ * Added another test case from ActionMailer into test_quote.rb
4
+
5
+ == Tue Jan 15 01:50:23 GMT 2008 Mikel Lindsaar <raasdnil@gmail.com>
6
+
7
+ * Closed #17011 - test_quote.rb fails on 1.9 - (Mikel)
8
+
9
+ * Closed #17007 - test_header.rb fails on 1.9 - (Mikel)
10
+
11
+ * Closed #17008 - test_mail.rb fails on 1.9 - (Mikel)
12
+
13
+ == Sat Jan 12 04:13:47 GMT 2008 Mikel Lindsaar <raasdnil@gmail.com>
14
+
15
+ * Closed #17012 - test_scanner.rb fails on 1.9 - (Mikel and Kornelius Kalnbach)
16
+
17
+ * Closed #17010 - test_port.rb fails on 1.9 - (Mikel and Kornelius Kalnbach)
18
+
19
+ * Closed #17009 - test_mbox.rb fails on 1.9 - (Mikel and Kornelius Kalnbach)
20
+
21
+ * Closed #17006 - test_encode.rb fails on 1.9 - (Mikel and Kornelius Kalnbach)
22
+
23
+ * Closed #17005 - test_attachments.rb fails on 1.9 - (Mikel and Kornelius Kalnbach)
24
+
25
+ * Closed #17004 - test_address.rb fails on 1.9 - (Mikel and Kornelius Kalnbach)
26
+
27
+ == Sat Jan 12 02:07:24 GMT 2008 Mikel Lindsaar <raasdnil@gmail.com>
28
+
29
+ * Closed #17044 - Fixed Minero's TODO: "allow this type of header: "Minero A. <aamine@loveruby.net>"
30
+
31
+ * 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
32
+
33
+ == Sat Jan 10 10:13:12 GMT 2008 Mikel Lindsaar <raasdnil@gmail.com>
34
+
35
+ === TMail 1.2.1 Released
36
+
1
37
  == Thu Jan 10 15:09:02 GMT 2008 Mikel Lindsaar <raasdnil@gmail.com>
2
38
 
3
39
  * 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
@@ -0,0 +1,534 @@
1
+ = Subversion Changelog
2
+
3
+ == 2008-03-01 mikel
4
+
5
+ * Closed #18516 - Fix TMail::Mail#preamble, and add #preamble= (Charles Lowe) (233)
6
+ * Applied patch #18515 to remove ftools from test case (Charles Lowe) (232)
7
+ * A lot of documentation patches to the mail and utils and net files. Also added "log/BugTrackingLog.txt" for myself as my bug log got clobbered by the new changelog.txt format. (231)
8
+
9
+ == 2008-02-22 transami
10
+
11
+ * Update the doc feature of setup.rb.
12
+ * installing rdoc labels the directory config.docdir/ruby-{package}/.
13
+ * generateing rdocs places them in doc/rdoc.
14
+ * this was done to prevent potential name clashes with other system docs. (230)
15
+
16
+ == 2008-02-22 mikel
17
+
18
+ * Added a lot more documentation, getting there (229)
19
+
20
+ == 2008-02-21 transami
21
+
22
+ * Added homepage entry to project file. (228)
23
+ * Fixed missing rake task entry in setup.rb. (227)
24
+
25
+ == 2008-02-19 transami
26
+
27
+ * Moved script/ to work/ --as reap and setup.rb should now suffice. (226)
28
+ * Added a work directory. This is a sort of code depot. (225)
29
+ * Add some entries to svn:ignore. (224)
30
+ * Fixed setup.rb uninstaller. (223)
31
+ * Updated Rakefile and setup.rb. (222)
32
+
33
+ == 2008-02-18 transami
34
+
35
+ * Update Rakefile fixing test bug. (221)
36
+ * Added new "uber" Rakefile. (220)
37
+ * Moved doc to site. (219)
38
+
39
+ == 2008-02-14 mikel
40
+
41
+ * Moving changelog to a capital (218)
42
+ * fixing changelog (217)
43
+
44
+ == 2008-02-13 mikel
45
+
46
+ * Removing bad add (SVN is trying to add this twice to my repo) (216)
47
+
48
+ == 2008-02-10 transami
49
+
50
+ * Added test log. (215)
51
+ * Update to .reap to add test/ to loadpath when testing. (214)
52
+ * Added xml log and update CHANGES. (213)
53
+ * Touched up changelogs. (212)
54
+ * Add make script and convert others to pure ruby. (211)
55
+ * Remove old ratch scripts. (210)
56
+ * Update metadata. (209)
57
+
58
+ == 2008-01-17 mikel
59
+
60
+ * Updated development section (208)
61
+ * Updated website to add "contributing" to the list (207)
62
+ * More website updates (206)
63
+ * Update reference index to take some confusion out (205)
64
+ * Cleaning up the docs more - adding mailing list (204)
65
+ * Cleaning up the docs more - adding quickstart guide (203)
66
+ * Cleaning up the docs more (202)
67
+ * Adding some documentation to the website (201)
68
+ * Added update to the website and an extra test to test_quote taken from the ActionMailer version of TMail (200)
69
+
70
+ == 2008-01-15 mikel
71
+
72
+ * Updated index page (199)
73
+ * Updated website for 1.9 compatibility (198)
74
+ * That's 1.9 compatibility done (197)
75
+ * 1.9 Patching - down to two tests failing (196)
76
+
77
+ == 2008-01-12 mikel
78
+
79
+ * Updated changelog with latest patches (195)
80
+ * Cleaned up how address.rb handles quoting strings and arrays (194)
81
+ * Updating to handle Ruby 1.9 - Three tests failing at the moment (193)
82
+ * Closed #17044 and #17045 ALL TESTS PASSING!!!! (192)
83
+
84
+ == 2008-01-11 transami
85
+
86
+ * Updated pack tasks (note these are now for 0.5 series of ratch) (186)
87
+ * Gems requires author field to be an array (probably a gems bug) (184)
88
+
89
+ == 2008-01-11 mikel
90
+
91
+ * Closes #15157 - The email address "@"@test.com does not parse. It now does (mikel) (191)
92
+ * Added Rakefile for testing only (190)
93
+ * Ready for gem (188)
94
+ * Fixed version (187)
95
+ * Final commit for version 1.2.1 (185)
96
+ * VERSION 1.2.1 (183)
97
+ * VERSION 1.2.1 (182)
98
+ * Updated test_quote.rb to make it copmpatible with Ruby 1.9 (181)
99
+
100
+ == 2008-01-10 mikel
101
+
102
+ * Updated logs to reflect recent changes (180)
103
+ * Added tests for UNIXMbox.fromaddr method. 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 (179)
104
+ * Fixed TMail::HeaderField.new_from_port 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. (178)
105
+
106
+ == 2007-12-25 transami
107
+
108
+ * Added stamp script. (177)
109
+ * Updated tmail.roll for version 1.2.1. (176)
110
+ * Moved ROLLRC to tmail.roll. (175)
111
+
112
+ == 2007-12-25 mikel
113
+
114
+ * Applied Mr Aoki's patch from TMail revision 3674 - Handles the incorrect decoding of attachments (174)
115
+ * Applied patch from Mike Mondragon handling quote boundary being greedy on content-type header fields. (173)
116
+ * Removed the mailscanner directory (172)
117
+ * moved mailscanner.c file to tmailscanner.c (171)
118
+ * Changed name of the mailscanner directory to tmailscanner (170)
119
+ * Change the name of mailscanner to tmailscanner to handle a copyright issue. MailScanner is a copyrighted name (169)
120
+ * Included a require 'stringio' to hack resolve a load order problem when running autotest (168)
121
+
122
+ == 2007-12-14 mikel
123
+
124
+ * Added links into all the pages back to RDoc and also added notes to the index page. (164)
125
+
126
+ == 2007-12-14 transami
127
+
128
+ * Added package tasks. Fixe prepare task. (167)
129
+ * Minor enhancement to publish task to make it's usage clearer. (166)
130
+ * Moved script/config.yaml ti meta/ per Ratch 0.4.0. (165)
131
+
132
+ == 2007-12-02 transami
133
+
134
+ * Updated release script (require newest release of ratch) (160)
135
+
136
+ == 2007-12-02 mikel
137
+
138
+ * 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. (163)
139
+ * Fixed error in release notes for tag 1.2.0 (162)
140
+ * added news item (159)
141
+ * Updated version number (157)
142
+
143
+ == 2007-12-01 transami
144
+
145
+ * Couple more additions. (156)
146
+ * Err.. sorry forgot to add some very importnat files! (155)
147
+
148
+ == 2007-11-30 mikel
149
+
150
+ * Updated changelog and history (153)
151
+ * Fixed scanner.rb so that it passes the same tests as scanner.c. Also fixed up all the tests to require test_helper.rb so that the load path is correct. (152)
152
+
153
+ == 2007-11-30 transami
154
+
155
+ * Some task updates. (154)
156
+
157
+ == 2007-11-29 transami
158
+
159
+ * Update Hisotry.txt, NOTES, etc. in prep for release. (151)
160
+ * Fixed test script and updated MANIFEST. (150)
161
+ * Renamed scanner_c to mailscanner. (149)
162
+ * Prepare for next release. (148)
163
+ * Adjusted scanner libs for renamed extension. (147)
164
+ * Renamed scanner_c.c to mailscanner.c. (146)
165
+ * Moved scanner_c/ to mailscanner/. (145)
166
+ * Updated meta/ files. (144)
167
+
168
+ == 2007-11-22 transami
169
+
170
+ * Updated history log. (143)
171
+ * Updated scripts to reflect removed base64 lib. (142)
172
+ * Remove base64 c extension, as it's speed benefit was negligable. (141)
173
+
174
+ == 2007-11-21 transami
175
+
176
+ * Fixed bug in base64_c.c. (140)
177
+ * update to base64 benchmark (139)
178
+ * Added base64 benchmark. (138)
179
+ * Moved manifest to meta/ --in future this will be auto generated. (137)
180
+
181
+ == 2007-11-20 mikel
182
+
183
+ * updated web page css (136)
184
+ * updated style on page (135)
185
+
186
+ == 2007-11-19 mikel
187
+
188
+ * Added a bunch of documentation to interface.rb (134)
189
+
190
+ == 2007-11-18 transami
191
+
192
+ * Fixed scanner_c load error. (133)
193
+ * Updated Manifest. (132)
194
+ * Adjustments for base64_c. (131)
195
+ * Completed compile rearrangements. (130)
196
+ * Moved ext/ file to proper place. (129)
197
+ * Added needed ext/ dirs. (128)
198
+ * Round about rearrange, sorry. (127)
199
+ * Move Makefile. (126)
200
+ * Rearranged ext/. (125)
201
+ * Working on corect base64 requiring and test passing. (124)
202
+ * Minor add ext/ to test includes (should make an option) (123)
203
+
204
+ == 2007-11-18 mikel
205
+
206
+ * Added a log more documentation to the interface.rb file - Mikel (122)
207
+
208
+ == 2007-11-17 mikel
209
+
210
+ * Added google analytics urchin to every page as well as adding tracker codes to the outbound links. Also added blog page. (121)
211
+
212
+ == 2007-11-16 transami
213
+
214
+ * Upped version on roll file in anticipation of next release. (120)
215
+ * Quick fix just to make base64 work. (119)
216
+
217
+ == 2007-11-15 mikel
218
+
219
+ * Closed ticket 15445 - tmail not returning a mail object on create_forward
220
+ Closed ticket 15643 - tmail not returning from address if reply_to is set to nil when you ask a mail object for reply_addresses
221
+ Added a lot of documentation to the interface.rb file (115)
222
+ * updated index page (114)
223
+
224
+ == 2007-11-15 transami
225
+
226
+ * Fixed compile process. (118)
227
+ * Improved test and compile scripts. (116)
228
+
229
+ == 2007-11-12 transami
230
+
231
+ * Moved bat/ to script/. (113)
232
+
233
+ == 2007-11-09 transami
234
+
235
+ * Additional tasks. (112)
236
+
237
+ == 2007-11-08 mikel
238
+
239
+ * Added links to the website and updated the notes file. (108)
240
+
241
+ == 2007-11-08 transami
242
+
243
+ * Started versoin 1.1.2. (111)
244
+ * Added zip format to roll file. (110)
245
+ * Fixed pubish and rdoc config settings. (109)
246
+ * Updated Manifest. (107)
247
+ * Added a clobber/distclean batch file. (106)
248
+ * Should be final fine-tuning to extconf.rb (105)
249
+
250
+ == 2007-11-07 transami
251
+
252
+ * Finally! Finally! Got Windows to install. (104)
253
+ * Force Windows into no extension mode. (103)
254
+ * Added log/Note.txt (this is the note for release). (102)
255
+ * Added changelog task (still needs one piece). (101)
256
+ * Renamed TODO to Todo.txt (oh, the struggle for consistancy). (100)
257
+ * Added final note to History.txt. (99)
258
+ * Fine-tuning extconf.rb and require_arch.rb. (98)
259
+ * Create fallback gem install. (97)
260
+ * Changed RUBYGEMS_NO_COMPILE to NORUBYEXT. (96)
261
+ * Updated manifest. Capitalized information files (not sure which I like best). (95)
262
+ * Finish organization clean-up. (94)
263
+ * Add clobber subtasks. (93)
264
+ * Updated require_arch and removed linux binaries. (92)
265
+
266
+ == 2007-11-06 transami
267
+
268
+ * Updated manifest. (91)
269
+ * Updated extconf.rb files to copy extension to arch directories. (90)
270
+ * Updated version.rb. (89)
271
+ * Added index.rb for Rolls. (88)
272
+ * Added require_arch.rb. (87)
273
+ * Minor organization details (yet to be fully determined). (86)
274
+ * Added config_dir setting to extconf.rb (although it dodn't seem to do any good). (85)
275
+ * Added platform tiers to lib/tmail/. (84)
276
+ * Moved www to doc/ (RDocs go in doc/rdoc). (83)
277
+ * Removed tasks directory. (82)
278
+ * Added tag ans compile batch files. (81)
279
+ * Removed Rakefile. (80)
280
+ * Removed Manifest.txt (will be replaced by new manifest). (79)
281
+ * Removed config/ directory. (78)
282
+ * Removed script/ dir. (77)
283
+ * Added compilation batch script, and require_arch.rb. (76)
284
+
285
+ == 2007-11-05 transami
286
+
287
+ * Added platforms to roll file. Alaso remove doc/. (75)
288
+
289
+ == 2007-11-04 mikel
290
+
291
+ * Added some documentation to the lib/mail.rb file and also updated the quickstart guide to reflect the fact we are now a gem.
292
+ Also added another test case to make sure a bug that was reported in ruby-talk relating to TMail had nothing to do with TMail. (74)
293
+
294
+ == 2007-11-01 mikel
295
+
296
+ * * Closed 1524 - 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 (73)
297
+
298
+ == 2007-10-31 mikel
299
+
300
+ * * Put in an escape clause in the def fold method of class Encode to skip folding of any X- header line. (72)
301
+
302
+ == 2007-10-30 transami
303
+
304
+ * Added separate MANIFEST file, unfortunately it varies slightly from Hoe's. (71)
305
+ * Minor update to header of README. (70)
306
+ * Added formats to roll file, for packaging with box. (69)
307
+ * Added initial set of build tools in bat/. (68)
308
+ * Updated website, adding rdocs. (67)
309
+ * Up'd version to 1.1.1. (66)
310
+ * Minor update to roll file. (65)
311
+ * Added bat/ folder, which we can use ratch scripts for now. (64)
312
+ * Changed extension or roll file (was index). (63)
313
+
314
+ == 2007-10-29 transami
315
+
316
+ * Added meta directory and index file. (61)
317
+ * Removed extraneous lib directory from website. (60)
318
+ * Updates to website.
319
+ * Cleaned up how ruby code was diplayed.
320
+ * Cleaned up how shell code was displayed.
321
+ * Improved toplevel menu. (59)
322
+
323
+ == 2007-10-29 mikel
324
+
325
+ * TMail - Index page update the news (62)
326
+ * Updated against the code that is currently on the website (58)
327
+ * Removed an old make file and tagged TMail 1.1.0 (57)
328
+ * * Updated version (56)
329
+ * * 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 ) (55)
330
+
331
+ == 2007-10-28 mikel
332
+
333
+ * * Made the package into a GEM! (54)
334
+
335
+ == 2007-10-27 mikel
336
+
337
+ * * Preparing for export as a GEM, final changes for the 0.12 release (52)
338
+ * * 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 [Mikel] (50)
339
+ * * 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. (49)
340
+
341
+ == 2007-10-27 transami
342
+
343
+ * Update usage.html, changed mail.encoded to mail.to_s. (51)
344
+
345
+ == 2007-10-26 mikel
346
+
347
+ * ==== Fri Oct 26 02:21:13 GMT 2007 Mikel Lindsaar <raasdnil@gmail.com>
348
+
349
+ * Deleted incompatabilities from the root folder (it is in www/outdated) (48)
350
+
351
+ == 2007-10-25 mikel
352
+
353
+ * ==== Thu Oct 25 05:52:02 GMT 2007 Mikel Lindsaar <raasdnil@gmail.com>
354
+
355
+ * Moved facade.rb to interface.rb - updated mail.rb to reflect this (40)
356
+ * ==== Thu Oct 25 05:39:09 GMT 2007 Mikel Lindsaar <raasdnil@gmail.com>
357
+
358
+ * Totally rewrote the README file to be in RDoc format and provide a beginning place for the RDoc documentation
359
+
360
+ * Cleaned up the root directory of all the spurious files.
361
+
362
+ * Merged the Changelog files and made it into RDoc format.
363
+
364
+ * Cleaned up the Bugs and TODO files
365
+
366
+ * Added RDoc headers to each source file.
367
+
368
+ * Started doing the RDoc on the utils.rb file (39)
369
+ * Thu Oct 25 03:18:18 GMT 2007 Mikel Lindsaar <raasdnil@gmail.com>
370
+
371
+ * Cleaned up the tree some in terms of documents. Merged the
372
+ change logs, moved the 0.9 to 0.10 docs into the outdated
373
+ folder, modified the TODO (38)
374
+ * Mon Oct 25 13:06:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
375
+
376
+ * Moved doc directory to WWW so that running RDoc by default doesn't
377
+ overwrite all the files. (37)
378
+ * Mon Oct 25 11:12:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
379
+
380
+ * Added quickstart page to WWW as well as applied styling
381
+ to all existing pages in the site.
382
+
383
+ * Uploaded site to rubyforge (35)
384
+
385
+ == 2007-10-25 transami
386
+
387
+ * Adjusted some colors. (47)
388
+ * Moved BUGS and DEPENDS to outdated. (46)
389
+ * Move old doc files (Having trouble with SVN) (45)
390
+ * Moved NEWS to outdated. It's just too old to be of much use. (44)
391
+ * Added jquery.js to website. (43)
392
+ * Uncluttered trunk by moving some documentation files. (42)
393
+ * Contined work on website -- using jQuery to keep DRY. (41)
394
+
395
+ == 2007-10-24 transami
396
+
397
+ * Closed div end-tag in index.html. (34)
398
+ * Updated header of index.html and added some new images. (33)
399
+ * Added new website (rough-draft). (32)
400
+ * Moved doc/doc.ja and doc/rdd to outdated/. (31)
401
+ * Added doc/outdated to hold old documentation files. (30)
402
+ * Moved doc/doc.en/ to doc/manual/. (29)
403
+ * Edited manual/index.html. (28)
404
+ * Moved doc.en/, doc.ja/ and rdd/ to new doc/ directory. (27)
405
+ * Moved doc to rdd. (26)
406
+
407
+ == 2007-10-24 mikel
408
+
409
+ * Mon Oct 24 22:40:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
410
+
411
+ * Updated website to reflect release. (23)
412
+ * ==========================================
413
+ Version 0.11.0. Released
414
+ Mon Oct 24 21:14:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
415
+ ========================================== (21)
416
+ * Moving 0.11 branch into trunk (20)
417
+ * Mon Oct 24 17:50:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
418
+
419
+ * Remaining failing tests are one encoding problem with
420
+ relating to RFC 2231 and another problem where special
421
+ characters are not properly quoted if they are the name
422
+ portion of an email address (ie, TMail does not handle
423
+ the address <"@"@example.com> properly)
424
+
425
+ * Closed #14964 - The TMail from ActionMailer Preview Release
426
+ 2.0 is now fully merged into TMail branch 0.11.
427
+ All previous tests and examples relating to TMail that
428
+ were part of ActionMailer 2.0 Preview Release now pass.
429
+
430
+ * Closed #15008 - Fixed handling of multipart content type
431
+ headers. Now tested against many types of email.
432
+ TMails' behaviour now is to take any boundary type, if
433
+ it contains illegal characters, it will wrap it in ""
434
+ when requesting the content type by mail['content-type]
435
+ you will receive it unquoted, when outputting the email
436
+ to_s as a whole you will receive the content-type field
437
+ with the boundary section quoted if it contains illegal
438
+ characters.
439
+
440
+ * Replaced id with object_id line 221 in stringio.rb (18)
441
+ * Fix up on revision 16 - forgot to add in files (17)
442
+ * Mon Oct 24 15:35:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
443
+
444
+ * Copied over the TMail/*.rb files from the TRUNK version of Rails
445
+ ActionMailer (2.0 Preview Release) into branch for 0.11.0
446
+
447
+ * Fixed up many broken tests so that they pass (testing errors,
448
+ including wrong paths etc)
449
+
450
+ * Closed #15002 - Fixed error where handling of MIME content-type
451
+ headers that had quoted parameters due to including RFC 2045
452
+ special characters were being stripped of their quotation marks
453
+ when the mail object was sent "to_s". Now any quotation marks
454
+ that were in the original are maintained in the result
455
+
456
+ * Closed #14999 - TMail now "fixes" illegal Content-Type bondary=
457
+ parameter by wrapping it in double quotation marks per RFC 2045
458
+ and also produces this in the mail.to_s method
459
+
460
+ * Added in tmail/core_extensions.rb which installs Object.blank?
461
+ unless Object already responds_to?(:blank?) ie, we are already
462
+ in a Rails environment.
463
+
464
+ * Updated names of the test files as a start to cleaning up the
465
+ tests directory. (16)
466
+
467
+ == 2007-10-23 mikel
468
+
469
+ * Mon Oct 24 0:40:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
470
+
471
+ * Copied over Rails modified TMail into branch for 0.11. (15)
472
+ * Mon Oct 23 17:13:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
473
+
474
+ * Applied Rails revisions 965. Protect against nil strings and
475
+ empty conversion bases.
476
+
477
+ * Applied Rails revisions 964. Made the unquoted string and
478
+ body the default. (14)
479
+ * Mon Oct 23 14:56:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
480
+
481
+ * Applied Rails revision 919. Don't fail on an empty body or
482
+ empty subject line, default to an empty string body or subject (13)
483
+ * Mon Oct 23 14:56:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
484
+
485
+ * Applied Rails revision 918. Don't include blank attachments
486
+ in the email (12)
487
+ * Mon Oct 23 14:56:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
488
+
489
+ * Applied Rails ticket #916. Handles better quoting and handling
490
+ of attachments. (11)
491
+ * Mon Oct 23 14:41:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
492
+
493
+ * Merged net.rb - code clean up - Closes Task#1736 (10)
494
+ * Mon Oct 23 14:35:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
495
+
496
+ * Merged stringio.rb - code clean up - Closes Task#1742 (9)
497
+ * Mon Oct 23 14:23:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
498
+
499
+ * Merged config.rb - code clean up - Closes Task#1726 (8)
500
+ * Mon Oct 23 14:01:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
501
+
502
+ * Merged address.rb - code clean up - Closes Task#1723
503
+
504
+ * Copied in the Rails test Email fixtures
505
+
506
+ * Added in outlook test email for invalid boundary type (7)
507
+
508
+ == 2007-10-22 mikel
509
+
510
+ * Mikel Lindsaar
511
+ Updated version for release (4)
512
+ * Mon Oct 22 22:00:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
513
+
514
+ * General cleanup - converted all files to UTF-8 from the various
515
+ encodings. (3)
516
+ * Mon Oct 22 22:00:00 2007 Mikel Lindsaar <raasdnil@gmail.com>
517
+
518
+ * Fixed all tests so that they now pass - were problems with the times
519
+ being checked were hard coded for Tokyo time and so would fail in a
520
+ different time zone. All of the tests that were failing due to this
521
+ now pass.
522
+
523
+ * Fixed handling of MIME content-type header handling so that TMail now
524
+ quotes any content-type it finds to contain invalid characters per
525
+ RFC 2045 which are "/", "?" or "=". Per RFC, handling is to put
526
+ double quotes are put around it with the quote_boundary method, we
527
+ now do this.
528
+
529
+ * Updated Copyright year for Minero Aoki (2)
530
+
531
+ == 2007-09-26 transami
532
+
533
+ * initial import (1)
534
+