]> Sergey Matveev's repositories - public-inbox.git/blobdiff - Documentation/mknews.perl
watchmaildir: ensure I:/W:/E: prefixes in warnings
[public-inbox.git] / Documentation / mknews.perl
index 51d54b7167c19c8517b3e21787515f839b6e960d..f053e2bfb9e558541778762a4d6b3b79bd0b633d 100755 (executable)
@@ -103,9 +103,10 @@ sub mime2txt {
 
 sub mime2html {
        my ($out, $eml, $ctx) = @_;
-       my $smsg = bless {}, 'PublicInbox::Smsg';
+       my $smsg = $ctx->{smsg} = bless {}, 'PublicInbox::Smsg';
        $smsg->populate($eml);
-       print $out PublicInbox::View::eml_entry($ctx, $smsg, $eml, 1) or die;
+       $ctx->{msgs} = [ 1 ]; # for <hr> in eml_entry
+       print $out PublicInbox::View::eml_entry($ctx, $eml) or die;
 }
 
 sub html_start {