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:
parent
a8aa0b31a8
commit
42d31278a5
1 changed files with 4 additions and 0 deletions
|
@ -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)) {
|
||||
|
|
Loading…
Reference in a new issue