mirror of
https://github.com/processone/ejabberd.git
synced 2024-12-26 17:38:45 +01:00
e595ab91a0
* src/mod_last.erl: jabber:iq:last support (JEP-0012) * src/ejabberd_sm.erl: Likewise * src/jlib.hrl: Added NS_LAST macros SVN Revision: 159
104 lines
2.7 KiB
Plaintext
104 lines
2.7 KiB
Plaintext
% $Id$
|
|
|
|
%override_acls.
|
|
|
|
|
|
% Users that have admin access. Add line like one of the following after you
|
|
% will be successfully registered on server to get admin access:
|
|
%{acl, admin, {user, "aleksey"}}.
|
|
%{acl, admin, {user, "ermine"}}.
|
|
|
|
% Blocked users:
|
|
%{acl, blocked, {user, "test"}}.
|
|
|
|
% Another examples of ACLs:
|
|
%{acl, jabberorg, {server, "jabber.org"}}.
|
|
%{acl, aleksey, {user, "aleksey", "jabber.ru"}}.
|
|
%{acl, test, {user_regexp, "^test"}}.
|
|
%{acl, test, {user_glob, "test*"}}.
|
|
|
|
|
|
% Only admins can use configuration interface:
|
|
{access, configure, [{allow, admin}]}.
|
|
|
|
% Every username can be registered via in-band registration:
|
|
{access, register, [{allow, all}]}.
|
|
|
|
% After successful registration user will get message with following subject
|
|
% and body:
|
|
{welcome_message,
|
|
{"Welcome!",
|
|
"Welcome to Jabber Service. "
|
|
"For information about Jabber visit http://jabber.org"}}.
|
|
% Replace them with 'none' if you don't want to send such message:
|
|
%{welcome_message, none}.
|
|
|
|
% List of people who will get notifications about registered users
|
|
%{registration_watchers, ["admin1@localhost",
|
|
% "admin2@localhost"]}.
|
|
|
|
% Only admins can send announcement messages:
|
|
{access, announce, [{allow, admin}]}.
|
|
|
|
|
|
% Only non-blocked users can use c2s connections:
|
|
{access, c2s, [{deny, blocked},
|
|
{allow, all}]}.
|
|
|
|
% Set shaper with name "normal" to limit traffic speed to 1000B/s
|
|
{shaper, normal, {maxrate, 1000}}.
|
|
|
|
% For all users except admins used "normal" shaper
|
|
{access, c2s_shaper, [{none, admin},
|
|
{normal, all}]}.
|
|
|
|
% Admins of this server are also admins of MUC service:
|
|
{access, muc_admin, [{allow, admin}]}.
|
|
|
|
% Host name:
|
|
{host, "localhost"}.
|
|
|
|
|
|
% Listened ports:
|
|
{listen, [{5222, ejabberd_c2s, [{access, c2s},
|
|
{shaper, c2s_shaper}]},
|
|
{5223, ejabberd_c2s, [{access, c2s},
|
|
{ssl, [{certfile, "./ssl.pem"}]}]},
|
|
{5269, ejabberd_s2s_in, []},
|
|
{8888, ejabberd_service, [{hosts,
|
|
["conference.e.localhost",
|
|
"muc.e.localhost"],
|
|
[{password, "secret"}]}]}
|
|
]}.
|
|
|
|
% If SRV lookup fails, then port 5269 is used to communicate with remote server
|
|
{outgoing_s2s_port, 5269}.
|
|
|
|
|
|
% Used modules:
|
|
{modules, [
|
|
{mod_register, []},
|
|
{mod_roster, []},
|
|
{mod_privacy, []},
|
|
{mod_configure, []},
|
|
{mod_disco, []},
|
|
{mod_stats, []},
|
|
{mod_vcard, []},
|
|
{mod_offline, []},
|
|
{mod_echo, [{host, "echo.localhost"}]},
|
|
{mod_private, []},
|
|
{mod_irc, []},
|
|
{mod_muc, []},
|
|
{mod_pubsub, []},
|
|
{mod_time, []},
|
|
{mod_last, []},
|
|
{mod_version, []}
|
|
]}.
|
|
|
|
|
|
|
|
|
|
% Local Variables:
|
|
% mode: erlang
|
|
% End:
|