This commit is contained in:
M66B 2022-01-12 17:01:59 +01:00
parent dc326bec68
commit 18acd78c68
2 changed files with 2 additions and 1 deletions

2
FAQ.md
View File

@ -4478,7 +4478,7 @@ To show shields, the option *Show authentication status indicator* in the displa
A message will be consired safely transported if *every* [Received](https://datatracker.ietf.org/doc/html/rfc2821#section-4.4) header:
* contains the phrase 'using TLS' or 'version=TLS'
* contains the phrase 'using TLS', 'via HTTP', 'version=TLS'
* contains the phrase '(qmail <nnn> invoked by uid <nnn>)'
* contains the phrase '(Postfix, from userid nnn)'
* has a *by* with a local address

View File

@ -2094,6 +2094,7 @@ public class MessageHelper {
header = header.substring(0, semi);
if (header.contains("using TLS") ||
header.contains("via HTTP") ||
header.contains("version=TLS")) {
Log.i("--- found TLS");
return true;