X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=blobdiff_plain;f=lib%2FPublicInbox%2FEml.pm;h=1988bdb3dd039633d81ce0e6baaeffedc0f258b2;hp=0c23bed03e5e3413a11fb27b9bc388119199d66d;hb=88645f747bd43c7fc374d8bfb908dab4e6028825;hpb=46742d95647c7a80cb2f60d5c134717dd91e22e2 diff --git a/lib/PublicInbox/Eml.pm b/lib/PublicInbox/Eml.pm index 0c23bed0..1988bdb3 100644 --- a/lib/PublicInbox/Eml.pm +++ b/lib/PublicInbox/Eml.pm @@ -33,10 +33,9 @@ use Text::Wrap qw(wrap); # stdlib, we need Perl 5.6+ for $huge my $MIME_Header = find_encoding('MIME-Header'); -# TODO remove these dependencies -use Email::MIME::ContentType; +use PublicInbox::EmlContentFoo qw(parse_content_type parse_content_disposition); use Email::MIME::Encodings; -$Email::MIME::ContentType::STRICT_PARAMS = 0; +$PublicInbox::EmlContentFoo::STRICT_PARAMS = 0; our $MAXPARTS = 1000; # same as SpamAssassin our $MAXDEPTH = 20; # seems enough, Perl sucks, here @@ -108,7 +107,7 @@ sub header_raw { # pick the first Content-Type header to match Email::MIME behavior. # It's usually the right one based on historical archives. sub ct ($) { - # Email::MIME::ContentType::content_type: + # PublicInbox::EmlContentFoo::content_type: $_[0]->{ct} //= parse_content_type(header($_[0], 'Content-Type')); }