aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-05-06 10:39:00 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-05-06 10:39:00 +0000
commit483931ea615d49a31d6de225f273e0945ad6cbb3 (patch)
treedb2c3f955ca855a78582d32ef7cd4b188a4fee95 /actionmailer/CHANGELOG
parentc971c248394c7d603d336e31457c51ca33edf67d (diff)
downloadrails-483931ea615d49a31d6de225f273e0945ad6cbb3.tar.gz
rails-483931ea615d49a31d6de225f273e0945ad6cbb3.tar.bz2
rails-483931ea615d49a31d6de225f273e0945ad6cbb3.zip
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] Added unquoting even if the iconv lib can't be loaded--in that case, only the charset conversion is skipped #1265 [Jamis Buck]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1290 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionmailer/CHANGELOG')
-rw-r--r--actionmailer/CHANGELOG4
1 files changed, 4 insertions, 0 deletions
diff --git a/actionmailer/CHANGELOG b/actionmailer/CHANGELOG
index 25c980803b..3d033705dc 100644
--- a/actionmailer/CHANGELOG
+++ b/actionmailer/CHANGELOG
@@ -1,5 +1,9 @@
*SVN*
+* 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]
+
+* Added unquoting even if the iconv lib can't be loaded--in that case, only the charset conversion is skipped #1265 [Jamis Buck]
+
* Added automatic decoding of base64 bodies #1214 [Jamis Buck]
* Added that delivery errors are caught in a way so the mail is still returned whether the delivery was successful or not