]> Sergey Matveev's repositories - public-inbox.git/blob - TODO
atom: implement message threading per RFC 4685
[public-inbox.git] / TODO
1 TODO items for public-inbox
2
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)
6
7 * general performance improvements, but without relying on
8   XS or compiled code any more than we currently do.
9
10 * mailmap support (same as git) for remapping expired email addresses
11
12 * POP3 server, since some webmail providers support external POP3:
13   https://public-inbox.org/meta/20160411034104.GA7817@dcvr.yhbt.net/
14
15 * TLS support for various daemons (including STARTTLS for NNTP and POP3)
16
17 * Combined "super server" for NNTP/HTTP/POP3 to reduce memory overhead
18
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.
22
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
28
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.
32
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.
36
37 * configurable constants (index limits, search results)
38
39 * handle messages with multiple Message-IDs
40
41 * handle broken double-bracketed References properly (maybe)
42   and totally broken Message-IDs
43
44   cf.  https://public-inbox.org/git/20160814012706.GA18784@starla/
45
46 * portability to FreeBSD (and other Free Software *BSDs)
47   ugh... https://rt.cpan.org/Ticket/Display.html?id=116615
48   (IO::KQueue is broken with Danga::Socket)
49
50 * improve documentation
51
52 * linkify thread skeletons better
53   https://public-inbox.org/git/6E3699DEA672430CAEA6DEFEDE6918F4@PhilipOakley/
54
55 * generate sample CSS for use with Stylish/dillo/etc
56
57 * streaming Email::MIME replacement: currently we generate many
58   allocations/strings for headers we never look at and slurp
59   entire message bodies into memory.
60   (this is pie-in-the-sky territory...)
61
62 * use REQUEST_URI properly for CGI / mod_perl2 compatibility
63   with Message-IDs which include '%' (done?)
64
65 * more and better test cases (use git fast-import to speed up creation)
66
67 * large mbox/Maildir/MH/NNTP spool import (see PublicInbox::Import)