From 4cedaee8653c6056a790ac9fc6638b3731597fea Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Thu, 15 Jan 2026 15:05:16 -0800 Subject: [PATCH] cook: lore no longer allows simple curl access --- cook | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cook b/cook index 3a2df82f6e..18e0195bd2 100755 --- a/cook +++ b/cook @@ -100,8 +100,7 @@ sub get_message_parent { my @line = (); my %irt = (); - open(my $fh, "-|", qw(curl -s), - "https://lore.kernel.org/git/" . "$mid" . "/raw"); + open(my $fh, "-|", qw(b4 -q mbox --single-message -o-), "$mid"); while (<$fh>) { last if (/^$/); chomp; -- 2.47.3