1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
# Configuration variables for hugo-mx-gateway
# Listen address port for local daemon
# Probably to be proxied from a webserver
HOST=127.0.0.1
PORT=8576
# Set the address of the SMTP server in the form of host:port.
# It's required that the SMTP server being supporting TLS
# SMTP_SERVER_ADDR=127.0.0.1:465
# Tell whether the SMTP certificate should be validated against top level authorities
# SMTP_VERITY_CERT=
# Set the username and password to connect to the SMTP server
# SMTP_CLIENT_USERNAME=
# SMTP_CLIENT_PASSWORD=
# Set an email address for the reply email
# CONTACT_REPLY_EMAIL=
# Sets an email address for bcc copy of the email sent to the user.
# This is useful for tracking and follow up.
# CONTACT_REPLY_BCC_EMAIL=
# Set a list of comma-separated list of domains that hugo-mx-gateway should trust.
# For security reasons, only requests with an Origin header belonging to the defined
# list of origins will be accepted.
# ALLOWED_ORIGINS=
# (optional): The reCaptcha private key
# RECAPTCHA_PRIVATE_KEY=
# (optional): Specify the path of the template to reply a contact request
# TEMPLATE_CONTACT_REQUEST_REPLY=
|