Simple IMAP server
Find a file
2025-09-01 03:22:04 +02:00
.gitignore feat: implemented hash based login command. 2025-02-12 20:53:42 +01:00
auth.c feat: implemented hash based login command. 2025-02-12 20:53:42 +01:00
auth.h feat: implemented hash based login command. 2025-02-12 20:53:42 +01:00
config.def.h feat: implemented hash based login command. 2025-02-12 20:53:42 +01:00
config.mk fix: fixed capitalisation bugs in command parsing 2024-12-24 13:44:12 +01:00
imap.c feat: implemented hash based login command. 2025-02-12 20:53:42 +01:00
imap.h fix: fixed memory leak on exit 2024-08-20 13:17:26 +02:00
imap.routines feat: implemented hash based login command. 2025-02-12 20:53:42 +01:00
LICENSE updated LICENSE 2025-09-01 03:22:04 +02:00
Makefile Fixed makefile uninstall target 2025-09-01 03:21:09 +02:00
README feat: first commit 2024-08-19 22:49:04 +02:00
sis.c fix: fixed memory leak on exit 2024-08-20 13:17:26 +02:00
users.def.h feat: implemented hash based login command. 2025-02-12 20:53:42 +01:00
utils.c TLS1.2 and command execution 2024-08-20 04:57:58 +02:00
utils.h TLS1.2 and command execution 2024-08-20 04:57:58 +02:00

sis - simple imap server
============================
sis is an IMAP server, following the unix philosophy,
trying to be as small as possible while providing
a reliable service.


Requirements
------------
In order to build sis you need... a computer


Installation
------------
Edit config.mk to match your local setup (sis is installed into
the /usr/local namespace by default).

Afterwards enter the following command to build and install sis (if
necessary as root):

    make clean install


Running sis
-----------
By default, sis runs in daemon mode, if you want to avoid detaching use the -d option
    sis -d


Configuration
-------------
The configuration of sis is done by creating a custom config.h
and (re)compiling the source code.