File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -1294,6 +1294,23 @@ gitlab_rails['smtp_authentication'] = "plain"
1294
1294
gitlab_rails['smtp_enable_starttls_auto'] = true
1295
1295
` ` `
1296
1296
1297
+ # ## Proton Mail
1298
+
1299
+ Proton documentation : [How to set up SMTP to use business applications or devices with Proton Mail](https://proton.me/support/smtp-submission)
1300
+
1301
+ ` ` ` ruby
1302
+ gitlab_rails['smtp_enable'] = true
1303
+ gitlab_rails['smtp_address'] = "smtp.protonmail.ch"
1304
+ gitlab_rails['smtp_port'] = 587
1305
+ gitlab_rails['smtp_authentication'] = "plain"
1306
+ gitlab_rails['smtp_enable_starttls_auto'] = true
1307
+ gitlab_rails['smtp_user_name'] = "<the Proton email address for which you generated the SMTP token>"
1308
+ gitlab_rails['smtp_password'] = "<the generated SMTP token>"
1309
+ gitlab_rails['smtp_domain'] = "<your domain>"
1310
+ gitlab_rails['gitlab_email_from'] = "<the Proton email address for which you generated the SMTP token>"
1311
+ gitlab_rails['gitlab_email_reply_to'] = "<the Proton email address for which you generated the SMTP token>"
1312
+ ` ` `
1313
+
1297
1314
# ## More examples are welcome
1298
1315
1299
1316
If you have figured out an example configuration yourself please send a Merge
You can’t perform that action at this time.
0 commit comments