How to control default MUC properties?

Hi all,

I’'d like to allow my users to create MUCs as needed, but I want to make sure that any MUCs get created with certain requirements.

In particular, I want any MUCs to have these settings enabled:

“Show Real JIDs to Anyone”

“Only login with registered nickname”

Thanks,

Andrew

Hi Andrew,

It seems to me that there are no global system properties that could meet your needs. You can find the supported properties for MUC at http://wiki.jivesoftware.org/display/WILDFIRE/Wildfire+Properties. Looks like the only option you have is to modify the source code (MUCRoomImpl.java) and set the following:

private boolean loginRestrictedToNickname = true;
private boolean canAnyoneDiscoverJID = true;