This commit is contained in:
M66B 2022-01-08 14:48:34 +01:00
parent 98d5b95092
commit 5d74a2294d
1 changed files with 3 additions and 0 deletions

View File

@ -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);