Skip to content
Snippets Groups Projects
Commit dc33f717 authored by Marin Jankovski's avatar Marin Jankovski
Browse files

Merge branch 'mattermost-doc-fix' into 'master'

Correct mattermost smtp configuration

There is a mistake in the mattermost doc that makes it quite hard to get smtp working.

See merge request !571
parents fb9eed63 dc275ed8
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -117,7 +117,8 @@ SMTP configuration depends on SMTP provider used. If you are using SMTP without
mattermost['email_enable_sign_up_with_email'] = true
mattermost['email_smtp_username'] = "username"
mattermost['email_smtp_password'] = "password"
mattermost['email_smtp_server'] = "smtp.example.com:465"
mattermost['email_smtp_server'] = "smtp.example.com"
mattermost['email_smtp_port'] = "465"
mattermost['email_connection_security'] = nil
mattermost['email_feedback_name'] = "GitLab Mattermost"
mattermost['email_feedback_email'] = "email@example.com"
Loading
Loading
@@ -129,7 +130,8 @@ If you are using TLS, configuration can look something like this:
mattermost['email_enable_sign_up_with_email'] = true
mattermost['email_smtp_username'] = "username"
mattermost['email_smtp_password'] = "password"
mattermost['email_smtp_server'] = "smtp.example.com:587"
mattermost['email_smtp_server'] = "smtp.example.com"
mattermost['email_smtp_port'] = "587"
mattermost['email_connection_security'] = 'TLS' # Or 'STARTTLS'
mattermost['email_feedback_name'] = "GitLab Mattermost"
mattermost['email_feedback_email'] = "email@example.com"
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment