Mailcow alternative.
Modern surface, same control.
Vectis Mail uses the same Postfix/Dovecot/Rspamd stack as Mailcow. The differences: declarative YAML config, a 40+ endpoint REST API, inbound webhooks, and atomic updates with automatic rollback. Half the containers, none of the bash. A modern alternative to Mailcow for teams who want the same self-hosted control with developer-friendly ergonomics.
At a glance
Side-by-side, current as of May 2026.
| Vectis Mail | Mailcow | |
|---|---|---|
| Mail stack | Postfix · Dovecot · Rspamd | Postfix · Dovecot · Rspamd |
| Container count (default) | 14 | 25+ [1] |
| Configuration model | Declarative YAML + vectis apply | Bash mailcow.conf + web UI |
| REST API | 40+ endpoints (sending, webhooks, domains, mailboxes, analytics) | Minimal admin API only |
| Transactional sending API | Yes — domain-scoped keys, batch, attachments | SMTP submission with mailbox creds |
| Inbound webhooks | Yes — HMAC-signed, retry-with-backoff | No |
| Update model | Atomic 6-phase orchestrator with auto-rollback | Manual update.sh script |
| Per-domain analytics | Yes (Pro) | No |
| Webmail | Roundcube | SOGo |
| Calendar / contacts (CalDAV/CardDAV) | Not yet (Phase 4 roadmap) | Yes (SOGo) |
| Admin UI | React SPA | PHP / Twig |
| License | Business Source License 1.1 (auto-Apache 2.0 after 4y); commercial Pro license | GPL-3.0 |
| Pricing | $0 Starter · $29 USD/tenant/month Pro | $0 · paid ServerCow support optional |
| Maturity | v0.1.x — production since April 2026 | 12+ years, large community |
The verdict
Choose Vectis Mail when…
- You want one config file, not a bash env + web UI dance.
- You need a real sending API + inbound webhooks (replacing SendGrid/Postmark) alongside mailboxes.
- You run a SaaS and need domain-scoped API keys with rate limiting.
- You value orchestrated updates with automatic rollback over manual
update.sh. - You want per-domain analytics, IP warmup tracking, and built-in observability.
- You don't want a bash env file as your source of truth.
Stay on Mailcow when…
- You need SOGo groupware (calendar/contacts) and can't migrate that out separately.
- You already have a ServerCow support contract that works for you.
- You value 12 years of mindshare over Vectis Mail's newer codebase.
- Your team has deep institutional knowledge of
mailcow.conf.
How they differ
Configuration model
Mailcow's configuration lives in a bash-style env file (mailcow.conf) plus
per-service overrides in data/conf/. Adding a domain, rotating a DKIM key,
or changing rate limits typically means a sequence of web-UI clicks or editing files
then restarting services. There's no API for config-as-code.
Vectis Mail uses a single config.yaml as the source of truth.
vectis apply diffs the desired state against running state, regenerates
affected service configs (Postfix, Dovecot, Rspamd, Traefik), and reloads only what
changed. The same operations are also exposed via the REST API, so Terraform, Ansible,
or your own automation can manage Vectis Mail declaratively.
API surface
Mailcow has a minimal API focused on admin operations. It doesn't expose a sending API, inbound webhooks, or per-domain analytics endpoints. To send programmatic email through Mailcow, you authenticate against SMTP submission using a mailbox's username + password.
Vectis Mail has 40+ endpoints covering sending (single + batch with attachments), inbound webhooks (full body parsing, HMAC-signed payloads, exponential-backoff retry), mailbox/alias/domain CRUD, analytics, audit logs, and admin operations. Domain-scoped API keys with per-domain rate limits make it usable as a real transactional service: a SendGrid replacement that you host yourself.
See the API Reference for the full surface.
Update + rollback
Mailcow updates run via update.sh: it pulls new images and restarts
containers. There's no automatic snapshot, no health-check gate, no rollback. If a
migration breaks, recovery is whatever you do manually.
Vectis Mail's orchestrator runs a 6-phase pipeline:
- Snapshot — Postgres dump + Compose backup taken before any change.
- Migrate — forward-only SQL migrations applied with row-level locking.
- Pull — new container images pulled and verified.
- Deploy — services recreated with the new images.
- Health-check — Postfix, Dovecot, Rspamd, API, Traefik all probed for liveness + actual mail-handling readiness.
- Complete — change locked in, snapshot retained for the rollback window.
Any phase failure triggers automatic rollback to the snapshot. The Plan/Apply UI shows the diff before you run it. See Installation for the full update model.
Observability
Both ship Rspamd, Postfix logs, and Dovecot logs. Vectis Mail also includes Prometheus-format metrics and health alerts out of the box (with an optional Grafana + Loki stack, off by default), plus per-domain analytics on the Pro tier (delivery rates, bounce rates, IP warmup progress, RBL status). Mailcow users typically wire their own metrics stack on top.
Webmail + groupware
Mailcow ships SOGo, which includes CalDAV/CardDAV and ActiveSync. That makes Mailcow a credible Exchange replacement for orgs that actively use the calendar and contacts features. Vectis Mail ships Roundcube webmail with ManageSieve filters but doesn't yet ship calendar/contacts; that's on the Phase 4 roadmap. If groupware is a hard requirement, this is the biggest functional gap.
Pricing
Both are free to self-host. Mailcow's revenue comes from optional ServerCow support contracts. Vectis Mail's Starter tier is free; Pro adds unlimited domains, per-domain analytics, advanced spam controls, OIDC SSO, and priority support for $29 USD/tenant/month, with one subscription covering unlimited Vectis Mail installs. See pricing.
Migrating from Mailcow to Vectis Mail
Because both products use Postfix + Dovecot + Rspamd under the hood, the mail data migrates cleanly. The typical sequence:
- Stand up Vectis Mail on a fresh VPS following the installation guide. Configure your domain(s) but leave DNS pointed at Mailcow for now.
- Sync mailbox data with
imapsyncordoveadm backup: both Mailcow and Vectis Mail are vanilla Dovecot underneath, so the maildir structure transfers directly. - Generate new DKIM keys on Vectis Mail and publish them to DNS alongside the existing Mailcow keys. Run both in parallel during the switchover.
- Export Sieve filters (per-user) from Mailcow Dovecot and import into Vectis Mail Dovecot (same file format).
- Export SOGo data (calendar / contacts) to iCal/vCard if needed. Vectis Mail can't import these directly. This is the only non-trivial step.
- Cut DNS over: update MX to point at the Vectis Mail server. Mail starts flowing through Vectis Mail as DNS propagates.
- Verify + decommission: watch logs for a few days, then decommission Mailcow.
Realistic timeline: 2–4 hours for a small (<50 mailbox) install on a quiet day, or a few days of staged migration for larger installs.
Frequently asked questions
Is Vectis Mail a drop-in replacement for Mailcow?
Mostly yes for the mail stack itself. Both use Postfix, Dovecot, and Rspamd under the hood, so mail data migrates cleanly via standard IMAP-to-IMAP sync. Vectis Mail doesn't ship SOGo groupware (CalDAV/CardDAV), so calendar and contacts data needs to be exported separately if you use those features in Mailcow.
How do Vectis Mail and Mailcow compare on container count?
Vectis Mail ships 14 containers by default (10 if you disable observability and ClamAV). Mailcow's compose stack includes 25+ services (mailcow-dockerized/docker-compose.yml, retrieved 12 May 2026). Fewer containers means less coordination overhead during updates and a smaller blast radius when something breaks.
Does Mailcow have a sending API like SendGrid or Postmark?
No. Mailcow exposes SMTP submission with per-mailbox credentials but doesn't ship a domain-scoped REST API for programmatic sending, inbound webhooks, or per-domain analytics. Vectis Mail's API has 40+ endpoints for sending, mailboxes, webhooks, domains, analytics, and admin operations.
Can I migrate from Mailcow to Vectis Mail without downtime?
A short cutover window (typically 30–60 minutes during DNS propagation) is realistic for small installs. Both servers can run in parallel during preparation: mailboxes sync via imapsync, DKIM keys roll over with overlap, and the final MX switch is the only customer-visible change. Larger installs benefit from a staged migration over a few days.
Why would I stay on Mailcow?
You need SOGo groupware and can't move calendar/contacts out separately. You value 12 years of production maturity over Vectis Mail's newer codebase. You already have a ServerCow support contract that's working for you. If none of those apply, Vectis Mail's modern surface is the better call.
Try Vectis Mail
Production mail server in minutes. Same self-hosted stack, modern surface.
Other Vectis Mail alternatives
Coming from a different stack? Read the comparison that matches it.
vs iRedMail →
Compared with the long-running OS-native open-source mail stack: REST API, declarative YAML, Rspamd by default.
vs Mail-in-a-Box →
One-command personal email sovereignty vs API-first multi-tenant infrastructure. When each is the right fit.
vs SendGrid →
Same API surface, no per-email pricing. Flat $0–$49/mo covers unlimited sending volume.
vs Postmark →
Flat $0–$49/mo self-host vs the developer-loved transactional SaaS. Same API, mailboxes included.