Skip to content
Snippets Groups Projects
Commit d5093bb4 authored by Luís Sousa's avatar Luís Sousa
Browse files

Review smtp.md

parent dca97a49
No related branches found
No related tags found
No related merge requests found
......@@ -40,11 +40,11 @@
By default SSL is enabled for SMTP. If your SMTP server do not support communication over SSL use following settings:
```ruby
gitlab_rails['smtp_enable'] = true;
gitlab_rails['smtp_address'] = 'localhost';
gitlab_rails['smtp_port'] = 25;
gitlab_rails['smtp_domain'] = 'localhost';
gitlab_rails['smtp_tls'] = false;
gitlab_rails['smtp_enable'] = true
gitlab_rails['smtp_address'] = 'localhost'
gitlab_rails['smtp_port'] = 25
gitlab_rails['smtp_domain'] = 'localhost'
gitlab_rails['smtp_tls'] = false
gitlab_rails['smtp_openssl_verify_mode'] = 'none'
gitlab_rails['smtp_enable_starttls_auto'] = false
gitlab_rails['smtp_ssl'] = false
......
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