From 4e69492bd03eb8b41d5f18f9c8a7723162318bb5 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Fri, 20 Feb 2026 20:15:25 +0000 Subject: [PATCH] chore: migrate SMTP from mx.jeffemmett.com to mail.rmail.online Co-Authored-By: Claude Opus 4.6 --- api/application.js | 2 +- api/waitlist-db.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/api/application.js b/api/application.js index 2fdf762..d4d60ea 100644 --- a/api/application.js +++ b/api/application.js @@ -12,7 +12,7 @@ const pool = new Pool({ // Initialize SMTP transport (Mailcow) const smtp = nodemailer.createTransport({ - host: process.env.SMTP_HOST || 'mx.jeffemmett.com', + host: process.env.SMTP_HOST || 'mail.rmail.online', port: parseInt(process.env.SMTP_PORT || '587'), secure: false, auth: { diff --git a/api/waitlist-db.js b/api/waitlist-db.js index fbb6043..953cafd 100644 --- a/api/waitlist-db.js +++ b/api/waitlist-db.js @@ -12,7 +12,7 @@ const pool = new Pool({ // Initialize SMTP transport (Mailcow) const smtp = nodemailer.createTransport({ - host: process.env.SMTP_HOST || 'mx.jeffemmett.com', + host: process.env.SMTP_HOST || 'mail.rmail.online', port: parseInt(process.env.SMTP_PORT || '587'), secure: false, auth: {