mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-30 19:56:10 +00:00
Added logging
This commit is contained in:
parent
86c26e895b
commit
e82def4a4a
1 changed files with 2 additions and 0 deletions
|
@ -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))
|
||||
|
|
Loading…
Reference in a new issue