1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-30 19:56:10 +00:00

Added logging

This commit is contained in:
M66B 2022-01-30 18:02:26 +01:00
parent 86c26e895b
commit e82def4a4a

View file

@ -1020,9 +1020,11 @@ public class EmailService implements AutoCloseable {
if (!cert_strict)
try {
InetAddress ip = InetAddress.getByName(server);
Log.i("Checking server ip=" + ip);
for (String name : names) {
if (name.startsWith("*."))
name = name.substring(2);
Log.i("Checking cert name=" + name);
try {
for (InetAddress addr : InetAddress.getAllByName(name))