remove tls for smtp and add method for getting primary URL

This commit is contained in:
Matt Hill
2023-05-22 08:34:35 -06:00
parent 790601ee47
commit 3d9a703ad6
3 changed files with 13 additions and 9 deletions

View File

@@ -41,12 +41,6 @@ export const customSmtp = Config.of<ConfigSpecOf<SmtpValue>, never, never>({
required: false,
masked: true,
}),
tls: Value.toggle({
name: "Require Transport Security",
default: true,
description:
"Require TLS transport security. If disabled, email will use plaintext by default and TLS via STARTTLS <strong>if the SMTP server supports it</strong>. If enabled, email will refuse to connect unless the server supports STARTTLS.",
}),
})
/**