mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-02 15:17:03 +02:00
TLS debugging
This commit is contained in:
@@ -2255,11 +2255,12 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||
message.headers, message.blocklist != null && message.blocklist);
|
||||
if (BuildConfig.DEBUG && headers instanceof SpannableStringBuilder) {
|
||||
SpannableStringBuilder ssb = (SpannableStringBuilder) headers;
|
||||
ssb.append("TLS=" + message.tls).append('\n');
|
||||
ssb.append("DKIM=" + message.dkim).append('\n');
|
||||
ssb.append("SPF=" + message.spf).append('\n');
|
||||
ssb.append("DMARC=" + message.dmarc).append('\n');
|
||||
ssb.append("BL=" + message.blocklist).append('\n');
|
||||
ssb.append("TLS=" + message.tls)
|
||||
.append(" DKIM=" + message.dkim)
|
||||
.append(" SPF=" + message.spf)
|
||||
.append(" DMARC=" + message.dmarc)
|
||||
.append(" BL=" + message.blocklist)
|
||||
.append('\n');
|
||||
}
|
||||
tvHeaders.setText(headers);
|
||||
ibCopyHeaders.setVisibility(View.VISIBLE);
|
||||
|
||||
Reference in New Issue
Block a user