Updated help text

This commit is contained in:
Brad Koehn 2025-01-27 12:20:50 -06:00
parent 3dacf72471
commit 2353ba58b2
No known key found for this signature in database
2 changed files with 6 additions and 3 deletions

View file

@ -1052,5 +1052,5 @@
"rabbitmqHelpText": "To use the monitor, you will need to enable the Management Plugin in your RabbitMQ setup. For more information, please consult the {rabitmq_documentation}.",
"SendGrid API Key": "SendGrid API Key",
"Separate multiple email addresses with commas": "Separate multiple email addresses with commas",
"smtpHelpText": "Specify the TLS settings of the SMTP server you wish to monitor: SMTPS, STARTTLS, or ignore TLS"
"smtpHelpText": "“SMTPS” tests that SMTP/TLS is working; “Ignore TLS” connects over plaintext; “STARTTLS” connects, issues a STARTTLS command and verifies the server certificate. None of these send an email."
}

View file

@ -332,14 +332,17 @@
</select>
</div>
<i18n-t v-if="monitor.type === 'smtp'" keypath="smtpHelpText" tag="div" class="my-3">
<div v-if="monitor.type === 'smtp'" class="my-3">
<label for="smtp_security" class="form-label">{{ $t("SMTP Security") }}</label>
<select id="smtp_security" v-model="monitor.smtpSecurity" class="form-select">
<option value="secure">SMTPS</option>
<option value="nostarttls">Ignore STARTTLS</option>
<option value="starttls">Use STARTTLS</option>
</select>
</i18n-t>
<div class="form-text">
{{ $t("smtpHelpText") }}
</div>
</div>
<!-- Json Query -->
<!-- For Json Query / SNMP -->