- docker-compose.yml: Add Email__* vars for SMTP provider, host, credentials, and reset template (all referencing env vars from .env) - .env (new, gitignored): Real SMTP credentials for passwort@omsorg-pflegedienste.de - .env.example (new, tracked): Template documenting required env vars for next deploy - .gitignore: Add .env to gitignore so credentials don't leak into git history Mailversand über den bestehenden `SmtpEmailSender` (`omsorgCore/CLAUDE.md`, Abschnitt "Passwort-Reset / E-Mail-Versand") wird damit in Docker Compose aktiviert — zuvor war nur der Console-Provider (kein echter Versand) konfiguriert. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
13 lines
678 B
Bash
13 lines
678 B
Bash
# Email configuration for SMTP-based password reset mail delivery
|
|
# Copy this file to .env and fill in the actual values (especially EMAIL_PASSWORD_RESET_PASSWORD)
|
|
# The .env file is loaded automatically by docker compose and is git-ignored to keep credentials safe
|
|
|
|
EMAIL_PROVIDER=Smtp
|
|
EMAIL_SMTP_HOST=smtps.udag.de
|
|
EMAIL_SMTP_PORT=587
|
|
EMAIL_PASSWORD_RESET_USERNAME=passwort@omsorg-pflegedienste.de
|
|
EMAIL_PASSWORD_RESET_PASSWORD=
|
|
EMAIL_PASSWORD_RESET_SENDER=passwort@omsorg-pflegedienste.de
|
|
EMAIL_PASSWORD_RESET_SUBJECT=Ihr OMSORG Passwort-Reset-Code
|
|
EMAIL_PASSWORD_RESET_BODY_TEMPLATE=Ihr Code lautet: $$RESET_PIN$$\nDer Code ist $$RESET_PIN_EXPIRY_MINUTES$$ Minuten gültig.
|