1 TODO items for public-inbox
3 (Not in any particular order, and
4 performance, ease-of-setup, installation, maintainability, etc
5 all need to be considered for everything we introduce)
7 * general performance improvements, but without relying on
8 XS or compiled code any more than we currently do.
10 * mailmap support (same as git) for remapping expired email addresses
12 * POP3 server, since some webmail providers support external POP3:
13 https://public-inbox.org/meta/20160411034104.GA7817@dcvr.yhbt.net/
15 * TLS support for various daemons (including STARTTLS for NNTP and POP3)
17 * Unix socket support for HTTP and POP3 server for use behind reverse
20 * Combined "super server" for NNTP/HTTP/POP3 to reduce memory overhead
22 * Optional reply-to-list support for mirroring lists that want it :<
23 Reply-to-list encourages the existing list as a single-point-of-failure,
24 but having an extra mirror using public-inbox code is nice regardless.
26 * Configurable linkification for per-inbox shorthands:
27 "$gmane/123456" could be configured to expand to the
28 appropriate link pointing to the gmane.org list archives,
29 likewise "[Bug #123456]" could be configured to expand to
30 point to some project's bug tracker at http://example.com/bug/123456
32 * Support optional "HTTPS Everywhere" for mapping old HTTP to HTTPS
33 links if (and only if) the user wants to use HTTPS. We may also
34 be able to configure redirects for expired URLs.
36 Note: message bodies rendered as HTML themselves must NOT change,
37 the links should point to an anchor tag within the same page,
38 instead; giving the user options.
40 * implement RFC 4685 (Atom message threading)
42 * configurable constants (index limits, search results)
44 * use tags as date-based skiplists for navigating history
45 (maybe not needed with Xapian support nowadays?)
47 * handle Xapian date range queries:
48 http://mid.gmane.org/20151005222157.GE5880@survex.com
50 * Consider storing git blob ID in Xapian doc data to avoid ref
51 and tree lookups based on Message-Id.
53 * streaming Email::MIME replacement: currently we generate many
54 allocations/strings for headers we never look at and slurp
55 entire message bodies into memory.
56 (this is pie-in-the-sky territory...)
58 * Allow in-place Xapian updates without clobbering the whole
59 index (versioning each doc data entry?) for big archives
61 * use REQUEST_URI properly for CGI / mod_perl2 compatibility
62 with Message-IDs which include '%' (done?)
64 * more test cases (use git fast-import to speed up creation)
66 * large mbox/Maildir/MH/NNTP spool import (use git fast-import)