From: Knud Hollander <26556793+KnudH@users.noreply.github.com> Date: Wed, 3 Apr 2024 23:16:02 +0000 (+0200) Subject: update mailer example config, remove deprecated HOST (#30267) X-Git-Tag: v1.22.0-rc1~185 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=39e64e094f5b62401c3652983d8058df85ef744d;p=gitea.git update mailer example config, remove deprecated HOST (#30267) --- diff --git a/docs/content/installation/with-docker.en-us.md b/docs/content/installation/with-docker.en-us.md index e8a80f7c96..a16d4a8d60 100644 --- a/docs/content/installation/with-docker.en-us.md +++ b/docs/content/installation/with-docker.en-us.md @@ -304,7 +304,8 @@ services: - GITEA__mailer__ENABLED=true - GITEA__mailer__FROM=${GITEA__mailer__FROM:?GITEA__mailer__FROM not set} - GITEA__mailer__PROTOCOL=smtps - - GITEA__mailer__HOST=${GITEA__mailer__HOST:?GITEA__mailer__HOST not set} + - GITEA__mailer__SMTP_ADDR=${GITEA__mailer__SMTP_ADDR:?GITEA__mailer__SMTP_ADDR not set} + - GITEA__mailer__SMTP_PORT=${GITEA__mailer__SMTP_PORT:?GITEA__mailer__SMTP_PORT not set} - GITEA__mailer__USER=${GITEA__mailer__USER:-apikey} - GITEA__mailer__PASSWD="""${GITEA__mailer__PASSWD:?GITEA__mailer__PASSWD not set}""" ```