From c1794752f32bccd13e2f6337d463b4eac4941e03 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Wed, 18 Feb 2026 12:11:09 -0700 Subject: [PATCH] security: remove real SMTP host/user from .env.example Replace mx.jeffemmett.com and noreply@jeffemmett.com with generic placeholders to avoid GitGuardian SMTP credential alerts. Co-Authored-By: Claude Opus 4.6 --- .env.example | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.env.example b/.env.example index cb06d30..4927e9b 100644 --- a/.env.example +++ b/.env.example @@ -9,15 +9,15 @@ DATABASE_URL=postgresql://votc:votc_password@localhost:5432/votc # ============================================ -# SMTP Email (Mailcow) +# SMTP Email # ============================================ -SMTP_HOST=mx.jeffemmett.com +SMTP_HOST=mail.example.com SMTP_PORT=587 -SMTP_USER=noreply@jeffemmett.com +SMTP_USER=noreply@example.com SMTP_PASS=changeme # Email sender address -EMAIL_FROM=Valley of the Commons +EMAIL_FROM=Valley of the Commons # ============================================ # Admin Configuration