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 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-02-18 12:11:09 -07:00
parent 5c30d2dfcc
commit c1794752f3
1 changed files with 4 additions and 4 deletions

View File

@ -9,15 +9,15 @@
DATABASE_URL=postgresql://votc:votc_password@localhost:5432/votc 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_PORT=587
SMTP_USER=noreply@jeffemmett.com SMTP_USER=noreply@example.com
SMTP_PASS=changeme SMTP_PASS=changeme
# Email sender address # Email sender address
EMAIL_FROM=Valley of the Commons <noreply@jeffemmett.com> EMAIL_FROM=Valley of the Commons <noreply@example.com>
# ============================================ # ============================================
# Admin Configuration # Admin Configuration