A complete mail system consits of multiple components. Using Illumos Zones as a containerization technology each component runs independent. This simplyfies management and isolates failures.
Controller, The API Endpoint | Offers a JSON/Rest API to manages Accounts and Aliases |
---|---|
MX-Server | Accepts Emails from the Internet, Scans for Spam and Malware and delivers it to the Mailbox Server |
Mailbox Server | This system is responsible for storing your mailbox and makes it available via POP and IMAP |
Submission | If you want to send Email your Client submits it to this system and it will make sure it gets deliverd to its recipient. |
Each component holds a full replica of the account and alias database. This allows them to continue working even if communication to the controller is disrupted. MX and Submission Servers can be placed in multiple datacenters.
TLS/SSL encryption is used between servers and clients. This helps against passive snooping along the way.
As your mailvolume grows so can your infrastructure. Seperation of MX and Submission systems allows to scale this independently. If you are a sender of bulk mail you might want to use more Submission servers.
All software and deployment code is open-source and published on GitHub.