1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-26 17:57:16 +00:00

Show MX status if enabled

This commit is contained in:
M66B 2024-01-25 19:16:00 +01:00
parent a8aa0b31a8
commit 42d31278a5

View file

@ -4894,6 +4894,10 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
.append('\n');
sb.append("SMTP: ")
.append(message.auth == null ? "-" : (message.auth ? "" : ""));
if (check_mx)
sb.append('\n')
.append("MX: ")
.append(message.mx == null ? "-" : (message.mx ? "" : ""));
}
if (native_dkim && !TextUtils.isEmpty(message.signedby)) {