Added logging

This commit is contained in:
M66B 2022-01-30 18:02:26 +01:00
parent 86c26e895b
commit e82def4a4a
1 changed files with 2 additions and 0 deletions

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))