From 6961dc24e5dd6a003f9caa637cc68b7479cc8cc4 Mon Sep 17 00:00:00 2001 From: Dmitry Verkhoturov Date: Tue, 26 May 2026 18:47:21 +0100 Subject: [PATCH] docs: close backtick in smtp.login_auth default cell MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit opening backtick had no closer in the Default column, so kramdown saw a broken cell and stopped rendering the parameters table — every row from smtp.login_auth onward (~40 rows) rendered as raw pipe-delimited text instead of HTML table cells. closes #2074 --- site/src/docs/configuration/parameters/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/src/docs/configuration/parameters/index.md b/site/src/docs/configuration/parameters/index.md index 7801ee21..1a46743c 100644 --- a/site/src/docs/configuration/parameters/index.md +++ b/site/src/docs/configuration/parameters/index.md @@ -139,7 +139,7 @@ Custom OAuth2 integration currently supports only one custom provider at a time, | smtp.port | SMTP_PORT | | SMTP port | | smtp.username | SMTP_USERNAME | | SMTP user name | | smtp.password | SMTP_PASSWORD | | SMTP password | -| smtp.login_auth | SMTP_LOGIN_AUTH | `false | enable LOGIN auth instead of PLAIN | +| smtp.login_auth | SMTP_LOGIN_AUTH | `false` | enable LOGIN auth instead of PLAIN | | smtp.tls | SMTP_TLS | `false` | enable TLS for SMTP | | smtp.starttls | SMTP_STARTTLS | `false` | enable StartTLS for SMTP | | smtp.insecure_skip_verify | SMTP_INSECURE_SKIP_VERIFY | `false` | skip certificate verification for SMTP |