This is an old revision of the document!
Stalwart Mail Server
work in progress
Stalwart Step into the future with Stalwart, the open-source e-mail powerhouse blending modern features with unparalleled security, speed, and scalability.
It's a modern emal server writte in Rust.
Installation
seradd -m -d /data/daemons/stalwart stalwart mkdir /data/stalwart chown stalwart:stalwart /data/stalwart
- docker-compose.yml
name: stalwart services: mail-server: tty: true stdin_open: true ports: - 2443:443 - 10025:125 # port 25 seems to create troubles in podman... - 2080:8080 - 2587:587 - 2465:465 - 2143:143 - 2993:993 - 4190:4190 - 2110:110 - 2995:995 volumes: - /data/stalwart:/opt/stalwart-mail container_name: stalwart-mail image: stalwartlabs/mail-server:latest networks: - stalwart-net networks: stalwart-net: {}
Note that i have used all ports above 1024 to avoid issues with root-only ports in rootless containers.
podman compose pull podman compose up
Note your admin usernamne and password like:
[mail-server] | 🔑 Your administrator account is 'admin' with password 'xxxx'.
Change the SMTP port to 125 to match the above compose file
Configuration
From the web UI.
Set hostname to your main email server.
Create domain.
Configure DNS properly
Create account.
Open ports from remote to local:
nft add rule wg prerouting iifname "enp1s0" dnat ip to tcp dport map { 25 : 10.100.0.1 . 10025 } nft add rule wg prerouting iifname "enp1s0" dnat ip to tcp dport map { 587 : 10.100.0.1 . 2587 } nft add rule wg prerouting iifname "enp1s0" dnat ip to tcp dport map { 465 : 10.100.0.1 . 2465 } nft add rule wg prerouting iifname "enp1s0" dnat ip to tcp dport map { 143 : 10.100.0.1 . 2143 } nft add rule wg prerouting iifname "enp1s0" dnat ip to tcp dport map { 993 : 10.100.0.1 . 2993 } nft add rule wg prerouting iifname "enp1s0" dnat ip to tcp dport map { 4190 : 10.100.0.1 . 4190 } nft add rule wg prerouting iifname "enp1s0" dnat ip to tcp dport map { 995 : 10.100.0.1 . 2995 } nft add rule wg prerouting iifname "enp1s0" dnat ip to tcp dport map { 110 : 10.100.0.1 . 2110 }
Link certificates. Create a certificate in GUI with these values:
%{file:/opt/stalwart-mail/etc/certs/fullchain.pem}% %{file:/opt/stalwart-mail/etc/certs/privkey.pem}%
and copy the certs from /etc/letsencrypt/live/mydomain/[fullchain|privkey].pem to /data/stalwart/etc/certs (create folder and make files readable!)