Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
Openfire
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Openfire
Commits
057fc472
Commit
057fc472
authored
Mar 03, 2016
by
Guus der Kinderen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
OF-1098: Anonymous user login should be disabled by default.
parent
762a8439
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
wildfire.script
build/wildfireHome/embedded-db/wildfire.script
+0
-1
setup-host-settings.jsp
src/web/setup/setup-host-settings.jsp
+1
-1
No files found.
build/wildfireHome/embedded-db/wildfire.script
View file @
057fc472
...
@@ -43,7 +43,6 @@ INSERT INTO JIVEUSER VALUES('admin','admin',NULL,'Administrator','admin@example.
...
@@ -43,7 +43,6 @@ INSERT INTO JIVEUSER VALUES('admin','admin',NULL,'Administrator','admin@example.
INSERT INTO JIVEID VALUES(18,1)
INSERT INTO JIVEID VALUES(18,1)
INSERT INTO JIVEID VALUES(19,1)
INSERT INTO JIVEID VALUES(19,1)
INSERT INTO JIVEID VALUES(23,1)
INSERT INTO JIVEID VALUES(23,1)
INSERT INTO JIVEPROPERTY VALUES('xmpp.auth.anonymous','true')
INSERT INTO JIVEPROPERTY VALUES('xmpp.domain','localhost')
INSERT INTO JIVEPROPERTY VALUES('xmpp.domain','localhost')
INSERT INTO JIVEPROPERTY VALUES('xmpp.muc.history.type','number')
INSERT INTO JIVEPROPERTY VALUES('xmpp.muc.history.type','number')
INSERT INTO JIVEPROPERTY VALUES('xmpp.session.conflict-limit','0')
INSERT INTO JIVEPROPERTY VALUES('xmpp.session.conflict-limit','0')
...
...
src/web/setup/setup-host-settings.jsp
View file @
057fc472
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
int
embeddedPort
=
ParamUtils
.
getIntParameter
(
request
,
"embeddedPort"
,
Integer
.
MIN_VALUE
);
int
embeddedPort
=
ParamUtils
.
getIntParameter
(
request
,
"embeddedPort"
,
Integer
.
MIN_VALUE
);
int
securePort
=
ParamUtils
.
getIntParameter
(
request
,
"securePort"
,
Integer
.
MIN_VALUE
);
int
securePort
=
ParamUtils
.
getIntParameter
(
request
,
"securePort"
,
Integer
.
MIN_VALUE
);
boolean
sslEnabled
=
ParamUtils
.
getBooleanParameter
(
request
,
"sslEnabled"
,
true
);
boolean
sslEnabled
=
ParamUtils
.
getBooleanParameter
(
request
,
"sslEnabled"
,
true
);
boolean
anonymousAuthentication
=
JiveGlobals
.
getXMLProperty
(
"xmpp.auth.anonymous"
,
tru
e
);
boolean
anonymousAuthentication
=
JiveGlobals
.
getXMLProperty
(
"xmpp.auth.anonymous"
,
fals
e
);
String
encryptionAlgorithm
=
ParamUtils
.
getParameter
(
request
,
"encryptionAlgorithm"
);
String
encryptionAlgorithm
=
ParamUtils
.
getParameter
(
request
,
"encryptionAlgorithm"
);
String
encryptionKey
=
ParamUtils
.
getParameter
(
request
,
"encryptionKey"
);
String
encryptionKey
=
ParamUtils
.
getParameter
(
request
,
"encryptionKey"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment