Clarifying no authentication scenario

A bit of a counterintuitive solution as I'd logically expect SMTP_AUTHENTICATION to be set to 'none' vs SMTP_USER_NAME but regardless clarifying for local Postfix configs like mine that don't require auth from localhost.
This commit is contained in:
bobbysteel 2017-10-27 11:18:29 +01:00 committed by GitHub
parent 8054945593
commit c7350f2c3c

View file

@ -99,7 +99,11 @@ IMPORT_DEFAULT_SCENARIO_FOR_ALL_USERS=true
# you must also set SEND_EMAIL_IN_DEVELOPMENT to true below. # you must also set SEND_EMAIL_IN_DEVELOPMENT to true below.
# #
# If you have trouble with port 587 on Gmail, you can also try setting # If you have trouble with port 587 on Gmail, you can also try setting
# SMTP_AUTHENTICATION to login and the SMTP_PORT to 465. # SMTP_AUTHENTICATION to login and the SMTP_PORT to 465.
#
# If you use a local SMTP server without authentication such as Postfix,
# SMTP_USER_NAME must be set to none or else you will receive
# errors that AUTH not enabled.
SMTP_DOMAIN=your-domain-here.com SMTP_DOMAIN=your-domain-here.com
SMTP_USER_NAME=you@gmail.com SMTP_USER_NAME=you@gmail.com