This is an automated email from the ASF dual-hosted git repository.
solomax pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openmeetings.git
The following commit(s) were added to refs/heads/master by this push:
new 4a3141d Fixes #44: warning is added
4a3141d is described below
commit 4a3141d953f751bd5dd430d7d8dca15e5ad42cfc
Author: Maxim Solodovnik <[email protected]>
AuthorDate: Tue Mar 24 12:24:00 2020 +0700
Fixes #44: warning is added
---
.../java/org/apache/openmeetings/installation/ImportInitvalues.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/openmeetings-install/src/main/java/org/apache/openmeetings/installation/ImportInitvalues.java
b/openmeetings-install/src/main/java/org/apache/openmeetings/installation/ImportInitvalues.java
index 698c962..d7f19b4 100644
---
a/openmeetings-install/src/main/java/org/apache/openmeetings/installation/ImportInitvalues.java
+++
b/openmeetings-install/src/main/java/org/apache/openmeetings/installation/ImportInitvalues.java
@@ -326,7 +326,8 @@ public class ImportInitvalues {
// oauth2 params
addCfg(list, CONFIG_IGNORE_BAD_SSL, String.valueOf(false),
Configuration.Type.BOOL,
- "Set \"yes\" or \"no\" to enable/disable ssl
certifications checking for OAuth2", VER_3_0);
+ "Set \"yes\" or \"no\" to enable/disable ssl
certifications checking for OAuth2\n"
+ + "WARNING: it is not secure", VER_3_0);
addCfg(list, CONFIG_REDIRECT_URL_FOR_EXTERNAL, "",
Configuration.Type.STRING,
"Users entered the room via invitationHash or
secureHash will be redirected to this URL on connection lost", VER_3_0);