Updated SMTP related config values for Dash (#42)

This commit is contained in:
Rosch
2025-11-16 01:10:47 -06:00
committed by GitHub
parent 8a218d9068
commit 0488bd2ead
2 changed files with 86 additions and 15 deletions

67
.env
View File

@@ -69,14 +69,6 @@ POSTGRES_PASSWORD=postgres
# WEB_RECAPTCHA_SECRET
# --------------------
# Google reCAPTCHA v3 secret key.
#
# WEB_SENDGRID_KEY
# ----------------
# Sendgrid API key used for player activation.
#
# Leave blank to disable activation and have
# players be activated immediately upon
# registration.
##############################################
WEB_PORT=80
@@ -91,7 +83,64 @@ WEB_VANILLA_MEDIA=http://media.localhost
WEB_RECAPTCHA_SITE=
WEB_RECAPTCHA_SECRET=
WEB_SENDGRID_KEY=
##############################################
# Email
##############################################
#
# EMAIL_METHOD
# ------------
# This is the method that will be used for
# email. It accepts the following options:
# - SENDGRID
# - SMTP
#
# Leave blank to disable activation and have
# players be activated immediately upon
# registration.
#
# EMAIL_FROM_ADDRESS
# ---------------
# The mailbox you're sending the email from.
# This is typically the same as
# EMAIL_SMTP_PASS but may be another mailbox
# that user has access to.
#
# EMAIL_SENDGRID_KEY
# ---------------
# Sendgrid API key used for player activation.
#
# EMAIL_SMTP_HOST
# ---------------
# Email SMTP server hostname or address.
#
# EMAIL_SMTP_PORT
# ---------------
# Email SMTP server port.
#
# EMAIL_SMTP_USER
# ---------------
# Email SMTP server login username.
#
# EMAIL_SMTP_PASS
# ---------------
# Email SMTP server login password.
#
# EMAIL_SMTP_SSL
# ---------------
# Set to TRUE if your SMTP server uses SSL.
##############################################
EMAIL_METHOD=
EMAIL_FROM_ADDRESS=no-reply@ikea.fishing
EMAIL_SENDGRID_KEY=
EMAIL_SMTP_HOST=
EMAIL_SMTP_PORT=
EMAIL_SMTP_USER=
EMAIL_SMTP_PASS=
EMAIL_SMTP_SSL=TRUE
##############################################
# Game