diff options
author | Brian Lachniet <blachniet@gmail.com> | 2023-08-06 12:02:43 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-06 12:02:43 -0400 |
commit | b94370504ff2c904707f25774da1d168ee4f37fd (patch) | |
tree | 2efc1e774516eb5c41720390676f6d1426eada05 | |
parent | 4fd8ac0653b95fc204eade4471734b23039bca13 (diff) | |
download | gitea-b94370504ff2c904707f25774da1d168ee4f37fd.tar.gz gitea-b94370504ff2c904707f25774da1d168ee4f37fd.zip |
[docs] Fix Gmail configuration (#26356)
-rw-r--r-- | docs/content/administration/email-setup.en-us.md | 5 |
1 files changed, 3 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..5bb417fefe 100644 --- a/docs/content/administration/email-setup.en-us.md +++ b/docs/content/administration/email-setup.en-us.md @@ -79,8 +79,9 @@ SMTP_PORT = 465 FROM = example.user@gmail.com USER = example.user PASSWD = `***` -PROTOCOL = smtp -IS_TLS_ENABLED = true +PROTOCOL = smtps ; Gitea >= 1.19.0 +; PROTOCOL = smtp ; Gitea < 1.19.0 +; IS_TLS_ENABLED = true ; Gitea < 1.19.0 ``` 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 |