On Thu, 06 Jan 2022 20:40:09 -0500 Kyle Meyer wrote:
> >  - is there a way to get lei to fetch a particular thread? It seems
> >    like using a bare msg-id as the search term mostly works, but it 
> >    also fetches in any threads which were referring to the thread of
> >    interest by posting a link  
> 
> You can search with the "mid:" prefix and then pull in the entire thread
> with -t/--threads:
> 
>   $ lei q -f ldjson \
>     mid:[email protected] | \
>     jq '[.blob,.s,.f[0][0]]'
>   [
>     "7e49832370e95afb54298d21ea4c10d338bb3a7b",
>     "RFC: should lei inject its own \"Received:\" header?",
>     "Konstantin Ryabitsev"
>   ]
> 
> 
>   $ lei q -t -f ldjson \
>     mid:[email protected] | \
>     jq '[.blob,.s,.f[0][0]]'
>   [
>     "7e49832370e95afb54298d21ea4c10d338bb3a7b",
>     "RFC: should lei inject its own \"Received:\" header?",
>     "Konstantin Ryabitsev"
>   ]
>   [
>     "70c49f363594e94d89a14bcb57c45d45cac49172",
>     "Re: RFC: should lei inject its own \"Received:\" header?",
>     "Eric Wong"
>   ]

Perfect, thanks!

Reply via email to