]> Sergey Matveev's repositories - public-inbox.git/blob - Documentation/public-inbox-config.pod
ed99b188beb198a470d52ba179f1f40448261e57
[public-inbox.git] / Documentation / public-inbox-config.pod
1 =head1 NAME
2
3 public-inbox-config - public-inbox config file description
4
5 =head1 SYNOPSIS
6
7 ~/.public-inbox/config
8
9 =head1 DESCRIPTION
10
11 The public-inbox config file is parseable by L<git-config(1)>.
12 This is a global configuration file for mapping/discovering
13 all public-inboxes used by a particular user.
14
15 =head1 CONFIGURATION FILE
16
17 =head2 EXAMPLE
18
19         [publicinbox "test"]
20                 inboxdir = /home/user/path/to/test.git
21                 ; multiple addresses are supported
22                 address = test@example.com
23                 ; address = alternate@example.com
24                 url = http://example.com/test
25                 newsgroup = inbox.test
26
27                 ; backwards compatibility with public-inbox pre-1.2.0,
28                 ; "inboxdir" takes precedence over "mainrepo"
29                 mainrepo = /home/user/path/to/test.git
30
31 =head2 VARIABLES
32
33 =over 8
34
35 =item publicinbox.<name>.address
36
37 The email address of the public-inbox.  May be specified
38 more than once for merging multiple mailing lists (or migrating
39 to new addresses).  This must be specified at least once,
40 the first value will be considered the primary address for
41 informational purposes.
42
43 Default: none, required
44
45 =item publicinbox.<name>.inboxdir
46
47 The absolute path to the directory which hosts the
48 public-inbox.  This must be specified once.
49
50 This was previously known as "mainrepo", which remains supported,
51 but "inboxdir" takes precedence.
52
53 Default: none, required
54
55 =item publicinbox.<name>.url
56
57 The primary URL for hosting the HTTP/HTTPS archives.
58 Additional HTTP/HTTPS URLs may be specified via
59 C<$GIT_DIR/cloneurl> as documented in L<gitweb(1)>
60
61 Default: none, optional
62
63 =item publicinbox.<name>.newsgroup
64
65 The NNTP group name for use with L<public-inbox-nntpd(1)>.  This
66 may be any newsgroup name with hierarchies delimited by C<.>.
67 For example, the newsgroup for L<mailto:meta@public-inbox.org>
68 is: C<inbox.comp.mail.public-inbox.meta>
69
70 It also configures the folder hierarchy used by L<public-inbox-imapd(1)>
71 as well as L<public-inbox-pop3d(1)>
72
73 Omitting this for a given inbox will prevent the inbox from
74 being served by L<public-inbox-nntpd(1)>,
75 L<public-inbox-imapd(1)>, and/or L<public-inbox-pop3d(1)>
76
77 Default: none, optional
78
79 =item publicinbox.<name>.watch
80
81 See L<public-inbox-watch(1)>
82
83 =item publicinbox.<name>.watchheader
84
85 See L<public-inbox-watch(1)>
86
87 =item publicinbox.<name>.listid
88
89 The L<rfc2919|https://tools.ietf.org/html/rfc2919> header without
90 angle brackets for L<public-inbox-mda(1)> deliveries and
91 L<public-inbox-watch(1)>.
92
93 For public-inbox-watch users, this is a shortcut for specifying
94 C<publicinbox.$NAME.watchheader=List-Id:E<lt>foo.example.comE<gt>>
95
96 For public-inbox-mda users, this may be used to avoid recipient
97 matching via C<ORIGINAL_RECIPIENT> environment variable.
98
99 This may be specified multiple times for merging multiple mailing
100 lists into a single public-inbox, only one C<List-Id> header
101 needs to match.
102
103 Default: none
104
105 =item publicinbox.<name>.imapmirror
106
107 This may be the full IMAP URL of an independently-run IMAP mirror.
108
109 Default: none
110
111 =item publicinbox.<name>.nntpmirror
112
113 This may be the full NNTP URL of an independently-run mirror.
114 For example, the https://public-inbox.org/meta/ inbox is
115 mirrored by Gmane at
116 C<nntp://news.gmane.io/gmane.mail.public-inbox.general>
117
118 Default: none
119
120 =item publicinbox.<name>.indexlevel
121
122 The indexing level for L<public-inbox-index(1)>
123
124 C<basic> only requires L<DBD::SQLite(3pm)> and provides all
125 NNTP functionality along with thread-awareness in the WWW
126 interface.
127
128 C<medium> requires L<Search::Xapian(3pm)> to provide full-text
129 term search functionality in the WWW UI.
130
131 C<full> also includes positional information used by Xapian to
132 allow for searching for phrases using quoted text.
133 (e.g. C<"looking for a complete sentence">)
134
135 Default: C<full>
136
137 =item publicinbox.<name>.boost
138
139 Control indexing order for L<public-inbox-extindex(1)>, with ties
140 broken by config file order.  This only affects indexing and does
141 not affect messages which are already indexed.
142
143 Default: C<0>
144
145 =item publicinbox.<name>.indexSequentialShard
146
147 See L<public-inbox-index(1)/publicInbox.indexSequentialShard>
148
149 =item publicinbox.<name>.httpbackendmax
150
151 If a digit, the maximum number of parallel
152 L<git-http-backend(1)> processes to allow for cloning this
153 particular inbox.
154
155 If an alphanumeric value starting with a lowercase alphabetic
156 character is specified, the inbox will use a L</NAMED LIMITER>
157 which can be shared by multiple inboxes.
158
159 Default: 32 (using a default limiter shared by all inboxes)
160
161 =item publicinbox.<name>.coderepo
162
163 The nickname of a "coderepo" section associated with the inbox.
164 May be specified more than once for M:N mapping of code repos to
165 inboxes.  If enabled, diff hunk headers in patch emails will
166 link to the line numbers of blobs.
167
168 Default: none
169
170 =item publicinbox.<name>.replyto
171
172 May be used to control how reply instructions in the PSGI
173 interface are displayed.
174
175 ":none=dead inbox" may be specified to denote an inactive list
176 ("dead inbox" may be replaced with another phrase).
177
178 A list of comma-delimited email addresses may be specified.
179 This can be useful for dedicated inboxes for bot emails, but
180 discussion happens on a separate mailing list/inbox.
181
182 Mirrors of existing centralized mailing lists may use ":list"
183 here to redirect mail only to the configured inbox address.
184 The use of ":list" is discouraged for new mailing lists, as it
185 leads to centralization.
186
187 Default: :all
188
189 =item publicinbox.css
190
191 The local path name of a CSS file for the PSGI web interface.
192 May contain the attributes "media", "title" and "href" which match
193 the associated attributes of the HTML <style> tag.
194 "href" may be specified to point to the URL of an remote CSS file
195 and the path may be "/dev/null" or any empty file.
196 Multiple files may be specified and will be included in the
197 order specified.
198
199 =item publicinboxmda.spamcheck
200
201 This may be set to C<none> to disable the use of SpamAssassin
202 L<spamc(1)> for filtering spam before it is imported into git
203 history.  Other spam filtering backends may be supported in
204 the future.
205
206 Default: spamc
207
208 =item publicinboxwatch.spamcheck
209
210 See L<public-inbox-watch(1)>
211
212 =item publicinboxwatch.watchspam
213
214 See L<public-inbox-watch(1)>
215
216 =item publicinbox.imapserver
217
218 Set this to point to the hostname(s) of the L<public-inbox-imapd(1)>
219 instance.  This is used to advertise the existence of the IMAP
220 endpoint in the L<PublicInbox::WWW> HTML interface.
221
222 Default: none
223
224 =item publicinbox.nntpserver
225
226 Same as C<publicinbox.imapserver>, but for the hostname(s) of the
227 L<public-inbox-nntpd(1)> instance.
228
229 Default: none
230
231 =item publicinbox.pop3state
232
233 See L<public-inbox-pop3d(1)/publicinbox.pop3state>
234
235 =item publicinbox.<name>.feedmax
236
237 The size of an Atom feed for the inbox.  If specified more than
238 once, only the last value is used.  Invalid values (<= 0) will
239 be treated as the default value.
240
241 Default: 25
242
243 =item publicinbox.<name>.hide
244
245 A comma-delimited list of listings to hide the inbox from.
246
247 Valid values are currently C<www> and C<manifest>.
248
249 Default: none
250
251 =item coderepo.<nick>.dir
252
253 The path to a git repository for "publicinbox.<name>.coderepo"
254
255 =item coderepo.<nick>.cgitUrl
256
257 The URL of the cgit instance associated with the coderepo.
258
259 Default: none
260
261 =item publicinbox.cgitrc
262
263 A path to a L<cgitrc(5)> file.  "repo.url" directives in the cgitrc
264 will be mapped to the nickname of a coderepo (without trailing slash),
265 and "repo.path" directives map to "coderepo.<nick>.dir".
266 Use of this directive allows admins of existing cgit installations
267 to skip declaring coderepo sections and map inboxes directly to
268 code repositories known to cgit.
269
270 Macro expansion (e.g. C<$HTTP_HOST>) is not yet supported.
271
272 =item publicinbox.cgitbin
273
274 A path to the C<cgit.cgi> executable.  The L<PublicInbox::WWW>
275 interface can spawn cgit as a fallback if the publicinbox.cgitrc
276 directive is configured.
277
278 Default: /var/www/htdocs/cgit/cgit.cgi or /usr/lib/cgit/cgit.cgi
279
280 =item publicinbox.cgitdata
281
282 A path to the data directory used by cgit for storing static files.
283 Typically guessed based the location of C<cgit.cgi> (from
284 C<publicinbox.cgitbin>, but may be overridden.
285
286 Default: basename of C<publicinbox.cgitbin>, /var/www/htdocs/cgit/
287 or /usr/share/cgit/
288
289 =item publicinbox.mailEditor
290
291 See L<public-inbox-edit(1)>
292
293 =item publicinbox.indexMaxSize
294 =item publicinbox.indexBatchSize
295 =item publicinbox.indexSequentialShard
296
297 See L<public-inbox-index(1)>
298
299 =item publicinbox.wwwlisting
300
301 Enable a HTML listing style when the root path of the URL '/' is accessed.
302 Valid values are:
303
304 =over 8
305
306 =item * all
307 - Show all inboxes
308
309 =item * 404
310 - Return a 404 page.  This is useful to allow customization with
311 L<Plack::App::Cascade(3pm)>
312
313 =item * match=domain
314 - Only show inboxes with URLs which belong to the domain of the HTTP request
315
316 =for comment
317 TODO support showing cgit listing
318
319 =back
320
321 Default: C<404>
322
323 =item publicinbox.grokmanifest
324
325 Controls the generation of a grokmirror-compatible gzipped JSON file
326 at the top-level of the PSGI interface.  You generally do not need to
327 change this from the default.
328
329 Valid values are:
330
331 =over 8
332
333 =item * match=domain
334 - Only include inboxes with URLs which belong to the domain of
335 the HTTP request.  This is compatible with virtual hosting where
336 several domains come from the same host.
337
338 =item * all
339 - All inboxes are present in C<manifest.js.gz>, regardless of domain.
340 Only use this if you're serving HTTP requests in a domain-agnostic manner.
341
342 =item * 404
343 - C<manifest.js.gz> will only contain an empty JSON array.
344 This does NOT affect C<$INBOX_URL/manifest.js.gz>, which will
345 always contain all git repos used by the inbox at C<$INBOX_URL>
346
347 =back
348
349 Default: C<match=domain>
350
351 =item publicinbox.<name>.obfuscate
352
353 Whether to obfuscate email addresses in the L<PublicInbox::WWW> HTML
354 interface.
355
356 Default: false
357
358 =item publicinbox.noObfuscate
359
360 A space-delimited list of well-known addresses and domains that should
361 not be obfuscated when C<publicinbox.$NAME.obfuscate> is true (e.g.,
362 C<public@example.com> and C<@example.com>).  This may be specified
363 more than once, in which case the values are merged.
364
365 Default: none
366
367 =item extindex.<name>.topdir
368
369 The directory of an external index.  See
370 L<public-inbox-extindex(1)> for more details.
371
372 =item extindex.<name>.url
373
374 Identical to L</publicinbox.E<lt>nameE<gt>.url>, but for
375 external indices
376
377 =item extindex.<name>.coderepo
378
379 Identical to L</publicinbox.E<lt>nameE<gt>.coderepo>, but for
380 external indices.  Code repos may be freely associated with
381 any number of public inboxes and external indices.
382
383 =back
384
385 =head2 NAMED LIMITER (PSGI)
386
387 Named limiters are useful for preventing large inboxes from
388 monopolizing (or overloading) the server.  Since serving git
389 clones (via L<git-http-backend(1)> can be memory-intensive for
390 large inboxes, it makes sense to put large inboxes on a named
391 limiter with a low max value; while smaller inboxes can use
392 the default limiter.
393
394 C<RLIMIT_*> keys may be set to enforce resource limits for
395 a particular limiter (L<BSD::Resource(3pm)> is required).
396
397 Default named-limiters are prefixed with "-".  Currently,
398 the "-cgit" named limiter is reserved for instances spawning
399 cgit via C<publicinbox.cgitrc>
400
401 =over 8
402
403 =item publicinboxlimiter.<name>.max
404
405 The maximum number of parallel processes for the given limiter.
406
407 =item publicinboxlimiter.<name>.rlimitCore
408
409 =item publicinboxlimiter.<name>.rlimitCPU
410
411 =item publicinboxlimiter.<name>.rlimitData
412
413 The maximum core size, CPU time, or data size processes run with the
414 given limiter will use.  This may be comma-separated to distinguish
415 soft and hard limits.  The word "INFINITY" is accepted as the
416 RLIM_INFINITY constant (if supported by your OS).
417
418 See L<setrlimit(2)> for more info on the behavior of RLIMIT_CORE,
419 RLIMIT_CPU, and RLIMIT_DATA for you operating system.
420
421 =back
422
423 =head3 EXAMPLE WITH NAMED LIMITERS
424
425         ; big inboxes which require lots of memory to clone:
426         [publicinbox "big1"]
427                 inboxdir = /path/to/big1
428                 address = big1@example.com
429                 httpbackendmax = big
430         [publicinbox "big2"]
431                 inboxdir = /path/to/big2
432                 address = big2@example.com
433                 httpbackendmax = big
434
435         ; tiny inboxes which are easily cloned:
436         [publicinbox "tiny1"]
437                 inboxdir = /path/to/tiny1
438                 address = tiny1@example.com
439         [publicinbox "tiny2"]
440                 inboxdir = /path/to/tiny2
441                 address = tiny2@example.com
442
443         [publicinboxlimiter "big"]
444                 max = 4
445
446 In the above example, the "big1" and "big2" are limited to four
447 parallel L<git-http-backend(1)> processes between them.
448
449 However, "tiny1" and "tiny2" will share the default limiter
450 which means there can be 32 L<git-http-backend(1)> processes
451 between them.
452
453 =head1 ENVIRONMENT
454
455 =over 8
456
457 =item PI_CONFIG
458
459 Used to override the default "~/.public-inbox/config" value.
460
461 =back
462
463 =head1 CONTACT
464
465 Feedback welcome via plain-text mail to L<mailto:meta@public-inbox.org>
466
467 The mail archives are hosted at L<https://public-inbox.org/meta/> and
468 L<http://4uok3hntl7oi7b4uf4rtfwefqeexfzil2w6kgk2jn5z2f764irre7byd.onion/meta/>
469
470 =head1 COPYRIGHT
471
472 Copyright all contributors L<mailto:meta@public-inbox.org>
473
474 License: AGPL-3.0+ L<https://www.gnu.org/licenses/agpl-3.0.txt>
475
476 =head1 SEE ALSO
477
478 L<git(1)>, L<git-config(1)>, L<public-inbox-daemon(8)>,
479 L<public-inbox-mda(1)>, L<public-inbox-watch(1)>,
480 L<grokmirror|https://git.kernel.org/pub/scm/utils/grokmirror/grokmirror.git>