Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
omnibus-heptapod
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
heptapod
omnibus-heptapod
Commits
d9749ac9
Commit
d9749ac9
authored
8 years ago
by
Marin Jankovski
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of gitlab.com:gitlab-org/omnibus-gitlab
parents
5d568f46
a19f9ac4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+4
-0
4 additions, 0 deletions
CHANGELOG.md
doc/settings/smtp.md
+29
-0
29 additions, 0 deletions
doc/settings/smtp.md
with
33 additions
and
0 deletions
CHANGELOG.md
+
4
−
0
View file @
d9749ac9
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
doc/settings/smtp.md
+
29
−
0
View file @
d9749ac9
...
...
@@ -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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment