diff options
author | alex <alexmw777@gmail.com> | 2023-04-04 12:19:01 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-04 13:19:01 -0400 |
commit | 0983b237d50c8648f96f42e776c4529072e7eca9 (patch) | |
tree | 91d211c83f423beb93836eedcc917ea8c84b9062 /docs/content | |
parent | e6685fc4ce0efa16ec93d5384e1081d03de91ccd (diff) | |
download | gitea-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.md | 2 |
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 ``` |