* src/ejabberd_s2s.erl: Fixed typo.

SVN Revision: 819
This commit is contained in:
Mickaël Rémond 2007-07-18 18:42:00 +00:00
parent 9da2c78eb4
commit 944ef9bbc2
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
2007-07-18 Mickael Remond <mickael.remond@process-one.net>
* src/ejabberd_s2s.erl: Fixed typos.
* src/ejabberd_s2s.erl: Implements s2s hosts whitelist / blacklist
* src/ejabberd.cfg.example: Likewise

View File

@ -345,7 +345,7 @@ allow_host(MyServer, S2SHost) ->
case ejabberd_config:get_local_option({s2s_default_policy, MyServer}) of
deny -> false;
allow -> true;
_ -> allow %% The default s2s policy is allow
_ -> true %% The default s2s policy is allow
end
end.