mirror of
https://github.com/M66B/FairEmail.git
synced 2025-03-15 00:21:10 +00:00
With LMTP
This commit is contained in:
parent
a67b29b2cf
commit
33cfc3b316
2 changed files with 8 additions and 1 deletions
3
FAQ.md
3
FAQ.md
|
@ -4479,7 +4479,8 @@ A message will be consired safely transported if *every* [Received](https://data
|
|||
* has a *from* with a local address
|
||||
* has a *via* with the value '[Frontend Transport](https://social.technet.microsoft.com/wiki/contents/articles/50370.exchange-2016-what-is-the-front-end-transport-service-on-the-mailbox-role.aspx)'
|
||||
* has a *with* with the value 'TLS'
|
||||
* has a *with* with the value 'local', '[MAPI](https://en.wikipedia.org/wiki/MAPI)', 'HTTP', 'HTTPS', or 'HTTPREST'
|
||||
* has a *with* with the value 'local', '[LMTP](https://en.wikipedia.org/wiki/Local_Mail_Transfer_Protocol)], '[MAPI](https://en.wikipedia.org/wiki/MAPI)'
|
||||
* has a *with* with the value 'HTTP', 'HTTPS', or 'HTTPREST'
|
||||
* has a *with* with the value '[xMTPSx](https://datatracker.ietf.org/doc/html/rfc3848)' ('xMTPAx' is considered insecure)
|
||||
|
||||
A local address is a local host address, a site local address
|
||||
|
|
|
@ -2166,6 +2166,12 @@ public class MessageHelper {
|
|||
return true;
|
||||
}
|
||||
|
||||
if ("lmtp".equals(protocol)) {
|
||||
// https://en.wikipedia.org/wiki/Local_Mail_Transfer_Protocol
|
||||
Log.i("--- lmtp with=" + with);
|
||||
return true;
|
||||
}
|
||||
|
||||
if ("mapi".equals(protocol)) {
|
||||
// https://en.wikipedia.org/wiki/MAPI
|
||||
Log.i("--- mapi with=" + with);
|
||||
|
|
Loading…
Add table
Reference in a new issue