mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-27 18:27:43 +00:00
Small improvement
This commit is contained in:
parent
6b6a4868cc
commit
3ceaf6fcd3
1 changed files with 2 additions and 2 deletions
|
@ -212,7 +212,7 @@ public class MailService implements AutoCloseable {
|
|||
}
|
||||
|
||||
public String connect(String host, int port, int auth, String user, String password, String fingerprint) throws MessagingException {
|
||||
SSLSocketFactoryService factory;
|
||||
SSLSocketFactoryService factory = null;
|
||||
try {
|
||||
factory = new SSLSocketFactoryService(host, insecure, fingerprint);
|
||||
properties.put("mail." + protocol + ".ssl.socketFactory", factory);
|
||||
|
@ -222,7 +222,7 @@ public class MailService implements AutoCloseable {
|
|||
properties.put("mail." + protocol + ".ssl.checkserveridentity", Boolean.toString(!insecure));
|
||||
if (insecure)
|
||||
properties.put("mail." + protocol + ".ssl.trust", "*");
|
||||
throw new MessagingException("Trust issues", ex);
|
||||
Log.e("Trust issues", ex);
|
||||
}
|
||||
|
||||
try {
|
||||
|
|
Loading…
Reference in a new issue