From ea5e4573fe7dd03e43e065c226c73d7e5d4b7be9 Mon Sep 17 00:00:00 2001 From: Vlad-Stefan Harbuz Date: Sat, 12 Aug 2023 10:59:00 +0100 Subject: [PATCH] =?UTF-8?q?Replace=20=E2=80=9CMAILER=5FTYPE=E2=80=9D=20wit?= =?UTF-8?q?h=20=E2=80=9CPROTOCOL=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- admin/email-setup.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/admin/email-setup.md b/admin/email-setup.md index 0010c38e..850fc061 100644 --- a/admin/email-setup.md +++ b/admin/email-setup.md @@ -14,7 +14,7 @@ Directly use SMTP server as relay. This option is useful if you don't want to se [mailer] ENABLED = true FROM = forgejo@example.com -MAILER_TYPE = smtp +PROTOCOL = smtp SMTP_ADDR = mail.example.com SMTP_PORT = 587 IS_TLS_ENABLED = true @@ -47,7 +47,7 @@ Note: For Internet-facing sites consult documentation of your MTA for instructio [mailer] ENABLED = true FROM = forgejo@example.com -MAILER_TYPE = sendmail +PROTOCOL = sendmail SENDMAIL_PATH = /usr/sbin/sendmail SENDMAIL_ARGS = "--" ; most "sendmail" programs take options, "--" will prevent an email address being interpreted as an option. ```