On Thu, Mar 30, 2023 at 11:29:51AM +0000, Eric Wong wrote:
> This implements the mbox.gz retrieval.  I didn't want to deal
> with HTML nor figuring out how to expose more <form> elements,
> yet; but I figure mbox.gz is the most important.
> 
> Now deployed on 80x24.org/lore:
> 
> MSGID=20230327080502.GA570847@ziqianlu-desk2
> curl -d '' -sSf \
>    https://80x24.org/lore/all/"$MSGID/?x=m&q=rt:2023-03-29.."; | \
>    zcat | grep -i ^Message-ID:

Eric:

Reviving this old thread for some clarification. I noticed that this only
works for /all/, but not for individual inboxes. E.g.:

    $ curl -d '' -sSf \
      https://lore.kernel.org/all/"$MSGID/?x=m&q=rt:2023-03-29.."; \
      | zgrep -i ^Message-ID:
    Message-ID: <cfcf852c-e9f0-f560-542d-0f72777a8...@leemhuis.info>

but with /lkml/ I get a 404:

    $ curl -d '' -sSf \
      https://lore.kernel.org/lkml/"$MSGID/?x=m&q=rt:2023-03-29.."; \
      | zgrep -i ^Message-ID:
    curl: (22) The requested URL returned error: 404

Is that intentionally restricted to just extindex?

-K

Reply via email to