Skip to content
Snippets Groups Projects
Commit 7bbd8a1a authored by waiting's avatar waiting
Browse files

Update smtp.md

parent 1ed34131
No related branches found
No related tags found
No related merge requests found
......@@ -447,6 +447,22 @@
gitlab_rails['smtp_authentication'] = "login"
```
### Aliyun Enterprise Mail with TLS (阿里企业邮箱)
```ruby
gitlab_rails['smtp_enable'] = true
gitlab_rails['smtp_address'] = "smtp.qiye.aliyun.com"
gitlab_rails['smtp_port'] = 465
gitlab_rails['smtp_user_name'] = "username@your domain"
gitlab_rails['smtp_password'] = "password"
gitlab_rails['smtp_domain'] = "your domain"
gitlab_rails['smtp_authentication'] = "login"
gitlab_rails['smtp_enable_starttls_auto'] = false
gitlab_rails['smtp_tls'] = true
gitlab_rails['gitlab_email_from'] = 'username@your domain'
# gitlab_rails['gitlab_email_reply_to'] = 'username@your domain'
```
### FastMail
FastMail requires an
......
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