Accept "extauth_cache: false"

Don't log a "configuration problem" message if "extauth_cache: false" is
explicitly specified, as that's a valid configuration setting as per the
documentation.
This commit is contained in:
Holger Weiss 2014-04-16 14:15:14 +02:00
parent 727197613a
commit d350cc6361
1 changed files with 3 additions and 1 deletions

View File

@ -172,7 +172,9 @@ remove_user(User, Server, Password) ->
get_cache_option(Host) ->
case ejabberd_config:get_option(
{extauth_cache, Host},
fun(I) when is_integer(I), I > 0 -> I end) of
fun(false) -> undefined;
(I) when is_integer(I), I > 0 -> I
end) of
undefined -> false;
CacheTime -> {true, CacheTime}
end.