wodImapServer - Version 2.3.2 WeOnlyDo! COM ImapServer ActiveX control is componentthat can be easily integrated into your applications toprovide full IMAP4rev1 protocol server implementation.All you need to do is to put it on VB form, call it'sStart method and it's immediately accepting connectionsby your clients! It fully supports commands defined inRFC2060.Since wodImapServer is COM object and not the fullapplication, there's few things developer should lookafter - simply because COM objects cannot deal withinformation that should be preserved between thesessions. Most important is to keep UID information(UNIQUE ID) for folders and messages. If you do so -wodImapServer will work flawlessly with any client thatconnects to it. On each client action wodImapServerwill fire appropriate event where you can internallyhandle the action and return positive or negativeresult. You should also deal with message flags.wodImapServer does not deal with message storage - youshould do it by yourself. It will deal with structuresand references to folders and messages - but actualcontents of messages cannot be handled bywodImapServer. Rather, it will depend on your code whenmessages are accessed, hoping that you providedproperly formatted messages and proper flaginformation. If you don't - it will not complain, butIMAP clients may...You should consider all wodImapServer folder as virtualfolders - none of them doesn't necessarily exist onyour system. Each time wodImapServer requires list offolders, or list of messages - event is fired to notifyyou to populate his collections with appropriateinformation - and that's all. You can keep messages indatabase, on external system, or wherever you need - aslong as you can provide necessary information onwodImapServer's request.