Skip to content
Snippets Groups Projects
Commit 7b5ce132 authored by Nipun Haldar's avatar Nipun Haldar
Browse files

Update smtp.md for Amazon SES integration with GitLab.

parent 7443137f
No related branches found
No related tags found
3 merge requests!51Validate shift of Heptapod 0.25 to oldstable series,!47Making Heptapod 0.25 the new stable in Omnibus,!45GitLab 14.2
......@@ -117,6 +117,8 @@
### Amazon Simple Email System (AWS SES)
- Using STARTTLS
```ruby
gitlab_rails['smtp_enable'] = true
gitlab_rails['smtp_address'] = "email-smtp.region-1.amazonaws.com"
......@@ -130,6 +132,22 @@
Make sure to permit egress through port 587 in your ACL and security group.
- Using TLS Wrapper
```ruby
gitlab_rails['smtp_enable'] = true
gitlab_rails['smtp_address'] = "email-smtp.region-1.amazonaws.com"
gitlab_rails['smtp_port'] = 465
gitlab_rails['smtp_user_name'] = "IAMmailerKey"
gitlab_rails['smtp_password'] = "IAMmailerSecret"
gitlab_rails['smtp_domain'] = "yourdomain.com"
gitlab_rails['smtp_authentication'] = "login"
gitlab_rails['smtp_ssl'] = true
gitlab_rails['smtp_force_ssl'] = true
```
Make sure to permit egress through port 465 in your ACL and security group.
### Mandrill
```ruby
......
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