mirror of https://github.com/M66B/FairEmail.git
With TLS
This commit is contained in:
parent
98d5b95092
commit
5d74a2294d
|
@ -2143,6 +2143,9 @@ public class MessageHelper {
|
|||
int w = with.indexOf(' ');
|
||||
String protocol = (w < 0 ? with : with.substring(0, w)).toLowerCase(Locale.ROOT);
|
||||
|
||||
if (with.contains("TLS"))
|
||||
return true;
|
||||
|
||||
if ("local".equals(protocol)) {
|
||||
// Exim
|
||||
Log.i("--- local with=" + with);
|
||||
|
|
Loading…
Reference in New Issue