MXRoute: No Frills Email Hosting
Self hosting email usually means juggling spam filters, debugging DNS propagation, and watching bounce rates spike. MXRoute fixes the operational side of that puzzle. They run the infrastructure. You get unmetered mailboxes, a predictable monthly fee, and a setup that prioritizes deliverability over marketing gimmicks. The platform does email only. It does it well.
Why MXRoute Stands Out
MXRoute charges a flat rate for storage. You do not pay per user. You do not watch outbound limits tick up during a campaign. The stack separates inbox traffic from outbound relay traffic. They handle IP rotation and reputation monitoring behind the scenes. You point your DNS and start routing.
Webmail options cover your daily workflow. Roundcube ships as the default interface. Crossbox is available for a lighter layout. Both support folder management, server side rules, and autoresponders. CalDAV lives at dav.mxroute.com for calendar and task sync. Standard password authentication handles everything. No OAuth flows to break on token refresh.
The platform does not try to be a CRM or a helpdesk. It routes mail. That focus keeps the stack stable and the pricing predictable. You get a clean foundation for personal domains, small teams, and automation workflows.
DNS Configuration
MX records depend on your assigned server. MXRoute provisions them per customer. Replace the placeholder in your zone with the exact values shown in your control panel. Your account dashboard at panel.mxroute.com shows your specific hostname.
yourserver.mxrouting.net. IN MX 10 yourserver.mxrouting.net.
yourserver-relay.mxrouting.net. IN MX 20 yourserver-relay.mxrouting.net.
SPF uses strict alignment. MXRoute recommends -all to reject unauthorized senders outright. That setting protects your domain reputation faster than soft rejections.
v=spf1 include:mxroute.com -all
DKIM requires a TXT record. Your panel provides the selector and the base64 string. Create the entry exactly as shown.
s20240801._domainkey IN TXT "v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA..."
DMARC enforces the alignment. Use strict policies to get the cleanest validation results from major providers. Route aggregate reports to a monitoring address you control.
_dmarc IN TXT "v=DMARC1; p=reject; rua=mailto:dmarc@yourdomain.com; ruf=mailto:dmarc@yourdomain.com; adkim=s; aspf=s"
Run dig txt yourdomain.com and dig txt _dmarc.yourdomain.com after you push the changes. Verify the strings return exactly as written. Mismatched qualifiers break authentication before any message leaves your server. MXRoute documents the exact record formats in their knowledge base. Follow those entries to avoid propagation delays.
Webmail and Client Setup
Roundcube and Crossbox handle browser access. Login uses your full address and the password set during account creation. Folders, filters, and autoresponders work natively.
External clients connect via standard ports. IMAP runs on 993. SMTP runs on 587 with STARTTLS. Authentication uses PLAIN or LOGIN. CalDAV points to dav.mxroute.com for sync. Thunderbird, Outlook, and Apple Mail connect without extra plugins. Set the hostname to your assigned mail server. Disable OAuth unless your organization forces it. Standard auth keeps the stack lightweight and avoids token refresh failures.
You can also route automated scripts through the relay endpoint. Point your application SMTP config to the relay host on port 587. Use the credentials from your panel. Keep the TLS handshake enabled. MXRoute drops unencrypted logins on the relay by default.
Spam Filtering and Deliverability
The backend runs a tuned SpamAssassin profile. New accounts get automated filtering through panel.mxroute.com. You manage whitelists, blacklists, and score thresholds inside their interface now. Add your own domains and transactional senders early. That stops heuristic checks from flagging your own mail.
Deliverability depends on IP reputation. MXRoute handles PTR records and reverse DNS for their relay pool. You point DNS and start sending. Monitor the panel for bounce logs and quarantine stats. Warm your volume gradually. Keep hard bounces under two percent. The panel auto purges invalid addresses. You avoid manual cleanup.
The spam filter catches obvious phishing and bulk mailing lists. Legitimate mail sometimes lands in quarantine when you first enable it. Review the quarantine queue in the panel. Whitelist the sender or adjust the score threshold for that specific rule. The interface shows the exact SA headers so you can trace the trigger. You do not need to edit backend config files. The panel exposes the same scoring logic. MXRoute publishes their filtering defaults in their documentation. Reference those tables when you tune rules for niche domains.
When to Skip It
Skip this stack if you need shared team mailboxes with granular permissions or a built in calendar sharing workspace. MXRoute gives you CalDAV, not a collaboration suite. It also assumes you manage DNS elsewhere. That separation keeps the mail stack isolated from your web server. It speeds up troubleshooting when something breaks.
Point your MX records, verify authentication, and check the SMTP dialogue if a message stalls. Most delivery failures come from missing HELO identifiers or mismatched DNS. Fix those first. The rest follows. MXRoute handles the heavy lifting. You just keep the records clean and the volume steady.