aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content
diff options
context:
space:
mode:
authoralex <alexmw777@gmail.com>2023-04-04 12:19:01 -0500
committerGitHub <noreply@github.com>2023-04-04 13:19:01 -0400
commit0983b237d50c8648f96f42e776c4529072e7eca9 (patch)
tree91d211c83f423beb93836eedcc917ea8c84b9062 /docs/content
parente6685fc4ce0efa16ec93d5384e1081d03de91ccd (diff)
downloadgitea-0983b237d50c8648f96f42e776c4529072e7eca9.tar.gz
gitea-0983b237d50c8648f96f42e776c4529072e7eca9.zip
docs: make the required backticks in email password more explicit (#23923)
updated the example config to make the needed backticks around the password more obvious
Diffstat (limited to 'docs/content')
-rw-r--r--docs/content/doc/administration/email-setup.en-us.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/doc/administration/email-setup.en-us.md b/docs/content/doc/administration/email-setup.en-us.md
index 27ecb0d2f2..05a69d56ad 100644
--- a/docs/content/doc/administration/email-setup.en-us.md
+++ b/docs/content/doc/administration/email-setup.en-us.md
@@ -81,7 +81,7 @@ SMTP_ADDR = smtp.gmail.com
SMTP_PORT = 465
FROM = example.user@gmail.com
USER = example.user
-PASSWD = ***
+PASSWD = `***`
MAILER_TYPE = smtp
IS_TLS_ENABLED = true
```