From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-3.4 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, NUMERIC_HTTP_ADDR shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 744941F670; Thu, 14 Oct 2021 23:06:27 +0000 (UTC) Date: Thu, 14 Oct 2021 23:06:27 +0000 From: Eric Wong To: =?utf-8?B?Ss61YW4=?= Sacren Cc: meta@public-inbox.org Subject: Re: Read emails in the archive Message-ID: <20211014230627.GA8127@dcvr> References: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: List-Id: Jεan Sacren wrote: > public-inbox developers, > > I'm totally new to public-inbox. But I checked out the whole tree and > built using the master branch[0]. > > If I execute this[1]: > > git clone --mirror http://lore.kernel.org/netdev/0 netdev/git/0.git > git clone --mirror http://lore.kernel.org/netdev/1 netdev/git/1.git > git clone --mirror http://lore.kernel.org/netdev/2 netdev/git/2.git > public-inbox-init -V2 netdev netdev/ http://lore.kernel.org/netdev \ > netdev@vger.kernel.org > public-inbox-index netdev > > Will I be able to access all the emails locally using MUA? Not exactly. You can start: public-inbox-httpd -l 127.0.0.1:8080 -W0 And browse http://127.0.0.1:8080/netdev/ If you add a newsgroup parameter to the config: git config -f ~/.public-inbox/config \ publicinbox.netdev.newsgroup org.kernel.vger.netdev You can also start public-inbox-imapd or public-inbox-nntpd (-l $HOST:$PORT) to open via your IMAP client or NNTP reader With public-inbox.git, you can also try lei: lei add-external /path/to/local/netdev lei q SEARCH_TERMS... -o /tmp/results-Maildir lei is still a work-in-progress, so it could be on the rough side. "lei q" gets used the most, though, so maybe it's better than the rest (and add-external w/o --mirror is trivial).