tmail 1.2.3.1 → 1.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README +10 -0
- data/ext/tmailscanner/tmail/tmailscanner.c +39 -8
- data/lib/tmail.rb +1 -0
- data/lib/tmail/address.rb +6 -40
- data/lib/tmail/attachments.rb +41 -22
- data/lib/tmail/encode.rb +9 -0
- data/lib/tmail/header.rb +5 -3
- data/lib/tmail/interface.rb +40 -3
- data/lib/tmail/mail.rb +3 -3
- data/lib/tmail/mailbox.rb +3 -2
- data/lib/tmail/net.rb +3 -1
- data/lib/tmail/parser.rb +204 -620
- data/lib/tmail/parser.y +38 -3
- data/lib/tmail/quoting.rb +38 -1
- data/lib/tmail/utils.rb +28 -4
- data/lib/tmail/vendor/rchardet-1.3/COPYING +504 -0
- data/lib/tmail/vendor/rchardet-1.3/README +12 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet.rb +67 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/big5freq.rb +927 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/big5prober.rb +42 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/chardistribution.rb +237 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/charsetgroupprober.rb +112 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/charsetprober.rb +75 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/codingstatemachine.rb +64 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/constants.rb +42 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/escprober.rb +90 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/escsm.rb +244 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/eucjpprober.rb +88 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/euckrfreq.rb +596 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/euckrprober.rb +42 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/euctwfreq.rb +430 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/euctwprober.rb +42 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/gb2312freq.rb +474 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/gb2312prober.rb +42 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/hebrewprober.rb +289 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/jisfreq.rb +570 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/jpcntx.rb +229 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/langbulgarianmodel.rb +229 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/langcyrillicmodel.rb +330 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/langgreekmodel.rb +227 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/langhebrewmodel.rb +202 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/langhungarianmodel.rb +226 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/langthaimodel.rb +201 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/latin1prober.rb +147 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/mbcharsetprober.rb +89 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/mbcsgroupprober.rb +47 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/mbcssm.rb +542 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/sbcharsetprober.rb +124 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/sbcsgroupprober.rb +58 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/sjisprober.rb +88 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/universaldetector.rb +166 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/utf8prober.rb +87 -0
- data/lib/tmail/version.rb +1 -1
- data/setup.rb +2 -2
- data/test/fixtures/apple_unquoted_content_type +44 -0
- data/test/fixtures/inline_attachment.txt +2095 -0
- data/test/fixtures/iso_8859_1_email_without_encoding_and_message_id.txt +16 -0
- data/test/fixtures/mailbox.zip +0 -0
- data/test/fixtures/marked_as_iso_8859_1_but_it_is_utf_8.txt +33 -0
- data/test/fixtures/marked_as_utf_8_but_it_is_iso_8859_1.txt +56 -0
- data/test/fixtures/raw_email_bad_time +62 -0
- data/test/fixtures/raw_email_double_at_in_header +14 -0
- data/test/fixtures/raw_email_only_attachment +17 -0
- data/test/fixtures/raw_email_string_in_date_field +17 -0
- data/test/fixtures/raw_email_trailing_dot +21 -0
- data/test/fixtures/raw_email_with_quoted_attachment_filename +60 -0
- data/test/fixtures/raw_email_with_wrong_splitted_multibyte_encoded_word_subject +15 -0
- data/test/fixtures/the_only_part_is_a_word_document.txt +425 -0
- data/test/fixtures/unquoted_filename_in_attachment +177 -0
- data/test/test_address.rb +114 -92
- data/test/test_attachments.rb +84 -1
- data/test/test_encode.rb +54 -0
- data/test/test_header.rb +60 -2
- data/test/test_mail.rb +22 -15
- data/test/test_mbox.rb +12 -3
- data/test/test_port.rb +13 -9
- data/test/test_quote.rb +9 -0
- data/tmail.gemspec +34 -0
- metadata +68 -167
- data/MANIFEST +0 -191
- data/log/BugTrackingLog.txt +0 -1231
- data/log/Changelog.txt +0 -534
- data/log/Fixme.txt +0 -6
- data/log/Testlog.txt +0 -2340
- data/log/Todo.txt +0 -30
- data/log/fixme.rdoc +0 -6
- data/meta/MANIFEST +0 -128
- data/meta/VERSION +0 -1
- data/meta/project.yaml +0 -30
- data/meta/unixname +0 -1
- data/sample/bench_base64.rb +0 -48
- data/sample/data/multipart +0 -23
- data/sample/data/normal +0 -29
- data/sample/data/sendtest +0 -5
- data/sample/data/simple +0 -14
- data/sample/data/test +0 -27
- data/sample/extract-attachements.rb +0 -33
- data/sample/from-check.rb +0 -26
- data/sample/multipart.rb +0 -26
- data/sample/parse-bench.rb +0 -68
- data/sample/parse-test.rb +0 -19
- data/sample/sendmail.rb +0 -94
- data/site/contributing/index.html +0 -183
- data/site/css/clean.css +0 -27
- data/site/css/layout.css +0 -31
- data/site/css/style.css +0 -60
- data/site/download/index.html +0 -61
- data/site/img/envelope.jpg +0 -0
- data/site/img/mailman.gif +0 -0
- data/site/img/stamp-sm.jpg +0 -0
- data/site/img/stamp.jpg +0 -0
- data/site/img/stampborder.jpg +0 -0
- data/site/img/tfire.jpg +0 -0
- data/site/img/tmail.png +0 -0
- data/site/index.html +0 -270
- data/site/js/jquery.js +0 -31
- data/site/log/Changelog.xsl +0 -33
- data/site/log/changelog.xml +0 -1677
- data/site/outdated/BUGS +0 -3
- data/site/outdated/DEPENDS +0 -1
- data/site/outdated/Incompatibilities +0 -89
- data/site/outdated/Incompatibilities.ja +0 -102
- data/site/outdated/NEWS +0 -9
- data/site/outdated/README.ja +0 -73
- data/site/outdated/doc.ja/address.html +0 -275
- data/site/outdated/doc.ja/basics.html +0 -405
- data/site/outdated/doc.ja/config.html +0 -49
- data/site/outdated/doc.ja/details.html +0 -146
- data/site/outdated/doc.ja/index.html +0 -39
- data/site/outdated/doc.ja/mail.html +0 -793
- data/site/outdated/doc.ja/mailbox.html +0 -265
- data/site/outdated/doc.ja/port.html +0 -95
- data/site/outdated/doc.ja/tmail.html +0 -58
- data/site/outdated/doc.ja/usage.html +0 -202
- data/site/outdated/rdd/address.rrd.m +0 -229
- data/site/outdated/rdd/basics.rd.m +0 -275
- data/site/outdated/rdd/config.rrd.m +0 -26
- data/site/outdated/rdd/details.rd.m +0 -117
- data/site/outdated/rdd/index.rhtml.m +0 -54
- data/site/outdated/rdd/mail.rrd.m +0 -701
- data/site/outdated/rdd/mailbox.rrd.m +0 -228
- data/site/outdated/rdd/port.rrd.m +0 -69
- data/site/outdated/rdd/tmail.rrd.m +0 -33
- data/site/outdated/rdd/usage.rd.m +0 -247
- data/site/quickstart/index.html +0 -69
- data/site/quickstart/quickstart.html +0 -52
- data/site/quickstart/usage.html +0 -193
- data/site/reference/address.html +0 -247
- data/site/reference/config.html +0 -30
- data/site/reference/index.html +0 -101
- data/site/reference/mail.html +0 -726
- data/site/reference/mailbox.html +0 -245
- data/site/reference/port.html +0 -75
- data/site/reference/tmail.html +0 -35
- data/work/script/make +0 -26
- data/work/script/rdoc +0 -39
- data/work/script/setup +0 -1616
- data/work/script/test +0 -30
data/log/Changelog.txt
DELETED
@@ -1,534 +0,0 @@
|
|
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
|
-
|