Added logging

pull/194/merge
M66B 3 years ago
parent 86c26e895b
commit e82def4a4a

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

Loading…
Cancel
Save