{#if receivedChain && receivedChain.length > 0}
{#if hop.with}
Protocol:
{hop.with}
{/if}
{#if hop.id}
ID: {hop.id}
{/if}
{#if hop.from}
Helo: {hop.from}
{/if}
{#if hop.tls}
TLS
{#if hop.tls.version}
Version:
{hop.tls.version}
{/if}
{#if hop.tls.cipher}
Cipher:
{hop.tls.cipher}
{/if}
{#if hop.tls.bits}
Strength:
{hop.tls.bits} bits
{/if}
{#if hop.tls.verified !== undefined}
{hop.tls.verified
? "Certificate trusted"
: "Certificate not trusted"}
{/if}
{:else if protocolIndicatesTLS(hop.with)}
TLS
{:else if hop.with}
No TLS
{:else}
TLS unknown
{/if}
{#if protocolIndicatesAuth(hop.with)}
Authenticated
{/if}