1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-03-15 00:21:10 +00:00

Frontend Transport is a proxy

This commit is contained in:
M66B 2023-04-22 21:24:40 +02:00
parent abaa1fd1eb
commit e30e9ef6c5

View file

@ -2942,7 +2942,7 @@ public class MessageHelper {
// Check Microsoft front end transport (proxy)
// https://social.technet.microsoft.com/wiki/contents/articles/50370.exchange-2016-what-is-the-front-end-transport-service-on-the-mailbox-role.aspx
if (kv.containsKey("via")) {
if (kv.containsKey("via") && false) {
String via = kv.get("via").toString();
if ("Frontend Transport".equals(via)) {
Log.i("--- frontend via=" + via);