24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-08 21:43:07 +02: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,9 +618,10 @@ route_message(From, To, Packet) ->
case ejabberd_auth:is_user_exists(exmpp_jid:prep_node_as_list(To),
exmpp_jid:prep_domain_as_list(To)) of
true ->
ejabberd_hooks:run(offline_message_hook,
exmpp_jid:prep_domain(To),
[From, To, Packet]);
is_privacy_allow(From, To, Packet) andalso
ejabberd_hooks:run(offline_message_hook,
exmpp_jid:prep_domain(To),
[From, To, Packet]);
_ ->
Err = exmpp_stanza:reply_with_error(
Packet, 'service-unaivailable'),