Commit ae9cb462 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Added missing properties to be saved later to the DB.

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@10499 b35dd754-fafc-0310-a699-88a17e54d16e
parent 1b49d730
...@@ -107,6 +107,11 @@ ...@@ -107,6 +107,11 @@
"org.jivesoftware.openfire.clearspace.ClearspaceAdminProvider"); "org.jivesoftware.openfire.clearspace.ClearspaceAdminProvider");
xmppSettings.put("clearspace.uri", uri); xmppSettings.put("clearspace.uri", uri);
xmppSettings.put("clearspace.sharedSecret", sharedSecret); xmppSettings.put("clearspace.sharedSecret", sharedSecret);
xmppSettings.put("clearspace.certificate.verify.chain", Boolean.toString(verifyChain));
xmppSettings.put("clearspace.certificate.verify.root", Boolean.toString(verifyRoot));
xmppSettings.put("clearspace.certificate.accept-selfsigned", Boolean.toString(selfSigned));
xmppSettings.put("clearspace.certificate.verify.identity", Boolean.toString(verifyIdentity));
xmppSettings.put("clearspace.certificate.verify.validity", Boolean.toString(verifyValidity));
session.setAttribute("xmppSettings", xmppSettings); session.setAttribute("xmppSettings", xmppSettings);
} }
if (initialSetup) { if (initialSetup) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment