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

Merge branch 'master' of gitlab.com:gitlab-org/omnibus-gitlab

parents 5d568f46 a19f9ac4
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,10 @@
- Separate package repositories for OL and SL e37eaae
- Add mailroom idle timeout configuration 0488f3de
8.13.6
- No changes
8.13.5
- No changes
......
......@@ -281,7 +281,25 @@
gitlab_rails['smtp_enable_starttls_auto'] = true
```
### Rackspace
```ruby
gitlab_rails['smtp_enable'] = true
gitlab_rails['smtp_address'] = "secure.emailsrvr.com"
gitlab_rails['smtp_port'] = 465
gitlab_rails['smtp_user_name'] = "username@domain.com"
gitlab_rails['smtp_password'] = "password"
gitlab_rails['smtp_domain'] = "domain.com"
gitlab_rails['smtp_authentication'] = "login"
gitlab_rails['smtp_enable_starttls_auto'] = true
gitlab_rails['smtp_tls'] = true
gitlab_rails['smtp_openssl_verify_mode'] = 'peer'
gitlab_rails['gitlab_email_from'] = 'username@domain.com'
gitlab_rails['gitlab_email_reply_to'] = 'username@domain.com'
```
### More examples are welcome
If you have figured out an example configuration yourself please send a Merge
Request to save other people time.
......@@ -284,4 +302,15 @@
### More examples are welcome
If you have figured out an example configuration yourself please send a Merge
Request to save other people time.
## Testing the SMTP configuration
You can verify GitLab's ability to send emails properly using the Rails console.
On the GitLab server, execute `gitlab-rails console` to enter the console. Then,
you can enter the following command at the console prompt to cause GitLab to
send a test email:
```
irb(main):003:0> Notify.test_email('destination_email@address.com', 'Message Subject', 'Message Body').deliver_now
```
\ No newline at end of file
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