diff options
author | Bård Aase <elzapp@gmail.com> | 2023-08-03 11:20:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-03 18:20:40 +0800 |
commit | 8ba54a2e16b2abce805346111283360c50fd7428 (patch) | |
tree | 9c673dd31d04d746a1a62e4c805b41fb5d5bf5ee | |
parent | 539015403f80326d662e31cf9d3a459b3efefcd7 (diff) | |
download | gitea-8ba54a2e16b2abce805346111283360c50fd7428.tar.gz gitea-8ba54a2e16b2abce805346111283360c50fd7428.zip |
Update Gmail example (#26302)
The `IS_TLS_ENABLED` option in the `mailer` section is deprecated. This
is specified by setting `PROTOCOL=smtps`
-rw-r--r-- | docs/content/administration/email-setup.en-us.md | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/content/administration/email-setup.en-us.md b/docs/content/administration/email-setup.en-us.md index 10058d8284..645a7a3f43 100644 --- a/docs/content/administration/email-setup.en-us.md +++ b/docs/content/administration/email-setup.en-us.md @@ -79,8 +79,7 @@ SMTP_PORT = 465 FROM = example.user@gmail.com USER = example.user PASSWD = `***` -PROTOCOL = smtp -IS_TLS_ENABLED = true +PROTOCOL = smtps ``` Note that you'll need to create and use an [App password](https://support.google.com/accounts/answer/185833?hl=en) by enabling 2FA on your Google |