> On 2009/12/21, at 18:23, Jesse Thompson wrote: >> We currently do not publish SRV records for our muc service in our >> domains, which effectively keeps external users out of our rooms.
2009/12/21 Pedro Melo <[email protected]>: > It would be best if you could write a ACL preventing non-local users to > access your conference service. Check your server documentation to see if > they support that type of thing. The Jabber server in question may be doit.wisc.edu, which runs ejabberd. The current configuration is probably like this: {acl, local, {user_regexp, ""}}. {access, muc, [{allow, all}]}. {modules, [ ... {mod_muc, [ {access, muc}, {access_create, muc}, {access_persistent, muc}, {access_admin, muc_admin} ]}, ... ]}. The change pointed by Pedro is simple, replace: {access, muc, [{allow, all}]}. with: {access, muc, [{allow, local},{deny,all}]}. --- Badlop ProcessOne
