fix(server): config typo (#13913)

Fix a typo on the SMTP configuration page
This commit is contained in:
Kevin
2025-11-15 07:41:03 +01:00
committed by GitHub
parent c302425a05
commit 525b65c6ca
@@ -61,7 +61,7 @@ defineModuleConfig('mailer', {
env: 'MAILER_SENDER',
},
'SMTP.ignoreTLS': {
desc: "Whether ignore email server's TSL certification verification. Enable it for self-signed certificates.",
desc: "Whether ignore email server's TLS certificate verification. Enable it for self-signed certificates.",
default: false,
env: ['MAILER_IGNORE_TLS', 'boolean'],
},
@@ -96,7 +96,7 @@ defineModuleConfig('mailer', {
default: '',
},
'fallbackSMTP.ignoreTLS': {
desc: "Whether ignore email server's TSL certification verification. Enable it for self-signed certificates.",
desc: "Whether ignore email server's TLS certificate verification. Enable it for self-signed certificates.",
default: false,
},
});