Version 3.0.12.
[pwmd.git] / TODO.org
blobf9a4b13ecc5177703a51f36a59bb6c753924689d
1 * TODO
2 ** Add command line and SAVE option --sign-keyparam
3    To generate a new key-pair used for signing. This would require a
4    new inquire keyword GENKEY_SIGN.
5 ** Port to Windows and Mac
6    I don't have a machine to test a Mac build on. Windows could be
7    done, but I have no motivation.
8 ** Test TLS timeouts using FIONWRITE and SO_SNDLOWAT
9    OpenBSD and Solaris/SunOS and maybe others.
10 ** Better "target" attribute error handling in LIST.
11    Most checks are done when creating the "target" attribute and is
12    not very informative. The LIST command output is better at showing
13    the offending elements but is also harder if not impossible to implement.
14 * UNSURE
15 ** Use the DBUS protocol instead of libassuan
16    Better asynchronous IO. More language bindings. Better handling of
17    large amounts of data. May be better to hack libassuan though since
18    DBUS is a binary protocol. Either will probably never happen.
19 ** Make a specification that applications should follow
20    When accessing or storing the XML elements. This way two clients
21    (one for console and another for GUI) that require the same data
22    (mail client) could use the same element paths and not duplicate
23    each others data.
25    For example, a POP3 client would require a hostname, username,
26    password and optional port along with an SSL request (fingerprint,
27    certificate), etc. The root element of the service might have an
28    attribute "service=pop3" along with "default=1" or "active=1" (if
29    you have more than one POP3 account) so all the client needs to get
30    the pop3 server info is the type of service ("pop3" here). The
31    client would then loop through the LIST command output and search
32    for the required service attribute.
34    Using the XPATH command would be faster (especially over remote
35    connections) but it won't resolve any "target" attributes and the
36    output is raw XML which doesn't have TAB delimited elements. But
37    that could be fixed by the client.