From c7350f2c3c2afdbe7d71c47785dc588eb0e6e3e1 Mon Sep 17 00:00:00 2001 From: bobbysteel Date: Fri, 27 Oct 2017 11:18:29 +0100 Subject: [PATCH] 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. --- .env.example | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.env.example b/.env.example index d0fa1961..7670b307 100644 --- a/.env.example +++ b/.env.example @@ -99,7 +99,11 @@ IMPORT_DEFAULT_SCENARIO_FOR_ALL_USERS=true # 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 -# 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_USER_NAME=you@gmail.com