Email Software

QPSMTPD

Free Software

 


skximapd : A trivial IMAP Framework

This software is a stub IMAP server which is designed to be driven by inetd.

It is in no way a complete product, or project, rather it is a framework which can be fleshed out to provide your own custom IMAP server.

top
How It Works

There is a simple driver skximap::core which reads commands from STDIN and dispatches control.

All code that actually deals with messages is contained in the module skximap::local - Thats the part you need to replace, rewrite, or extend to do your own funky things.

Thus far the "extension" must support the following methods:

FunctionPurpose
login($user,$pass)Test the password + username for access.
get_folders($user)Return the folders available to the given user.
count_messages($folder)Could the messages in the given folder
get_message($folder,$msg)Get a single message.
top
Download

The following parts are available:

top