Talk:Tinymail

From OLPC
Revision as of 06:34, 16 November 2006 by 87.66.65.204 (talk) (Tinymail is too fat)
Jump to: navigation, search

Tinymail is too fat

Tinymail supports SMTP, POP, IMAP and local message stores like mbox, mh, spool and Maildir. Tinymail also has its own local format.

--> You can of course pick which components you will compile. if you don't need SMTP and POP, you don't have to compile that

This is way too much for OLPC.

To begin with, the OLPC only needs one message store format which should be shared with all applications which use a message store.

--> You can pick that (and not compile the other formats). So that isn't a problem.

Given that the 2B1 runs a multitasking OS, it would be best for this message store to be something that can handle multiple processes accessing it at once. If file locking (or record locking) is too complex, the the message store should be owned by a simple daemon which serves all applications.

--> Tinymail can easily be used to play the role of a service (remote proxy pattern can be used for this). In fact I have already started some experiments that turn tinymail into a little service for E-mails. It worked but I don't yet see a good reason to push this path all the way. It didn't really caused any changes to the current tinymail infrastructure. So such a service can be developed on top of tinymail, rather than inside of tinymail (this is the purpose of tinymail, to ease building your solution on top of it)

Then, the question of network protocols comes to bear. There is not much point in supporting POP and SMTP and IMAP. IMAP itself might make sense, especially if it is extended to have a SEND operation,

--> Support for the SEND operation can certainly be done

but the fact still remains that the 2B1 will not have access to a traditional server infrastructure.

--> fetchmail the messages into a mbox or Maildir, and/or transfer them over XMPP

The concept of having an application that allows one to manage their received messages archive does make sense, but it needs to be better integrated with the OLPC concepts of networking which means a mesh network, built-in instant messaging and no servers.