Enable TLS on smtp.aa.net.uk: Difference between revisions
Appearance
Content deleted Content added
lang="shell" |
|||
| Line 131: | Line 131: | ||
Typically, you can enable TLS with the following entries in your .muttrc: |
Typically, you can enable TLS with the following entries in your .muttrc: |
||
<syntaxhighlight lang=shell> |
<syntaxhighlight lang="shell"> |
||
set ssl_starttls=yes |
set ssl_starttls=yes |
||
set ssl_force_tls=yes |
set ssl_force_tls=yes |
||
| Line 144: | Line 144: | ||
To test if TLS is actually working, you can send yourself an email then look at the [[Email Viewing Headers|headers]] and look for the Received lines showing the connection between your computer and smtp.aa.net.uk: |
To test if TLS is actually working, you can send yourself an email then look at the [[Email Viewing Headers|headers]] and look for the Received lines showing the connection between your computer and smtp.aa.net.uk: |
||
<syntaxhighlight> |
<syntaxhighlight lang="shell"> |
||
Received: from andrew.ec.aa.net.uk ([2001:8b0:1:ec::8]) |
Received: from andrew.ec.aa.net.uk ([2001:8b0:1:ec::8]) |
||
by smtp.aa.net.uk with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) |
by smtp.aa.net.uk with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) |
||
| Line 153: | Line 153: | ||
An email sent without TLS would look similar, but would not show any TLS information. |
An email sent without TLS would look similar, but would not show any TLS information. |
||
<syntaxhighlight> |
<syntaxhighlight lang="shell"> |
||
Received: from andrew.ec.aa.net.uk ([2001:8b0:1:ec::8]) |
Received: from andrew.ec.aa.net.uk ([2001:8b0:1:ec::8]) |
||
by smtp.aa.net.uk with esmtp |
by smtp.aa.net.uk with esmtp |
||