]> Sergey Matveev's repositories - public-inbox.git/blob - TODO
Merge remote-tracking branch 'origin/git-cleanup'
[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   Perhaps make this depend solely the NNTP server and work as a proxy.
15   Meaning users can run this without needing a full copy of the
16   archives in a git repository.
17
18 * HTTP and NNTP proxy support.  Allow us to be a frontend for
19   firewalled off (or Tor-exclusive) instances.  The use case is
20   for offering a publically accessible IP with a cheap VPS,
21   yet storing large amounts of data on computers without a
22   public IP behind a home Internet connection.
23
24 * TLS support for various daemons (including STARTTLS for NNTP and POP3)
25
26 * optional Cache::FastMmap support so production deployments won't
27   need Varnish (Varnish doesn't protect NNTP, either)
28
29 * dogfood and take advantage of new kernel APIs (while maintaining
30   portability to older Linux, free BSDs and maybe Hurd).
31
32 * dogfood latest Xapian, Perl5, SQLite, git and various modules to
33   ensure things continue working as they should (or more better)
34   while retaining compatibility with old versions.
35
36 * NNTP COMPRESS extension (see innd)
37
38 * Support more of RFC 3977 (NNTP)
39
40 * Combined "super server" for NNTP/HTTP/POP3 to reduce memory overhead
41
42 * Configurable linkification for per-inbox shorthands:
43   "$gmane/123456" could be configured to expand to the
44   appropriate link pointing to the gmane.org list archives,
45   likewise "[Bug #123456]" could be configured to expand to
46   point to some project's bug tracker at http://example.com/bug/123456
47
48 * configurable synonym and spelling support in Xapian
49
50 * Support optional "HTTPS Everywhere" for mapping old HTTP to HTTPS
51   links if (and only if) the user wants to use HTTPS.  We may also
52   be able to configure redirects for expired URLs.
53
54   Note: message bodies rendered as HTML themselves must NOT change,
55   the links should point to an anchor tag within the same page,
56   instead; giving the user options.
57
58 * configurable constants (index limits, search results)
59
60 * handle messages with multiple Message-IDs (done for v2, doable for v1)
61
62 * handle broken double-bracketed References properly (maybe)
63   and totally broken Message-IDs
64
65   cf.  https://public-inbox.org/git/20160814012706.GA18784@starla/
66
67 * improve documentation
68
69 * linkify thread skeletons better
70   https://public-inbox.org/git/6E3699DEA672430CAEA6DEFEDE6918F4@PhilipOakley/
71
72 * streaming Email::MIME replacement: currently we generate many
73   allocations/strings for headers we never look at and slurp
74   entire message bodies into memory.
75   (this is pie-in-the-sky territory...)
76
77 * use REQUEST_URI properly for CGI / mod_perl2 compatibility
78   with Message-IDs which include '%' (done?)
79
80 * more and better test cases (use git fast-import to speed up creation)
81
82 * large mbox/Maildir/MH/NNTP spool import (see PublicInbox::Import)
83
84 * Read-only WebDAV interface to the git repo so it can be mounted
85   via davfs2 or fusedav to avoid full clones.
86   davfs2 needs Range: request support for this to be feasible:
87     https://savannah.nongnu.org/bugs/?33259
88     https://savannah.nongnu.org/support/?107649
89
90 * Contribute something like IMAP IDLE for "git fetch".
91   Inboxes (and any git repos) can be kept up-to-date without
92   relying on polling.
93
94 * Improve bundle support in git to make it cheaper to host/clone
95   with dumb HTTP(S) servers.
96
97 * Expose targeted reindexing of individual messages.
98   Sometimes an indexing bug only affects a handful of messages,
99   so it's not worth the trouble of doing a full reindex.
100
101 * code repository integration (with cgit, gitweb, etc...)
102
103 * migration path to v2 without breaking v1 "git fetch" cronjobs
104
105 * imperfect scraper importers for obfuscated list archives
106   (e.g. obfuscated Mailman stuff, Google Groups, etc...)
107
108 * support hooks, since low-level git-fast-import does not run them
109   https://public-inbox.org/meta/20190405174329.GA21472@chatter.qube.local/
110
111 * investigate native grokmirror support/integration