mirror of
https://github.com/processone/ejabberd.git
synced 2024-12-20 17:27:00 +01:00
* src/ejabberd_config.erl: Normalize hostnames in config file. If mixed case is used, the hostname will be now useable (EJAB-277).
* src/stringprep/stringprep_sup.erl: Likewise * src/stringprep/Makefile.in: Likewise * src/stringprep/Makefile.win32: Likewise * src/ejabberd_app.erl: Likewise SVN Revision: 806
This commit is contained in:
parent
ede1693f20
commit
221532428f
@ -1,3 +1,12 @@
|
|||||||
|
2007-06-29 Mickael Remond <mickael.remond@process-one.net>
|
||||||
|
|
||||||
|
* src/ejabberd_config.erl: Normalize hostnames in config file. If mixed
|
||||||
|
case is used, the hostname will be now useable (EJAB-277).
|
||||||
|
* src/stringprep/stringprep_sup.erl: Likewise
|
||||||
|
* src/stringprep/Makefile.in: Likewise
|
||||||
|
* src/stringprep/Makefile.win32: Likewise
|
||||||
|
* src/ejabberd_app.erl: Likewise
|
||||||
|
|
||||||
2007-06-28 Mickael Remond <mickael.remond@process-one.net>
|
2007-06-28 Mickael Remond <mickael.remond@process-one.net>
|
||||||
|
|
||||||
* src/ejabberd_auth_anonymous.erl: Do not purge non anonymous accounts
|
* src/ejabberd_auth_anonymous.erl: Do not purge non anonymous accounts
|
||||||
|
@ -23,6 +23,7 @@ start(normal, _Args) ->
|
|||||||
db_init(),
|
db_init(),
|
||||||
sha:start(),
|
sha:start(),
|
||||||
catch ssl:start(),
|
catch ssl:start(),
|
||||||
|
stringprep_sup:start_link(),
|
||||||
translate:start(),
|
translate:start(),
|
||||||
acl:start(),
|
acl:start(),
|
||||||
ejabberd_ctl:init(),
|
ejabberd_ctl:init(),
|
||||||
|
@ -63,7 +63,7 @@ search_hosts(Term, State) ->
|
|||||||
{host, Host} ->
|
{host, Host} ->
|
||||||
if
|
if
|
||||||
State#state.hosts == [] ->
|
State#state.hosts == [] ->
|
||||||
add_option(hosts, [Host], State#state{hosts = [Host]});
|
add_hosts_to_option([Host], State);
|
||||||
true ->
|
true ->
|
||||||
?ERROR_MSG("Can't load config file: "
|
?ERROR_MSG("Can't load config file: "
|
||||||
"too many hosts definitions", []),
|
"too many hosts definitions", []),
|
||||||
@ -72,7 +72,7 @@ search_hosts(Term, State) ->
|
|||||||
{hosts, Hosts} ->
|
{hosts, Hosts} ->
|
||||||
if
|
if
|
||||||
State#state.hosts == [] ->
|
State#state.hosts == [] ->
|
||||||
add_option(hosts, Hosts, State#state{hosts = Hosts});
|
add_hosts_to_option(Hosts, State);
|
||||||
true ->
|
true ->
|
||||||
?ERROR_MSG("Can't load config file: "
|
?ERROR_MSG("Can't load config file: "
|
||||||
"too many hosts definitions", []),
|
"too many hosts definitions", []),
|
||||||
@ -82,6 +82,24 @@ search_hosts(Term, State) ->
|
|||||||
State
|
State
|
||||||
end.
|
end.
|
||||||
|
|
||||||
|
add_hosts_to_option(Hosts, State) ->
|
||||||
|
PrepHosts = normalize_hosts(Hosts),
|
||||||
|
add_option(hosts, PrepHosts, State#state{hosts = PrepHosts}).
|
||||||
|
|
||||||
|
normalize_hosts(Hosts) ->
|
||||||
|
normalize_hosts(Hosts,[]).
|
||||||
|
normalize_hosts([], PrepHosts) ->
|
||||||
|
lists:reverse(PrepHosts);
|
||||||
|
normalize_hosts([Host|Hosts], PrepHosts) ->
|
||||||
|
case jlib:nodeprep(Host) of
|
||||||
|
error ->
|
||||||
|
?ERROR_MSG("Can't load config file: "
|
||||||
|
"invalid host name [~p]", [Host]),
|
||||||
|
exit("invalid hostname");
|
||||||
|
PrepHost ->
|
||||||
|
normalize_hosts(Hosts, [PrepHost|PrepHosts])
|
||||||
|
end.
|
||||||
|
|
||||||
process_term(Term, State) ->
|
process_term(Term, State) ->
|
||||||
case Term of
|
case Term of
|
||||||
override_global ->
|
override_global ->
|
||||||
|
@ -37,7 +37,7 @@
|
|||||||
hosts, password, access,
|
hosts, password, access,
|
||||||
check_from}).
|
check_from}).
|
||||||
|
|
||||||
%-Define(DBGFSM, true).
|
%-define(DBGFSM, true).
|
||||||
|
|
||||||
-ifdef(DBGFSM).
|
-ifdef(DBGFSM).
|
||||||
-define(FSMOPTS, [{debug, [trace]}]).
|
-define(FSMOPTS, [{debug, [trace]}]).
|
||||||
|
@ -17,7 +17,6 @@
|
|||||||
start_link() ->
|
start_link() ->
|
||||||
supervisor:start_link({local, ?MODULE}, ?MODULE, []).
|
supervisor:start_link({local, ?MODULE}, ?MODULE, []).
|
||||||
|
|
||||||
|
|
||||||
init([]) ->
|
init([]) ->
|
||||||
Hooks =
|
Hooks =
|
||||||
{ejabberd_hooks,
|
{ejabberd_hooks,
|
||||||
@ -26,13 +25,6 @@ init([]) ->
|
|||||||
brutal_kill,
|
brutal_kill,
|
||||||
worker,
|
worker,
|
||||||
[ejabberd_hooks]},
|
[ejabberd_hooks]},
|
||||||
StringPrep =
|
|
||||||
{stringprep,
|
|
||||||
{stringprep, start_link, []},
|
|
||||||
permanent,
|
|
||||||
brutal_kill,
|
|
||||||
worker,
|
|
||||||
[stringprep]},
|
|
||||||
NodeGroups =
|
NodeGroups =
|
||||||
{ejabberd_node_groups,
|
{ejabberd_node_groups,
|
||||||
{ejabberd_node_groups, start_link, []},
|
{ejabberd_node_groups, start_link, []},
|
||||||
@ -155,7 +147,6 @@ init([]) ->
|
|||||||
[ejabberd_tmp_sup]},
|
[ejabberd_tmp_sup]},
|
||||||
{ok, {{one_for_one, 10, 1},
|
{ok, {{one_for_one, 10, 1},
|
||||||
[Hooks,
|
[Hooks,
|
||||||
StringPrep,
|
|
||||||
NodeGroups,
|
NodeGroups,
|
||||||
SystemMonitor,
|
SystemMonitor,
|
||||||
Router,
|
Router,
|
||||||
|
@ -25,7 +25,8 @@ ifdef debug
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
OBJS = \
|
OBJS = \
|
||||||
$(OUTDIR)/stringprep.beam
|
$(OUTDIR)/stringprep.beam \
|
||||||
|
$(OUTDIR)/stringprep_sup.beam
|
||||||
|
|
||||||
all: $(OBJS) $(ERLSHLIBS)
|
all: $(OBJS) $(ERLSHLIBS)
|
||||||
|
|
||||||
|
@ -9,7 +9,8 @@ AUXIL = uni_data.c uni_norm.c
|
|||||||
OBJECT = stringprep_drv.o
|
OBJECT = stringprep_drv.o
|
||||||
DLL = $(OUTDIR)\stringprep_drv.dll
|
DLL = $(OUTDIR)\stringprep_drv.dll
|
||||||
|
|
||||||
ALL : $(DLL) $(OUTDIR)\stringprep.beam
|
ALL : $(DLL) $(OUTDIR)\stringprep.beam \
|
||||||
|
$(OUTDIR)\stringprep_sup.beam
|
||||||
|
|
||||||
CLEAN :
|
CLEAN :
|
||||||
-@erase $(DLL)
|
-@erase $(DLL)
|
||||||
@ -17,10 +18,14 @@ CLEAN :
|
|||||||
-@erase $(OUTDIR)\stringprep_drv.lib
|
-@erase $(OUTDIR)\stringprep_drv.lib
|
||||||
-@erase $(OBJECT)
|
-@erase $(OBJECT)
|
||||||
-@erase $(OUTDIR)\stringprep.beam
|
-@erase $(OUTDIR)\stringprep.beam
|
||||||
|
-@erase $(OUTDIR)\stringprep_sup.beam
|
||||||
|
|
||||||
$(OUTDIR)\stringprep.beam : stringprep.erl
|
$(OUTDIR)\stringprep.beam : stringprep.erl
|
||||||
erlc -W $(EFLAGS) -o $(OUTDIR) stringprep.erl
|
erlc -W $(EFLAGS) -o $(OUTDIR) stringprep.erl
|
||||||
|
|
||||||
|
$(OUTDIR)\stringprep_sup.beam : stringprep_sup.erl
|
||||||
|
erlc -W $(EFLAGS) -o $(OUTDIR) stringprep_sup.erl
|
||||||
|
|
||||||
CC=cl.exe
|
CC=cl.exe
|
||||||
CC_FLAGS=-nologo -D__WIN32__ -DWIN32 -DWINDOWS -D_WIN32 -DNT -MD -Ox -I"$(ERLANG_DIR)\usr\include" -I"$(EI_DIR)\include"
|
CC_FLAGS=-nologo -D__WIN32__ -DWIN32 -DWINDOWS -D_WIN32 -DNT -MD -Ox -I"$(ERLANG_DIR)\usr\include" -I"$(EI_DIR)\include"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user