Use SSL/TLS as fallback when importing server settings

This commit is contained in:
cketti 2014-03-05 06:29:56 +01:00
parent ff5edf43d4
commit 3ca03e8a9d

View file

@ -1122,7 +1122,7 @@ public class SettingsImporter {
} }
return ConnectionSecurity.valueOf(connectionSecurity); return ConnectionSecurity.valueOf(connectionSecurity);
} catch (Exception e) { } catch (Exception e) {
return ConnectionSecurity.NONE; return ConnectionSecurity.SSL_TLS_REQUIRED;
} }
} }
} }