25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-11-22 16:20:52 +01:00

Don't store blocked messages in offline queue (thanks to Brian Acton)(EJAB-1224)

This commit is contained in:
Badlop 2010-04-27 13:29:05 +02:00
parent 9820880cd5
commit 4c147c5f29

View File

@ -618,6 +618,7 @@ route_message(From, To, Packet) ->
case ejabberd_auth:is_user_exists(exmpp_jid:prep_node_as_list(To), case ejabberd_auth:is_user_exists(exmpp_jid:prep_node_as_list(To),
exmpp_jid:prep_domain_as_list(To)) of exmpp_jid:prep_domain_as_list(To)) of
true -> true ->
is_privacy_allow(From, To, Packet) andalso
ejabberd_hooks:run(offline_message_hook, ejabberd_hooks:run(offline_message_hook,
exmpp_jid:prep_domain(To), exmpp_jid:prep_domain(To),
[From, To, Packet]); [From, To, Packet]);