bigbluebutton / greenlight

A really simple end-user interface for your BigBlueButton server.
GNU Lesser General Public License v3.0
789 stars 3.8k forks source link

Rooms got wrong recording configuration #5881

Open Atlas780 opened 2 months ago

Atlas780 commented 2 months ago

Hi all,

our setup was like this:

The problem we just discovered that despite pretty much noone was allowed to record, around 640 our rooms are configured that they allow recordings. I checked via the DB:

greenlight-v3-production=# SELECT COUNT(*) FROM room_meeting_options WHERE meeting_option_id = (SELECT id FROM meeting_options where name = 'record') AND value = 'true';
 count
-------
   641
(1 row)

This is unfortunate, because every participant gets asked if they consent to being recorded, without the ability to actually record the room. We don't really know how this happened.

farhatahmad commented 2 months ago

The setting you're checking in the database does not accurately reflect what happens in Greenlight. Greenlight uses a bit of logic to decide whether a room can be recorded in the following order: Room Setting < Room Configuration < Role Permission.

If you only want a select few to be able to record, give them their own Role and select Allow users with this role to record their meetings image

Then give the rest a different role and set it to false

Atlas780 commented 1 month ago

We tried it exactly this way, but got a complaint that a user got the recording checkbox when joing the meeting (disclosure message), but they weren't able to record or deactivate recording for their room. The user never had the permission to record, but his room somehow had recording activated.