remove redundant code from app/models/mail_handler.rb

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9646 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2012-05-06 13:50:30 +00:00
parent f6882cd69e
commit 31d2d1284a
1 changed files with 0 additions and 4 deletions

View File

@ -354,10 +354,6 @@ class MailHandler < ActionMailer::Base
part = email.text_part || email.html_part || email
@plain_text_body = Redmine::CodesetUtil.to_utf8(part.body.decoded, part.charset)
if @plain_text_body.respond_to?(:force_encoding)
# @plain_text_body = @plain_text_body.force_encoding(@email.charset).encode("UTF-8")
end
# strip html tags and remove doctype directive
@plain_text_body = strip_tags(@plain_text_body.strip)
@plain_text_body.sub! %r{^<!DOCTYPE .*$}, ''