]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/Feed.pm
daemon: use ->can to check for IO::Socket::SSL
[public-inbox.git] / lib / PublicInbox / Feed.pm
index 4cb295e60e4291f37b23137d78eaa688aacccb97..4c1056b4665dec330f69576f56bf345c847073df 100644 (file)
@@ -5,7 +5,6 @@
 package PublicInbox::Feed;
 use strict;
 use warnings;
-use PublicInbox::MIME;
 use PublicInbox::View;
 use PublicInbox::WwwAtomStream;
 use PublicInbox::Smsg; # this loads w/o Search::Xapian
@@ -13,7 +12,7 @@ use PublicInbox::Smsg; # this loads w/o Search::Xapian
 sub generate_i {
        my ($ctx) = @_;
        while (my $smsg = shift @{$ctx->{msgs}}) {
-               $ctx->{-inbox}->smsg_mime($smsg) and return $smsg;
+               return $smsg;
        }
 }
 
@@ -54,9 +53,9 @@ sub new_html_i {
        my ($nr, $ctx) = @_;
        my $msgs = $ctx->{msgs};
        while (my $smsg = shift @$msgs) {
-               my $m = $ctx->{-inbox}->smsg_mime($smsg) or next;
-               my $more = scalar @$msgs;
-               return PublicInbox::View::index_entry($m, $ctx, $more);
+               my $eml = $ctx->{-inbox}->smsg_eml($smsg) or next;
+               return PublicInbox::View::eml_entry($ctx, $smsg, $eml,
+                                                       scalar @$msgs);
        }
        PublicInbox::View::pagination_footer($ctx, './new.html');
 }