ejabberd - Comments for "MUC working With mode filter" https://www.ejabberd.im/node/4062 en I've updated mod_filter.erl https://www.ejabberd.im/node/4062#comment-55784 <p>I've updated mod_filter.erl in the Bugzilla page. Now it seems to work as you want with this configuration:</p> <pre>%% This matches any MUC JID of the local server {acl, ex3muc, {server, "conference.localhost"}}. %% This matches any JID of the local server {acl, ex3server, {server_glob, "*localhost"}}. %% Admins can send/receive Presence/Message to/from everybody %% MUC entities can send/receive Presence/Message to/from everybody %% Non-admins can send/receive Presence/Message to/from MUC %% Anything else is denied {access, mod_filter_presence, [{allow, admin}, {allow, ex3muc}, {restrict_ex3, ex3server}]}. {access, mod_filter_message, [{allow, admin}, {allow, ex3muc}, {restrict_ex3, ex3server}]}. %% Everybody can send/receive IQ to/from everybody {access, mod_filter_iq, [{allow, all}]}. %% In general, everybody can send/receive to/from everybody {access, mod_filter, [{allow, all}]}. {access, restrict_ex3, [{allow, admin}, {allow, ex3muc}, {deny, all}]}. </pre> Thu, 20 May 2010 11:42:23 +0000 mfoss comment 55784 at https://www.ejabberd.im