V Mail Server

Home
News
Documentation
Todo

SF Dev Page:
Download



SourceForge Logo

Documentation

More information is in the README provided in the package.

Files
src/All the source code for the programs
bin/The compiled programs
bin/vmsdThe V Mail Server Daemon. The main program that accepts mail and puts in on the hard disk.
bin/vsmtpsendProgram to that will send an email file to another SMTP Server.
scripts/Containts scripts that can be triggered when an email is received.
/etc/vms.confConfig file for vmsd

File Format
The file format for each email is as follows:

(mail from address)
(rcpt to line)
(2nd rcpt to line if used)
(3rd rcpt to, etc etc)
DATA
(email contents)
.
Note: The last line is a decimal point (.) on its own (CRLF.CRLF)

Example:
<bob@bob.com>
<greg@bob.com>
<mary@bob.com>
DATA
From: "Bob" <bob@bob.com>
TO: "Greg" <greg@bob.com>
cc: "Mary" <mary@bob.com>
Subject: Hello

Hi Greg and Mary

blah blah blah

Bye
.