mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-03 07:36:31 +02:00
Show MX status if enabled
This commit is contained in:
@@ -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)) {
|
||||
|
||||
Reference in New Issue
Block a user