Stalwart vs Mailcow
Pick Stalwart for a modern, low-footprint mail server — SMTP, IMAP, and JMAP from a single Rust binary that idles near 100 MB and runs on a 1 GB VPS. Pick Mailcow if you want the mature, batteries-included suite — SOGo webmail, ActiveSync, and a polished admin UI — and have 6–8 GB of RAM to give it.
Side by side
Stalwart and Mailcow both let you run your own email instead of renting Google Workspace or Microsoft 365, and both are credible choices. But they answer the question "what should a self-hosted mail server be?" in opposite ways. Stalwart is a single modern binary that does everything in one process; Mailcow is a curated stack of around twenty containers that assembles the classic open-source mail tools into a complete groupware suite. Almost every practical difference — RAM, webmail, mobile sync, how much there is to break — flows from that one architectural split.
One Rust binary vs. the full suite
Stalwart is a ground-up rewrite of the mail stack in Rust. SMTP, IMAP, JMAP, and CalDAV/CardDAV all live inside the same executable, with a built-in web admin for configuration, queues, and TLS. There is no separate MTA, IMAP daemon, database engine, or antispam service to wire together — the whole server is one thing you start and point DNS at. That design is what makes it so light, and it also means fewer moving parts to reason about when something goes wrong.
Mailcow takes the opposite bet. It orchestrates the battle-tested pieces — Postfix for SMTP, Dovecot for IMAP, Rspamd for spam filtering, ClamAV for antivirus, SOGo for webmail and groupware, and a PHP admin UI — into a docker-compose stack that behaves like a single product. You get a mature, well-trodden setup where every component has years of documentation behind it, at the cost of running and updating roughly twenty containers.
Footprint and the VPS you'll need
This is where the split hits your wallet. Stalwart idles near 100 MB and runs comfortably on a 1 GB VPS, so a small, cheap instance is enough for a personal domain or a small team. Mailcow's stack wants 6 GB of RAM as a hard floor and 8 GB in practice, which pushes you onto a noticeably larger — and pricier — box. If you are provisioning a server specifically for mail, that difference can be the gap between the smallest tier and something several times the cost.
Webmail, groupware, and mobile
Mailcow's completeness earns its footprint here. SOGo provides a full webmail client plus shared calendars and contacts, and Mailcow ships an ActiveSync bridge, so iPhone Mail and Outlook configure themselves and sync mail, calendar, and contacts the way users expect from a commercial provider. For a team that just wants email that works like Gmail did, that is a real advantage.
Stalwart deliberately stops at the server boundary. It speaks IMAP and JMAP and does CalDAV/CardDAV, but it does not bundle a webmail UI — you connect Thunderbird, Apple Mail, or any IMAP client, or run a separate webmail such as Roundcube alongside it. That is less turnkey for non-technical users, but it keeps the server itself small and single-purpose.
Protocols: JMAP is the modern twist
Both handle the classics, but Stalwart's JMAP support is a genuine differentiator. JMAP is a modern, efficient HTTP/JSON sync protocol designed to succeed the aging IMAP round-trips, and Stalwart is one of the few servers that implements it as a first-class citizen. If you care about the state of the art in mail protocols — or want to build on top of one — Stalwart is the more forward-looking choice. Mailcow stays firmly in the proven IMAP/SMTP world.
Which to choose
Choose Stalwart for a new deployment where a small footprint, a single moving part, and modern protocols matter, and where "bring your own client" is fine. Choose Mailcow when you want the mature, all-in-one groupware experience — webmail, calendars, ActiveSync — out of the box, and the extra RAM is not a concern. A rough rule of thumb: Stalwart if you are the main user and comfortable with mail clients; Mailcow if you are standing this up for other people who expect a polished, familiar inbox.
The part neither solves: deliverability
One caveat dwarfs the software choice. The hard part of self-hosting email is not the server — it is convincing the rest of the internet to trust it. Whichever you pick, you still need a clean sending IP with a good reputation, a correct reverse-DNS (PTR) record, and properly configured SPF, DKIM, and DMARC. Get those wrong and your mail lands in spam no matter how polished the software is. Budget as much time for DNS and reputation as for the install itself; that, far more than the Stalwart-versus-Mailcow decision, determines whether self-hosted email actually works for you.
Common questions
Stalwart vs Mailcow — which self-hosted mail server should I pick?
Pick Stalwart for a modern, lightweight server: SMTP, IMAP, and JMAP from a single Rust binary on as little as 1 GB of RAM. Pick Mailcow for a mature, all-in-one suite with SOGo webmail, ActiveSync, and a polished admin UI, if you can spare 6–8 GB of RAM.
Which needs less RAM, Stalwart or Mailcow?
Stalwart, by a wide margin. It runs comfortably on a 1 GB VPS and idles near 100 MB, while Mailcow’s roughly 20-container stack wants 6 GB minimum and 8 GB in practice.
Does either include webmail?
Mailcow bundles SOGo webmail and ActiveSync out of the box. Stalwart focuses on the mail server itself — you connect any IMAP or JMAP client, or add a separate webmail such as Roundcube.