From e595d31f8092605eb24b4c4bd1e30178337dff15 Mon Sep 17 00:00:00 2001
From: Pedro Beschorner Marin <pedrobmarin@gmail.com>
Date: Mon, 11 Jan 2021 11:17:30 -0300
Subject: [PATCH] Set default guest configuration

Changes to the current (v2.2) default configuration of the guest feature.

The ideal is to keep the simplified guest feature as default (`authenticatedGuests=false`)
but we also need to be in sync with Greenlight settings to make this happen.

Greenlight will have to re-add the `guest=true` param on user's join API call when ASK_MODERATOR
is set as guest's policy.
---
 bigbluebutton-html5/private/config/settings.yml            | 2 +-
 bigbluebutton-web/grails-app/conf/bigbluebutton.properties | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/bigbluebutton-html5/private/config/settings.yml b/bigbluebutton-html5/private/config/settings.yml
index f38994d61a..3c2f5a458b 100755
--- a/bigbluebutton-html5/private/config/settings.yml
+++ b/bigbluebutton-html5/private/config/settings.yml
@@ -403,7 +403,7 @@ public:
     label:
       moderator: false
       mobile: true
-      guest: false
+      guest: true
   whiteboard:
     annotations:
       status:
diff --git a/bigbluebutton-web/grails-app/conf/bigbluebutton.properties b/bigbluebutton-web/grails-app/conf/bigbluebutton.properties
index 1fc1c8e9e6..9036abaf12 100755
--- a/bigbluebutton-web/grails-app/conf/bigbluebutton.properties
+++ b/bigbluebutton-web/grails-app/conf/bigbluebutton.properties
@@ -149,7 +149,7 @@ defaultDialAccessNumber=613-555-1234
 defaultGuestPolicy=ALWAYS_ACCEPT
 
 # Enables or disables authenticated guest
-authenticatedGuest=false
+authenticatedGuest=true
 
 #
 #----------------------------------------------------
-- 
GitLab