From 46742d95647c7a80cb2f60d5c134717dd91e22e2 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Thu, 7 May 2020 21:05:50 +0000 Subject: replace most uses of PublicInbox::MIME with Eml PublicInbox::Eml has enough functionality to replace the Email::MIME-based PublicInbox::MIME. --- lib/PublicInbox/WwwAttach.pm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'lib/PublicInbox/WwwAttach.pm') diff --git a/lib/PublicInbox/WwwAttach.pm b/lib/PublicInbox/WwwAttach.pm index b1009907..5b2914b3 100644 --- a/lib/PublicInbox/WwwAttach.pm +++ b/lib/PublicInbox/WwwAttach.pm @@ -7,8 +7,7 @@ use strict; use warnings; use bytes (); # only for bytes::length use Email::MIME::ContentType qw(parse_content_type); -use PublicInbox::MIME; -use PublicInbox::MsgIter; +use PublicInbox::Eml; sub get_attach_i { # ->each_part callback my ($part, $depth, $idx) = @{$_[0]}; @@ -38,7 +37,7 @@ sub get_attach ($$$) { my ($ctx, $idx, $fn) = @_; my $res = [ 404, [ 'Content-Type', 'text/plain' ], [ "Not found\n" ] ]; my $mime = $ctx->{-inbox}->msg_by_mid($ctx->{mid}) or return $res; - $mime = PublicInbox::MIME->new($mime); + $mime = PublicInbox::Eml->new($mime); $res->[3] = $idx; $mime->each_part(\&get_attach_i, $res, 1); pop @$res; # cleanup before letting PSGI server see it -- cgit v1.2.3-24-ge0c7