I want to create MUC, where only 1 user (owner/admin) can send messages. Other users should join chat without any invintations, but only in readonly mode. (something like news feed, parser will post news to the chat each 15 minutes, anyone can join the chat and read news, but nobody can write to this chat)
I already tried:
<field
var='muc#roomconfig_moderatedroom'>
<value>1</value>
</field>
But any user still can write messages to the chat. And I tried:
<field
var='muc#roomconfig_membersonly'>
<value>1</value>
</field>
In this case users cannot join the chat.
Any suggestions?