X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Debbugs%2FMail.pm;h=e4c8bf7da825e53ce64b3f0849079237e07745fa;hb=466f7faff129a5699c7674f59900a92aa256175d;hp=0a227b6aeaa944adb242047daabda85169418f17;hpb=e45e5c632e5bfc6e214048f4b87ab76ae79adf56;p=debbugs.git diff --git a/Debbugs/Mail.pm b/Debbugs/Mail.pm index 0a227b6..e4c8bf7 100644 --- a/Debbugs/Mail.pm +++ b/Debbugs/Mail.pm @@ -49,7 +49,7 @@ use Debbugs::MIME qw(encode_rfc1522); use Debbugs::Config qw(:config); use Params::Validate qw(:types validate_with); use Encode qw(encode is_utf8); -use Debbugs::UTF8 qw(encode_utf8_safely); +use Debbugs::UTF8 qw(encode_utf8_safely convert_to_utf8); use Debbugs::Packages; @@ -450,9 +450,16 @@ sub reply_headers{ my $body = "On $date $who wrote:\n"; my $i = 60; my $b_h; + # Default to UTF-8. + my $charset="utf-8"; ## find the first part which has a defined body handle and appears ## to be text if (defined $entity->bodyhandle) { + my $this_charset = + $entity->head->mime_attr("content-type.charset"); + $charset = $this_charset if + defined $this_charset and + length $this_charset; $b_h = $entity->bodyhandle; } elsif ($entity->parts) { my @parts = $entity->parts; @@ -462,6 +469,11 @@ sub reply_headers{ } if (defined $part->bodyhandle and $part->effective_type =~ /text/) { + my $this_charset = + $part->head->mime_attr("content-type.charset"); + $charset = $this_charset if + defined $this_charset and + length $this_charset; $b_h = $part->bodyhandle; last; } @@ -473,7 +485,7 @@ sub reply_headers{ while (defined($_ = $IO->getline)) { $i--; last if $i < 0; - $body .= '> '. $_; + $body .= '> '. convert_to_utf8($_,$charset); } $IO->close(); };