Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

root/tags/rel_0-13-1/actionmailer/CHANGELOG

Revision 1816, 5.8 kB (checked in by david, 3 years ago)

Tagged the 0.13.1 release

Line 
1 *1.0.1* (11 July, 2005)
2
3 * Bind to Action Pack 1.9.1
4
5
6 *1.0.0* (6 July, 2005)
7
8 * Avoid adding nil header values #1392
9
10 * Better multipart support with implicit multipart/alternative and sorting of subparts [John Long]
11
12 * Allow for nested parts in multipart mails #1570 [Flurin Egger]
13
14 * Normalize line endings in outgoing mail bodies to "\n" #1536 [John Long]
15
16 * Allow template to be explicitly specified #1448 [tuxie@dekadance.se]
17
18 * Allow specific "multipart/xxx" content-type to be set on multipart messages #1412 [Flurin Egger]
19
20 * Unquoted @ characters in headers are now accepted in spite of RFC 822 #1206
21
22 * Helper support (borrowed from ActionPack)
23
24 * Silently ignore Errno::EINVAL errors when converting text.
25
26 * Don't cause an error when parsing an encoded attachment name #1340 [lon@speedymac.com]
27
28 * Nested multipart message parts are correctly processed in TMail::Mail#body
29
30 * BCC headers are removed when sending via SMTP #1402
31
32 * Added 'content_type' accessor, to allow content type to be set on a per-message basis. content_type defaults to "text/plain".
33
34 * Silently ignore Iconv::IllegalSequence errors when converting text #1341 [lon@speedymac.com]
35
36 * Support attachments and multipart messages.
37
38 * Added new accessors for the various mail properties.
39
40 * Fix to only perform the charset conversion if a 'from' and a 'to' charset are given (make no assumptions about what the charset was) #1276 [Jamis Buck]
41
42 * Fix attachments and content-type problems #1276 [Jamis Buck]
43
44 * Fixed the TMail#body method to look at the content-transfer-encoding header and unquote the body according to the rules it specifies #1265 [Jamis Buck]
45
46 * Added unquoting even if the iconv lib can't be loaded--in that case, only the charset conversion is skipped #1265 [Jamis Buck]
47
48 * Added automatic decoding of base64 bodies #1214 [Jamis Buck]
49
50 * Added that delivery errors are caught in a way so the mail is still returned whether the delivery was successful or not
51
52 * Fixed that email address like "Jamis Buck, M.D." <wild.medicine@example.net> would cause the quoter to generate emails resulting in "bad address" errors from the mail server #1220 [Jamis Buck]
53
54
55 *0.9.1* (20th April, 2005)
56
57 * Depend on Action Pack 1.8.1
58
59
60 *0.9.0* (19th April, 2005)
61
62 * Added that deliver_* will now return the email that was sent
63
64 * Added that quoting to UTF-8 only happens if the characters used are in that range #955 [Jamis Buck]
65
66 * Fixed quoting for all address headers, not just to #955 [Jamis Buck]
67
68 * Fixed unquoting of emails that doesn't have an explicit charset #1036 [wolfgang@stufenlos.net]
69
70
71 *0.8.1* (27th March, 2005)
72
73 * Fixed that if charset was found that the end of a mime part declaration TMail would throw an error #919 [lon@speedymac.com]
74
75 * Fixed that TMail::Unquoter would fail to recognize quoting method if it was in lowercase #919 [lon@speedymac.com]
76
77 * Fixed that TMail::Encoder would fail when it attempts to parse e-mail addresses which are encoded using something other than the messages encoding method #919 [lon@speedymac.com]
78
79 * Added rescue for missing iconv library and throws warnings if subject/body is called on a TMail object without it instead
80
81
82 *0.8.0* (22th March, 2005)
83
84 * Added framework support for processing incoming emails with an Action Mailer class. See example in README.
85
86
87 *0.7.1* (7th March, 2005)
88
89 * Bind to newest Action Pack (1.5.1)
90
91
92 *0.7.0* (24th February, 2005)
93
94 * Added support for charsets for both subject and body. The default charset is now UTF-8 #673 [Jamis Buck]. Examples:
95
96     def iso_charset(recipient)
97       @recipients = recipient
98       @subject    = "testing iso charsets"
99       @from       = "system@loudthinking.com"
100       @body       = "Nothing to see here."
101       @charset    = "iso-8859-1"
102     end
103    
104     def unencoded_subject(recipient)
105       @recipients = recipient
106       @subject    = "testing unencoded subject"
107       @from       = "system@loudthinking.com"
108       @body       = "Nothing to see here."
109       @encode_subject = false
110       @charset    = "iso-8859-1"
111     end
112    
113
114 *0.6.1* (January 18th, 2005)
115
116 * Fixed sending of emails to use Tmail#from not the deprecated Tmail#from_address
117
118
119 *0.6* (January 17th, 2005)
120
121 * Fixed that bcc and cc should be settable through @bcc and @cc -- not just @headers["Bcc"] and @headers["Cc"] #453 [Eric Hodel]
122
123 * Fixed Action Mailer to be "warnings safe" so you can run with ruby -w and not get framework warnings #453 [Eric Hodel]
124
125
126 *0.5*
127
128 * Added access to custom headers, like cc, bcc, and reply-to #268 [Andreas Schwarz]. Example:
129
130     def post_notification(recipients, post)
131       @recipients          = recipients
132       @from                = post.author.email_address_with_name
133       @headers["bcc"]      = SYSTEM_ADMINISTRATOR_EMAIL
134       @headers["reply-to"] = "notifications@example.com"
135       @subject             = "[#{post.account.name} #{post.title}]"
136       @body["post"]        = post
137     end
138
139 *0.4* (5)
140
141 * Consolidated the server configuration options into Base#server_settings= and expanded that with controls for authentication and more [Marten]
142   NOTE: This is an API change that could potentially break your application if you used the old application form. Please do change!
143
144 * Added Base#deliveries as an accessor for an array of emails sent out through that ActionMailer class when using the :test delivery option. [Jeremy Kemper]
145
146 * Added Base#perform_deliveries= which can be set to false to turn off the actual delivery of the email through smtp or sendmail.
147   This is especially useful for functional testing that shouldn't send off real emails, but still trigger delivery_* methods.
148
149 * Added option to specify delivery method with Base#delivery_method=. Default is :smtp and :sendmail is currently the only other option.
150   Sendmail is assumed to be present at "/usr/sbin/sendmail" if that option is used. [Kent Sibilev]
151
152 * Dropped "include TMail" as it added to much baggage into the default namespace (like Version) [Chad Fowler]
153
154
155 *0.3*
156
157 * First release
Note: See TracBrowser for help on using the browser.