mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-30 19:56:10 +00:00
Via HTTP
This commit is contained in:
parent
dc326bec68
commit
18acd78c68
2 changed files with 2 additions and 1 deletions
2
FAQ.md
2
FAQ.md
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue