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 * Combined "super server" for NNTP/HTTP/POP3 to reduce memory overhead
19 * Optional reply-to-list support for mirroring lists that want it :<
20 Reply-to-list encourages the existing list as a single-point-of-failure,
21 but having an extra mirror using public-inbox code is nice regardless.
23 * Configurable linkification for per-inbox shorthands:
24 "$gmane/123456" could be configured to expand to the
25 appropriate link pointing to the gmane.org list archives,
26 likewise "[Bug #123456]" could be configured to expand to
27 point to some project's bug tracker at http://example.com/bug/123456
29 * Support optional "HTTPS Everywhere" for mapping old HTTP to HTTPS
30 links if (and only if) the user wants to use HTTPS. We may also
31 be able to configure redirects for expired URLs.
33 Note: message bodies rendered as HTML themselves must NOT change,
34 the links should point to an anchor tag within the same page,
35 instead; giving the user options.
37 * implement RFC 4685 (Atom message threading)
39 * configurable constants (index limits, search results)
41 * handle messages with multiple Message-IDs
43 * handle broken double-bracketed References properly (maybe)
44 and totally broken Message-IDs
46 cf. https://public-inbox.org/git/20160814012706.GA18784@starla/
48 * portability to FreeBSD (and other Free Software *BSDs)
49 ugh... https://rt.cpan.org/Ticket/Display.html?id=116615
51 * improve documentation
53 * linkify thread skeletons better
54 https://public-inbox.org/git/6E3699DEA672430CAEA6DEFEDE6918F4@PhilipOakley/
56 * generate sample CSS for use with Stylish/dillo/etc
58 * streaming Email::MIME replacement: currently we generate many
59 allocations/strings for headers we never look at and slurp
60 entire message bodies into memory.
61 (this is pie-in-the-sky territory...)
63 * use REQUEST_URI properly for CGI / mod_perl2 compatibility
64 with Message-IDs which include '%' (done?)
66 * more and better test cases (use git fast-import to speed up creation)
68 * large mbox/Maildir/MH/NNTP spool import (see PublicInbox::Import)