/install stalwart-dokploy-resend-relay
Stalwart on Dokploy (Resend Relay Default)
Use this skill to deploy a production-ready Stalwart server on a new VPS managed by Dokploy.
Default assumption:
- outbound SMTP port
25is blocked by provider/network - outbound mail must go through
smtp.resend.com:587
Scope
This skill covers:
- preflight validation (MX, Dokploy, Stalwart)
- Stalwart deployment on Dokploy
- domain + DNS records for mailbox hosting
- TLS certificate setup for mail/web endpoints
- mailbox and admin provisioning
- relay route to Resend SMTP
- verification for IMAP/SMTP and queue behavior
Triggers
- "set up stalwart on new vps"
- "install mail server on dokploy"
- "stalwart with resend relay"
- "smtp 25 blocked setup"
- "host support@ mailbox on vps"
Required Inputs
- Domain: e.g.
example.com - Mail host: e.g.
mail.example.com - VPS SSH access
- Dokploy access
- Resend API key
Mandatory Preflight (Run First)
Before any configuration changes, run all checks below.
1. DNS/MX check
dig +short MX \x3Cdomain>
dig +short A mail.\x3Cdomain>
Pass criteria:
- MX includes
mail.\x3Cdomain>with valid priority mail.\x3Cdomain>resolves to VPS public IP
If fail:
- stop and prompt user to fix DNS first
- optionally offer to provide exact records to add
2. Dokploy existence check
On VPS:
docker ps --format '{{.Names}} {{.Image}}' | grep -i dokploy
Pass criteria:
- Dokploy services are running
If fail:
- prompt user: install Dokploy now?
- if user approves auto-install, install and verify Dokploy before continuing
3. Stalwart existence check
On VPS:
docker ps --format '{{.Names}} {{.Image}}' | grep -i stalwart
Pass criteria:
- existing Stalwart service/container found
If fail:
- prompt user: install Stalwart automatically via Dokploy now?
- if approved, deploy Stalwart and continue
Decision Flow (Required)
Use this exact branching logic:
- If MX is incorrect:
- do not proceed with mailbox validation
- provide DNS fix instructions
- wait for user confirmation and re-check
- If Dokploy missing:
- ask user whether to install automatically
- if yes, install Dokploy and verify
- if no, stop with clear manual prerequisites
- If Stalwart missing:
- ask user whether to install automatically in Dokploy
- if yes, deploy Stalwart and verify
- if no, stop with required manual steps
Only continue to next phases when all three preflight checks pass.
DNS Baseline
Add/verify these records:
- Mail host A:
mailA->\x3CVPS_PUBLIC_IP>
- Inbound MX:
@MXpriority10->mail.\x3Cdomain>
- SPF for domain:
@TXT->v=spf1 mx include:amazonses.com -all
- DMARC starter:
_dmarcTXT->v=DMARC1; p=none;
Notes:
- Keep existing Resend send-domain records (
send.\x3Cdomain>MX/SPF/DKIM) if used. - Root-domain MX for mailbox hosting and
send.\x3Cdomain>MX for sending workflows can coexist.
Deploy Stalwart in Dokploy
- Use Stalwart image (
stalwartlabs/stalwart:latest-alpine) - Expose/route ports:
25,465,587,993,8080,443 - Persist volumes for
/etc/stalwart,/var/lib/stalwart,/opt/stalwart-mail
If bootstrap keeps resetting after restart, fix volume ownership:
sudo chown -R 2000:2000 /var/lib/docker/volumes/\x3Cstalwart-volume>/_data
Stalwart Bootstrap
- Complete bootstrap once (default domain, hostname, internal directory)
- Confirm admin account is persistent after restart
Target settings:
- default hostname:
mail.\x3Cdomain> - default domain:
\x3Cdomain>
TLS Certificate (must not be self-signed)
Use Let’s Encrypt for mail.\x3Cdomain>:
sudo certbot certonly --standalone -d mail.\x3Cdomain> --non-interactive --agree-tos -m support@\x3Cdomain>
Then import the cert into Stalwart certificate store and set as defaultCertificateId.
If the UI create form rejects the PEM with No certificates found in PEM, create the certificate through the JMAP x:Certificate/set endpoint instead, using the leaf certificate PEM and private key, then set x:SystemSettings.defaultCertificateId to the created certificate object ID and restart Stalwart so 465/993 pick up the new cert.
Verify:
openssl s_client -connect mail.\x3Cdomain>:465 -servername mail.\x3Cdomain> \x3C /dev/null 2>/dev/null | openssl x509 -noout -subject -issuer -dates
openssl s_client -connect mail.\x3Cdomain>:993 -servername mail.\x3Cdomain> \x3C /dev/null 2>/dev/null | openssl x509 -noout -subject -issuer -dates
Expected:
- CN includes
mail.\x3Cdomain> - issuer is Let’s Encrypt (not self-signed)
Create Mailboxes
Create at least:
- admin mailbox (e.g.
admin@\x3Cdomain>) - support mailbox (e.g.
support@\x3Cdomain>)
Verify auth from server side:
# IMAP auth test
openssl s_client -quiet -crlf -connect 127.0.0.1:\x3Cmapped-993> \x3C\x3C\x3C'a1 LOGIN support@\x3Cdomain> \x3Cpassword>'
# SMTP auth test
# AUTH PLAIN with base64(\0user\0pass)
Critical Default: Outbound Relay via Resend
When port 25 egress is blocked, do not use direct MX delivery route for outbound.
Configure in Stalwart:
- Create route
relay(@type: Relay):
- address:
smtp.resend.com - port:
587 - implicitTls:
false - authUsername:
resend - authSecret:
\x3CRESEND_API_KEY>
- Update
x:MtaOutboundStrategyroute expression:
- keep local delivery rule for local domains
- set default route
elseto'relay'
Resulting behavior:
- local recipient domains -> local route
- external recipients -> Resend relay route
Web Admin Routing (Dokploy)
Map host to Stalwart web service (container port 8080):
- Host:
mail.\x3Cdomain> - Path:
/ - Internal Path:
/ - HTTPS: enabled
- Redeploy after domain change
Admin UI URL:
https://mail.\x3Cdomain>/admin/
Verification Checklist
- DNS:
dig +short MX \x3Cdomain>
dig +short A mail.\x3Cdomain>
- Ports:
nc -zv mail.\x3Cdomain> 993
nc -zv mail.\x3Cdomain> 465
nc -zv mail.\x3Cdomain> 25
-
IMAP/SMTP login works for
support@\x3Cdomain>. -
Queue health:
x:QueuedMessage/getshould not accumulate permanentTemporaryFailureentries.- If messages stay
Scheduledtoo long, inspect route/worker status and restart service.
- End-to-end test:
- send external test mail from Thunderbird and verify delivery
- send inbound test to
support@\x3Cdomain>and verify receipt
Thunderbird Client Settings
Use manual settings (autodiscovery may fail):
- IMAP:
mail.\x3Cdomain>/993/SSL/TLS/Normal password - SMTP:
mail.\x3Cdomain>/465/SSL/TLS/Normal password - username: full email address
If direct outbound delivery remains blocked and Stalwart queue is not healthy, temporary fallback:
- SMTP server in client:
smtp.resend.com - port:
465(SSL/TLS) or587(STARTTLS) - username:
resend - password: Resend API key
Common Failure Modes
- Bootstrap not persisting
- Cause: wrong volume permissions
- Fix:
chownvolumes to stalwart user (2000:2000)
- TLS cert mismatch/self-signed
- Cause: default cert still active
- Fix: import LE cert and set default certificate in
x:SystemSettings - If the UI errors with
No certificates found in PEM, use JMAPx:Certificate/setwith the leaf PEM + private key, then restart Stalwart
- External send fails, queue error
Network unreachable (os error 101)
- Cause: blocked outbound 25
- Fix: force outbound route to Resend relay
- Inbound mail not arriving
- Cause: MX or port 25 path wrong/firewall
- Fix: validate DNS MX + open/route tcp 25 end-to-end
Exit Criteria
Complete when:
- preflight checks all pass (MX, Dokploy, Stalwart)
https://mail.\x3Cdomain>/admin/opens- valid LE cert is presented on 465/993/443
support@\x3Cdomain>can authenticate over IMAP/SMTP- inbound mail to
support@\x3Cdomain>is received - outbound to external recipients is delivered via relay without queue stall
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install stalwart-dokploy-resend-relay - After installation, invoke the skill by name or use
/stalwart-dokploy-resend-relay - Provide required inputs per the skill's parameter spec and get structured output
What is Stalwart Dokploy Resend Relay?
Set up Stalwart Mail Server on a new VPS via Dokploy, with default outbound delivery through Resend SMTP relay for environments where direct SMTP port 25 egr... It is an AI Agent Skill for Claude Code / OpenClaw, with 12 downloads so far.
How do I install Stalwart Dokploy Resend Relay?
Run "/install stalwart-dokploy-resend-relay" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Stalwart Dokploy Resend Relay free?
Yes, Stalwart Dokploy Resend Relay is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Stalwart Dokploy Resend Relay support?
Stalwart Dokploy Resend Relay is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Stalwart Dokploy Resend Relay?
It is built and maintained by clarezoe (@clarezoe); the current version is v1.1.2.