1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
| | =head1 NAME
lei - local email interface for public-inbox
=head1 SYNOPSIS
lei [OPTIONS] COMMAND
=head1 DESCRIPTION
Unlike the C10K-oriented L<public-inbox-daemon(8)>, lei is designed
exclusively to handle trusted local clients with read/write access to
the file system, using as many system resources as the local user has
access to. lei supports a local, writable store built on top of
L<public-inbox-v2-format(5)> and L<public-inbox-extindex(1)>.
L<lei-q(1)> provides an interface for querying messages across the lei
store and read-only local and remote "externals" (inboxes and external
indices).
Available in public-inbox 1.7.0+.
=head1 OPTIONS
=over
=item -C DIR
Change current working directory to the specified directory before
running the command. This option can be given before or after
C<COMMAND> and is accepted by all lei subcommands except
L<lei-daemon-kill(1)>.
=back
=head1 COMMANDS
Subcommands for initializing and managing local, writable storage:
=over
=item * L<lei-init(1)>
=item * L<lei-import(1)>
=back
The following subcommands can be used to manage and inspect external
locations:
=over
=item * L<lei-add-external(1)>
=item * L<lei-forget-external(1)>
=item * L<lei-ls-external(1)>
=back
Subcommands related to searching and inspecting messages from the lei
store and configured externals are
=over
=item * L<lei-q(1)>
=back
TODO: Add lei-show (and perhaps others) once implemented.
Other subcommands include
=over
=item * L<lei-config(1)>
=item * L<lei-daemon-kill(1)>
=item * L<lei-daemon-pid(1)>
=back
=head1 FILES
By default storage is located at C<$XDG_DATA_HOME/lei/store>. The
configuration for lei resides at C<$XDG_CONFIG_HOME/lei/config>.
=head1 CONTACT
Feedback welcome via plain-text mail to L<mailto:meta@public-inbox.org>
The mail archives are hosted at L<https://public-inbox.org/meta/>
and L<http://hjrcffqmbrq6wope.onion/meta/>
=head1 COPYRIGHT
Copyright 2021 all contributors L<mailto:meta@public-inbox.org>
License: AGPL-3.0+ L<https://www.gnu.org/licenses/agpl-3.0.txt>
=head1 SEE ALSO
L<lei-overview(7)>
|