Jul 272004
 

The mailserver is slowly (very slowly, I’ve been reading blogs too much!) progressing into something. See this screenshot:

 Posted by at 23:34
Jul 272004
 

If you’re into Macromedia’s Flash MX, then you’ll appreciate that they released Ellipsis, the codename for the update to their Flash MX product. It is said to contain more than 100 bugfixes and other improvements. The update is free, and can be found here. Read the press release on this page.

 Posted by at 23:20
Jul 272004
 

More Borland news: they are giving away Together for free. Okay, okay, they created a special edition, that can be downloaded for free. It’s a 60MB download that can be found here. The press release about this Borland-Together-for-the-masses is here.

I’m not sure why there is no integration with Delphi, at least the Together productpages don’t mention it.

 Posted by at 22:40
Jul 272004
 

Yesterday I created the basics of a mailserver with the Indy 9 components. To avoid cluttering the main form, I’ve put the components on a Data Module, but that was not a good idea. Moving them to the main form made the code compile and run.

{note to self: Data Modules are for database-components}

As a database, I need a database that can either run embedded and be extended to client-server. FlashFiler 2 from TurboPower can do that, and so does NexusDB, but the free version of NexusDB has a limitation of 1 database per app, 5 tables per db, and 10000 rows per table. Not sure if that will do the trick for a mailserver. Buying (US$900) just to create a proof-of-concept seems a little irrational, even to me.

The plan to create a working mailserver is:
– design data model
– implement basic database structure
– implement accounts/aliasses/maillists
– implement receiving and storing messages for accounts/aliasses/maillists
– setup domainstructure / relaying-settings
– implement POP3 retrieval
– ask friends to test this version 🙂

If things get this far, and things go well, the following items are on the to-do list:
– logging
– basic anti-spam features
– basic anti-virus features
– IMAP4 capabilities
– external POP3-mailbox retrieval
– ODBC (or native Oracle/MSSQL) to support other databases for account/message-storage
– …

 Posted by at 10:02