mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-30 16:36:29 +01:00
a8a8e3b5a6
SVN Revision: 62
62 lines
1.4 KiB
INI
62 lines
1.4 KiB
INI
% $Id$
|
|
|
|
override_acls.
|
|
|
|
{acl, admin, {user, "aleksey"}}.
|
|
{acl, admin, {user, "ermine"}}.
|
|
{acl, admin, {user, "test"}}.
|
|
{acl, admin, {user, "aleksey", "jabber.ru"}}.
|
|
{acl, admin, {user, "ermine", "jabber.ru"}}.
|
|
|
|
|
|
{acl, blocked, {user, "test2"}}.
|
|
|
|
{acl, jabberorg, {server, "jabber.org"}}.
|
|
{acl, aleksey, {user, "aleksey", "jabber.ru"}}.
|
|
|
|
{acl, test, {user_glob, "test.*"}}.
|
|
%{acl, test2, {user_glob, "test*"}}.
|
|
|
|
|
|
{access, disco_admin, [{allow, admin},
|
|
{deny, all}]}.
|
|
|
|
{access, configure, [{allow, admin}]}.
|
|
|
|
{access, c2s, [{deny, blocked},
|
|
{allow, all}]}.
|
|
|
|
{host, "e.localhost"}.
|
|
|
|
{listen, [{5522, ejabberd_c2s, start, [{access, c2s}]},
|
|
%{5523, ejabberd_c2s, start,
|
|
% [{access, c2s}, {ssl, [{certfile, "./ssl.pem"}]}]},
|
|
{5269, ejabberd_s2s_in, start, []},
|
|
{8888, ejabberd_service, start,
|
|
[{host, "asd.e.localhost", [{password, "asdqwe"}]}]}
|
|
]}.
|
|
|
|
% This value (5569) is only for debugging, must be 5269
|
|
{outgoing_s2s_port, 5569}.
|
|
|
|
{modules, [
|
|
{mod_register, []},
|
|
{mod_roster, []},
|
|
{mod_configure, []},
|
|
{mod_disco, []},
|
|
{mod_stats, []},
|
|
{mod_vcard, []},
|
|
{mod_offline, []},
|
|
{mod_echo, [{host, "echo.e.localhost"}]},
|
|
{mod_private, []},
|
|
{mod_time, [{iqdisc, no_queue}]},
|
|
{mod_version, []}
|
|
]}.
|
|
|
|
|
|
|
|
|
|
% Local Variables:
|
|
% mode: erlang
|
|
% End:
|