From f1747921cf00e251ea0d814d732fb8c9dc9e39cd Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sun, 23 Aug 2015 00:02:34 +0000 Subject: .txt links return an mbox instead This improves compatibility and allows individual messages to be concatenated into an existing mbox without further modifications. "git format-patch" does something similar (but does not do "From " line escaping(!)) --- lib/PublicInbox/WWW.pm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'lib/PublicInbox/WWW.pm') diff --git a/lib/PublicInbox/WWW.pm b/lib/PublicInbox/WWW.pm index 33c71101..86c64fb6 100644 --- a/lib/PublicInbox/WWW.pm +++ b/lib/PublicInbox/WWW.pm @@ -157,11 +157,12 @@ sub mid2blob { } } -# /$LISTNAME/m/$MESSAGE_ID.txt -> raw original +# /$LISTNAME/m/$MESSAGE_ID.txt -> raw mbox sub get_mid_txt { my ($ctx, $cgi) = @_; - my $x = mid2blob($ctx); - $x ? [ 200, [ 'Content-Type' => 'text/plain' ], [ $$x ] ] : r404(); + my $x = mid2blob($ctx) or return r404(); + require PublicInbox::Mbox; + PublicInbox::Mbox::emit1($x); } # /$LISTNAME/m/$MESSAGE_ID.html -> HTML content (short quotes) -- cgit v1.2.3-24-ge0c7