aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJamis Buck <jamis@37signals.com>2005-06-08 10:18:26 +0000
committerJamis Buck <jamis@37signals.com>2005-06-08 10:18:26 +0000
commit29d6d15fc3dcb0d1c0ba531c5de7a8ea025f4ceb (patch)
tree4f2df38ae8d2bb9a9c64c850acede48b4b97f6e8
parentb0a35b6fe9c1a6a0eb14f2079a1bc8ff692ab621 (diff)
downloadrails-29d6d15fc3dcb0d1c0ba531c5de7a8ea025f4ceb.tar.gz
rails-29d6d15fc3dcb0d1c0ba531c5de7a8ea025f4ceb.tar.bz2
rails-29d6d15fc3dcb0d1c0ba531c5de7a8ea025f4ceb.zip
Silently ignore Errno::EINVAL errors when converting between charsets. Some mail clients apprently send X-UNKNOWN to represent unknown charsets, and this caused the conversion to blow up.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1395 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r--actionmailer/CHANGELOG2
-rw-r--r--actionmailer/lib/action_mailer/vendor/tmail/quoting.rb5
-rwxr-xr-xactionmailer/test/mail_service_test.rb6
3 files changed, 12 insertions, 1 deletions
diff --git a/actionmailer/CHANGELOG b/actionmailer/CHANGELOG
index 9f0bfd4a68..59a4e40ed2 100644
--- a/actionmailer/CHANGELOG
+++ b/actionmailer/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Silently ignore Errno::EINVAL errors when converting text.
+
* Don't cause an error when parsing an encoded attachment name #1340 [lon@speedymac.com]
* Nested multipart message parts are correctly processed in TMail::Mail#body
diff --git a/actionmailer/lib/action_mailer/vendor/tmail/quoting.rb b/actionmailer/lib/action_mailer/vendor/tmail/quoting.rb
index 4420f2ea6b..b593efafcd 100644
--- a/actionmailer/lib/action_mailer/vendor/tmail/quoting.rb
+++ b/actionmailer/lib/action_mailer/vendor/tmail/quoting.rb
@@ -79,10 +79,13 @@ module TMail
def convert_to(text, to, from)
return text unless to && from
text ? Iconv.iconv(to, from, text).first : ""
- rescue Iconv::IllegalSequence
+ rescue Iconv::IllegalSequence, Errno::EINVAL
# the 'from' parameter specifies a charset other than what the text
# actually is...not much we can do in this case but just return the
# unconverted text.
+ #
+ # Ditto if either parameter represents an unknown charset, like
+ # X-UNKNOWN.
text
end
rescue LoadError
diff --git a/actionmailer/test/mail_service_test.rb b/actionmailer/test/mail_service_test.rb
index 9ed2cd2293..d9f6935674 100755
--- a/actionmailer/test/mail_service_test.rb
+++ b/actionmailer/test/mail_service_test.rb
@@ -515,5 +515,11 @@ EOF
fixture = File.read(File.dirname(__FILE__) + "/fixtures/raw_email9")
assert_raise(TMail::SyntaxError) { TMail::Mail.parse(fixture) }
end
+
+ def test_decode_message_with_unknown_charset
+ fixture = File.read(File.dirname(__FILE__) + "/fixtures/raw_email10")
+ mail = TMail::Mail.parse(fixture)
+ assert_nothing_raised { mail.body }
+ end
end