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

Merge branch 'abhinav3295/omnibus-gitlab-3101-missing-smtp-configuration'

parents c1ee4c6d 07bb5b0d
No related branches found
No related tags found
No related merge requests found
......@@ -36,6 +36,20 @@
gitlab_rails['smtp_enable'] = true
```
### SMTP without SSL
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_openssl_verify_mode'] = 'none'
gitlab_rails['smtp_enable_starttls_auto'] = false
gitlab_rails['smtp_ssl'] = false
gitlab_rails['smtp_force_ssl'] = false
```
### Gmail
>**Note:**
......
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