Show users an SMTP protocol configuration option, preset based on the given port #881
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This follows my post on the meta.discourse forum about setting up the email for port 465.
I added a prompt for "SMTP protocol" to the setup.
It's prefilled with
TLS
if the chosen port is 465, otherwiseSTARTTLS
. WhenTLS
is chosen, it actually means "implicit TLS".In the resulting
app.yml
file, this will set bothDISCOURSE_SMTP_ENABLE_START_TLS
andDISCOURSE_SMTP_FORCE_TLS
accordingly.It might be best to replace these two configuration variables with a single one, e.g.
DISCOURSE_SMTP_PROTOCOL
, but I cannot handle that at the moment because my knowledge of the source code is limited to the setup script.This pull request is just a suggestion!
Also: there is an additional commit that fixes an error in the definition of
read_default
. Let me know if I should do a separate PR for that.Cheers,