tls: pages: Add links to RFCs relevant to STARTTLS

This commit is contained in:
Martin Rubli 2024-06-03 16:20:20 +02:00
parent 6a58451dc0
commit 84bbda21ab
2 changed files with 9 additions and 4 deletions

View file

@ -591,7 +591,7 @@
"keywordDescription": "Search keyword in plain HTML or JSON response. The search is case-sensitive.",
"invertKeywordDescription": "Look for the keyword to be absent rather than present.",
"tcpRequestDescription": "Request sent to the server after establishing the connection. Trailing newlines may be required. JavaScript escape sequences are allowed.",
"tcpStartTlsDescription": "Start unencrypted and upgrade connection using STARTTLS.",
"tcpStartTlsDescription": "Start unencrypted and upgrade connection using STARTTLS. Relevant documentation: {rfc2595}, {rfc3207}",
"tcpStartTlsPresetDescription": "Select a preset below to auto-fill commonly used values for request, keyword, and STARTTLS prompt/command/response.",
"tcpStartTlsPromptDescription": "Server prompt (prefix) indicating readiness for STARTTLS command. JavaScript escape sequences are allowed.",
"tcpStartTlsCommandDescription": "Command to initiate the TLS negotiation. Trailing newlines may be required. JavaScript escape sequences are allowed.",

View file

@ -933,9 +933,14 @@
<label class="form-check-label" for="tcp-start-tls">
{{ $t("Use STARTTLS") }}
</label>
<div class="form-text">
{{ $t("tcpStartTlsDescription") }}
</div>
<i18n-t keypath="tcpStartTlsDescription" tag="div" class="form-text">
<template #rfc2595>
<a href="https://datatracker.ietf.org/doc/html/rfc2595">RFC 2595</a>
</template>
<template #rfc3207>
<a href="https://datatracker.ietf.org/doc/html/rfc3207">RFC 3207</a>
</template>
</i18n-t>
</div>
<template v-if="monitor.tcpStartTls">