Skip to main content
OxiMail is a single Rust binary. Installing it means getting one executable onto a server, placing a config file next to it, and running it as a service. There is no Postfix, no Dovecot, and no web server to install alongside it. This page covers getting OxiMail onto a host. Once it is running, the first boot and setup wizard walks you through DNS, DKIM, TLS, and your first account.

Requirements

OxiMail is built and tested on Debian 13. The installer refuses to run on other distributions or Debian versions, because the build dependencies and library versions are pinned to that target.
OxiMail cannot be built on Windows or macOS. The build needs OpenSSL and SQLCipher development libraries that are provided by the Debian packages below. Build on a Debian 13 machine (a VPS, an LXC container, or a VM).

System dependencies

The build needs a C toolchain plus the OpenSSL and SQLCipher development headers:
You also need a stable Rust toolchain. If rustc is not already present, install it with rustup:

Ports

OxiMail listens on the standard mail and web ports. Open them in your firewall (and any cloud provider security group) before you start the server. The setup wizard checks these and warns you about anything blocked. Ports 25, 443, and 587 are the minimum for a working mail server. The IMAP ports (143/993) only matter if you enable the legacy feature for IMAP clients. CalDAV and CardDAV are served over the same HTTPS port (443) as JMAP, so they need no extra ports.

Getting the binary

There is no published prebuilt-binary download today: you build OxiMail from source. The build produces a single self-contained executable (around 70 MB) that you copy to the server.
A public source repository and a one-line installer are part of the project roadmap, not something you can rely on yet. Build from source as described below. If you see a one-liner referenced elsewhere, treat it as not-yet-live and verify before depending on it.

Build from source

From a clone of the source tree on a Debian 13 host:
The two feature flags are: Build with --features passkey,legacy if you want legacy mail clients (IMAP) and DAV clients to connect. The release build takes roughly 5 to 15 minutes depending on the machine, and the binary lands at target/release/oximail. A clone also ships an install.sh at the repository root that runs the whole sequence (system packages, Rust, compile, install, then launch the setup wizard) in one go. It is convenient on a fresh VPS, but the manual steps below give you control over each stage.

Placing and running the binary

Install the binary and its directories

Copy the compiled binary into place and create the runtime directories. A dedicated system user keeps the service from running as root:
Because OxiMail binds to privileged ports (25, 443, 587) but runs as a non-root user, grant the binary the capability to bind low ports instead of running it as root:
If setcap is missing, install libcap2-bin first.

Configuration file

OxiMail reads a single TOML config file. The conventional location is /etc/oximail/oximail.toml. The source tree ships a fully commented example at config/oximail.example.toml that you can copy as a starting point:
A minimal production config sets the hostname, the bind addresses, the storage paths, and ACME for TLS:
The full reference, including every key and the TOML-plus-database override model, is in Configuration. In most cases you let the setup wizard generate the config rather than writing it by hand.

Run as a systemd service

Install a systemd unit so OxiMail starts at boot and restarts on failure. Logs go to the journal (run journalctl -u oximail), so there is no log file to rotate. Create /etc/systemd/system/oximail.service:
Then enable and start it:
For interactive setup the first time, you can run oximail setup directly instead of starting the service. The wizard creates the config, your admin account, and your DKIM keys, then hands off to the service.

What’s next