From 75af89de30e9aa484857de019641ce1292ad7682 Mon Sep 17 00:00:00 2001 From: Andrei Brebene Date: Tue, 31 Mar 2026 16:48:56 +0300 Subject: [PATCH] docs: remove SMTP and webhook env vars (configured via Admin UI only) Made-with: Cursor --- README.md | 9 --------- docker-compose.yml | 14 -------------- server/.env.example | 11 ----------- 3 files changed, 34 deletions(-) diff --git a/README.md b/README.md index 22ac4b9..3de2e8f 100644 --- a/README.md +++ b/README.md @@ -244,15 +244,6 @@ trek.yourdomain.com { | `OIDC_CLIENT_SECRET` | OIDC client secret | — | | `OIDC_DISPLAY_NAME` | Label shown on the SSO login button | `SSO` | | `OIDC_ONLY` | Disable local password auth entirely (first SSO login becomes admin) | `false` | -| **SMTP** | *Also configurable from Admin > Settings > Notifications* | | -| `SMTP_HOST` | SMTP server hostname | — | -| `SMTP_PORT` | SMTP port (`587` for STARTTLS, `465` for SSL) | — | -| `SMTP_USER` | SMTP username | — | -| `SMTP_PASS` | SMTP password | — | -| `SMTP_FROM` | Sender address for notification emails | — | -| `SMTP_SKIP_TLS_VERIFY` | Skip TLS certificate verification (self-signed certs) | `false` | -| **Webhook** | *Also configurable from Admin > Settings > Notifications* | | -| `NOTIFICATION_WEBHOOK_URL` | Discord or Slack webhook URL for notifications | — | | **Other** | | | | `DEMO_MODE` | Enable demo mode (hourly data resets) | `false` | diff --git a/docker-compose.yml b/docker-compose.yml index 260abd3..643019d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -41,20 +41,6 @@ services: # Set true to disable local password auth entirely (SSO only) # - OIDC_ONLY=false - ## ── SMTP (email notifications) ────────────────────────────── - ## Can also be configured from Admin > Settings > Notifications - # - SMTP_HOST=smtp.example.com - # - SMTP_PORT=587 - # - SMTP_USER=trek@example.com - # - SMTP_PASS=secret - # - SMTP_FROM=trek@example.com - # Skip TLS certificate verification (self-signed certs) - # - SMTP_SKIP_TLS_VERIFY=false - - ## ── Webhook (Discord / Slack notifications) ───────────────── - ## Can also be configured from Admin > Settings > Notifications - # - NOTIFICATION_WEBHOOK_URL=https://discord.com/api/webhooks/... - ## ── Demo mode (resets data hourly) ────────────────────────── # - DEMO_MODE=false volumes: diff --git a/server/.env.example b/server/.env.example index 684a5d3..f577725 100644 --- a/server/.env.example +++ b/server/.env.example @@ -24,16 +24,5 @@ LOG_LEVEL=info # OIDC_ADMIN_CLAIM=groups # OIDC_ADMIN_VALUE=app-trek-admins -# ── SMTP (email notifications) ───────────────────────────────── -# SMTP_HOST=smtp.example.com -# SMTP_PORT=587 -# SMTP_USER=trek@example.com -# SMTP_PASS=secret -# SMTP_FROM=trek@example.com -# SMTP_SKIP_TLS_VERIFY=false - -# ── Webhook (Discord / Slack notifications) ──────────────────── -# NOTIFICATION_WEBHOOK_URL=https://discord.com/api/webhooks/... - # ── Demo ─────────────────────────────────────────────────────── # DEMO_MODE=false