X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=Documentation%2Flei-overview.pod;fp=Documentation%2Flei-overview.pod;h=d190304569ec109682da526f64c2cc5705646eed;hb=e49cf9c629c0fd3024bdb63b5c5e84b590814c4e;hp=0000000000000000000000000000000000000000;hpb=82691a35fcf3b8945539084a029722b3458d72c8;p=public-inbox.git diff --git a/Documentation/lei-overview.pod b/Documentation/lei-overview.pod new file mode 100644 index 00000000..d1903045 --- /dev/null +++ b/Documentation/lei-overview.pod @@ -0,0 +1,72 @@ +=head1 NAME + +lei - an overview of lei + +=head1 DESCRIPTION + +L is a local email interface for public-inbox. This document +provides some basic examples. + +=head1 LEI STORE + +L initializes writable local storage based on +L. + +TODO: Extend when lei-import and friends are added. + +=head1 EXTERNALS + +In addition to the above store, lei can make read-only queries to +"externals": inboxes and external indices. An external can be +registered by passing a URL or local path to L. +For local paths, the external needs to be indexed with +L (in the case of a regular inbox) or +L (in the case of an external index). + +=head2 EXAMPLES + +=over + +=item $ lei add-external https://public-inbox.org/meta/ + +Add a remote external for public-inbox's inbox. + +=back + +=head1 SEARCHING + +The L command searches the local store and externals. The +search prefixes match those available via L. + +=head2 EXAMPLES + +=over + +=item $ lei q s:lei s:skeleton + +Search for messages whose subject includes "lei" and "skeleton". + +=item $ lei q -t s:lei s:skeleton + +Do the same, but also report unmatched messages that are in the same +thread as a matched message. + +=item $ lei q -t -o t.mbox -f mboxcl2 --mua=mutt s:lei s:skeleton + +Write mboxcl2-formatted results to t.mbox and enter mutt to view the +file by invoking C. + +=back + +=head1 CONTACT + +Feedback welcome via plain-text mail to L + +The mail archives are hosted at L +and L + +=head1 COPYRIGHT + +Copyright 2021 all contributors L + +License: AGPL-3.0+ L