NoahsKI / plugins /env.auth
noah33565's picture
Upload 447 files
d613ffd verified
# ═══════════════════════════════════════════════════════════════════════════════
# AUTHENTICATION PLUGIN - EMAIL CONFIGURATION
# ═══════════════════════════════════════════════════════════════════════════════
# SMTP Server Settings (fΓΌr Email-Versand)
# ─────────────────────────────────────────────────────────────────────────────
# Beispiel fΓΌr Gmail:
SMTP_SERVER=smtp.gmail.com
SMTP_PORT=587
SMTP_USER=deine-email@gmail.com
SMTP_PASSWORD=dein-app-passwort
# Beispiel fΓΌr Outlook/Hotmail:
# SMTP_SERVER=smtp-mail.outlook.com
# SMTP_PORT=587
# SMTP_USER=deine-email@outlook.com
# SMTP_PASSWORD=dein-passwort
# Beispiel fΓΌr Yahoo:
# SMTP_SERVER=smtp.mail.yahoo.com
# SMTP_PORT=587
# SMTP_USER=deine-email@yahoo.com
# SMTP_PASSWORD=dein-app-passwort
# Beispiel fΓΌr custom SMTP (z.B. eigener Server):
# SMTP_SERVER=mail.deine-domain.de
# SMTP_PORT=587
# SMTP_USER=noreply@deine-domain.de
# SMTP_PASSWORD=dein-passwort
# Absender-Info
FROM_EMAIL=noreply@noahski.ai
FROM_NAME=NoahsKI
# ═══════════════════════════════════════════════════════════════════════════════
# GMAIL APP-PASSWORT ERSTELLEN
# ═══════════════════════════════════════════════════════════════════════════════
#
# Wenn du Gmail nutzt, brauchst du ein "App-Passwort" (nicht dein normales Passwort):
#
# 1. Gehe zu: https://myaccount.google.com/security
# 2. Aktiviere "2-Schritt-Verifizierung" (falls noch nicht aktiv)
# 3. Gehe zu "App-PasswΓΆrter"
# 4. WΓ€hle "Mail" und "Windows-Computer" (oder "Anderes GerΓ€t")
# 5. Kopiere das generierte 16-stellige Passwort
# 6. FΓΌge es oben bei SMTP_PASSWORD ein (ohne Leerzeichen)
#
# Beispiel: SMTP_PASSWORD=abcd efgh ijkl mnop (ohne Leerzeichen!)
#
# ═══════════════════════════════════════════════════════════════════════════════
# ═══════════════════════════════════════════════════════════════════════════════
# ALTERNATIVE: MAILGUN (fΓΌr Production)
# ═══════════════════════════════════════════════════════════════════════════════
#
# Mailgun ist ein professioneller Email-Service mit 5000 kostenlosen Emails/Monat
#
# 1. Registriere dich auf: https://www.mailgun.com
# 2. Verifiziere deine Domain (oder nutze ihre Sandbox-Domain)
# 3. Hole dir die SMTP Credentials
# 4. FΓΌge sie hier ein:
#
# SMTP_SERVER=smtp.mailgun.org
# SMTP_PORT=587
# SMTP_USER=postmaster@deine-domain.mailgun.org
# SMTP_PASSWORD=dein-mailgun-passwort
#
# ═══════════════════════════════════════════════════════════════════════════════
# ═══════════════════════════════════════════════════════════════════════════════
# ALTERNATIVE: SENDGRID (fΓΌr Production)
# ═══════════════════════════════════════════════════════════════════════════════
#
# SendGrid bietet 100 kostenlose Emails pro Tag
#
# 1. Registriere dich auf: https://sendgrid.com
# 2. Erstelle einen API Key
# 3. FΓΌge ihn hier ein:
#
# SMTP_SERVER=smtp.sendgrid.net
# SMTP_PORT=587
# SMTP_USER=apikey
# SMTP_PASSWORD=dein-sendgrid-api-key
#
# ═══════════════════════════════════════════════════════════════════════════════