fix: add option to disable STARTTLS for SMTP servers without TLS support (#6770)

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: Frank Elsinga <frank@elsinga.de>
This commit is contained in:
Dharun Ashokkumar
2026-01-19 23:32:06 +00:00
committed by GitHub
co-authored by autofix-ci[bot] Frank Elsinga
parent f8d494a03d
commit b638ae48ef
3 changed files with 38 additions and 3 deletions
+18
View File
@@ -56,6 +56,24 @@
</div>
</div>
<div v-if="!$parent.notification.smtpSecure" class="mb-3">
<div class="form-check">
<input
id="ignore-starttls"
v-model="$parent.notification.smtpIgnoreSTARTTLS"
class="form-check-input"
type="checkbox"
value=""
/>
<label class="form-check-label" for="ignore-starttls">
{{ $t("Disable STARTTLS") }}
</label>
</div>
<div class="form-text">
{{ $t("disableSTARTTLSDescription") }}
</div>
</div>
<div class="mb-3">
<label for="username" class="form-label">{{ $t("Username") }}</label>
<input