2013-03-27 17:53:56 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
%%% File : mod_carboncopy.erl
|
|
|
|
%%% Author : Eric Cestari <ecestari@process-one.net>
|
|
|
|
%%% Purpose : Message Carbons XEP-0280 0.8
|
|
|
|
%%% Created : 5 May 2008 by Mickael Remond <mremond@process-one.net>
|
2013-08-12 14:25:05 +02:00
|
|
|
%%% Usage : Add the following line in modules section of ejabberd.yml:
|
2013-03-27 17:53:56 +01:00
|
|
|
%%% {mod_carboncopy, []}
|
|
|
|
%%%
|
|
|
|
%%%
|
2019-01-08 22:53:27 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2019 ProcessOne
|
2013-03-27 17:53:56 +01:00
|
|
|
%%%
|
|
|
|
%%% This program is free software; you can redistribute it and/or
|
|
|
|
%%% modify it under the terms of the GNU General Public License as
|
|
|
|
%%% published by the Free Software Foundation; either version 2 of the
|
|
|
|
%%% License, or (at your option) any later version.
|
|
|
|
%%%
|
|
|
|
%%% This program is distributed in the hope that it will be useful,
|
|
|
|
%%% but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
%%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
%%% General Public License for more details.
|
|
|
|
%%%
|
2014-02-22 11:27:40 +01:00
|
|
|
%%% You should have received a copy of the GNU General Public License along
|
|
|
|
%%% with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
%%% 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2013-03-27 17:53:56 +01:00
|
|
|
%%%
|
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
-module (mod_carboncopy).
|
2015-10-07 00:06:58 +02:00
|
|
|
|
2013-03-27 17:53:56 +01:00
|
|
|
-author ('ecestari@process-one.net').
|
2015-05-21 17:02:36 +02:00
|
|
|
-protocol({xep, 280, '0.8'}).
|
2013-03-27 17:53:56 +01:00
|
|
|
|
2018-01-31 14:57:43 +01:00
|
|
|
-behaviour(gen_mod).
|
2013-03-27 17:53:56 +01:00
|
|
|
|
|
|
|
%% API:
|
2017-02-22 17:46:47 +01:00
|
|
|
-export([start/2, stop/1, reload/3]).
|
2013-03-27 17:53:56 +01:00
|
|
|
|
2017-01-09 15:02:17 +01:00
|
|
|
-export([user_send_packet/1, user_receive_packet/1,
|
2018-12-01 11:33:44 +01:00
|
|
|
iq_handler/1, disco_features/5,
|
2019-06-14 11:33:26 +02:00
|
|
|
is_carbon_copy/1, depends/2,
|
2018-01-23 08:54:52 +01:00
|
|
|
mod_options/1]).
|
2018-12-10 09:53:27 +01:00
|
|
|
-export([c2s_copy_session/2, c2s_session_opened/1, c2s_session_resumed/1]).
|
2018-12-01 11:33:44 +01:00
|
|
|
%% For debugging purposes
|
|
|
|
-export([list/2]).
|
2013-03-27 17:53:56 +01:00
|
|
|
|
2013-04-08 11:12:54 +02:00
|
|
|
-include("logger.hrl").
|
2016-07-18 14:01:32 +02:00
|
|
|
-include("xmpp.hrl").
|
2019-06-22 16:08:45 +02:00
|
|
|
-include("translate.hrl").
|
2013-03-27 17:53:56 +01:00
|
|
|
|
2016-07-18 14:01:32 +02:00
|
|
|
-type direction() :: sent | received.
|
2018-12-10 09:53:27 +01:00
|
|
|
-type c2s_state() :: ejabberd_c2s:state().
|
2016-07-18 14:01:32 +02:00
|
|
|
|
|
|
|
-spec is_carbon_copy(stanza()) -> boolean().
|
2016-11-22 22:21:34 +01:00
|
|
|
is_carbon_copy(#message{meta = #{carbon_copy := true}}) ->
|
|
|
|
true;
|
|
|
|
is_carbon_copy(_) ->
|
|
|
|
false.
|
2013-03-27 17:53:56 +01:00
|
|
|
|
2018-12-01 11:33:44 +01:00
|
|
|
start(Host, _Opts) ->
|
2017-01-09 15:02:17 +01:00
|
|
|
ejabberd_hooks:add(disco_local_features, Host, ?MODULE, disco_features, 50),
|
2013-03-27 17:53:56 +01:00
|
|
|
%% why priority 89: to define clearly that we must run BEFORE mod_logdb hook (90)
|
|
|
|
ejabberd_hooks:add(user_send_packet,Host, ?MODULE, user_send_packet, 89),
|
|
|
|
ejabberd_hooks:add(user_receive_packet,Host, ?MODULE, user_receive_packet, 89),
|
2018-12-10 09:53:27 +01:00
|
|
|
ejabberd_hooks:add(c2s_copy_session, Host, ?MODULE, c2s_copy_session, 50),
|
|
|
|
ejabberd_hooks:add(c2s_session_resumed, Host, ?MODULE, c2s_session_resumed, 50),
|
|
|
|
ejabberd_hooks:add(c2s_session_opened, Host, ?MODULE, c2s_session_opened, 50),
|
2018-02-11 10:54:15 +01:00
|
|
|
gen_iq_handler:add_iq_handler(ejabberd_sm, Host, ?NS_CARBONS_2, ?MODULE, iq_handler).
|
2013-03-27 17:53:56 +01:00
|
|
|
|
|
|
|
stop(Host) ->
|
2014-07-20 20:20:44 +02:00
|
|
|
gen_iq_handler:remove_iq_handler(ejabberd_sm, Host, ?NS_CARBONS_2),
|
2017-01-09 15:02:17 +01:00
|
|
|
ejabberd_hooks:delete(disco_local_features, Host, ?MODULE, disco_features, 50),
|
2013-03-27 17:53:56 +01:00
|
|
|
%% why priority 89: to define clearly that we must run BEFORE mod_logdb hook (90)
|
|
|
|
ejabberd_hooks:delete(user_send_packet,Host, ?MODULE, user_send_packet, 89),
|
2018-12-10 09:53:27 +01:00
|
|
|
ejabberd_hooks:delete(user_receive_packet,Host, ?MODULE, user_receive_packet, 89),
|
|
|
|
ejabberd_hooks:delete(c2s_copy_session, Host, ?MODULE, c2s_copy_session, 50),
|
|
|
|
ejabberd_hooks:delete(c2s_session_resumed, Host, ?MODULE, c2s_session_resumed, 50),
|
|
|
|
ejabberd_hooks:delete(c2s_session_opened, Host, ?MODULE, c2s_session_opened, 50).
|
2013-03-27 17:53:56 +01:00
|
|
|
|
2018-12-01 11:33:44 +01:00
|
|
|
reload(_Host, _NewOpts, _OldOpts) ->
|
|
|
|
ok.
|
2017-02-22 17:46:47 +01:00
|
|
|
|
2017-01-09 15:02:17 +01:00
|
|
|
-spec disco_features({error, stanza_error()} | {result, [binary()]} | empty,
|
|
|
|
jid(), jid(), binary(), binary()) ->
|
|
|
|
{error, stanza_error()} | {result, [binary()]}.
|
|
|
|
disco_features({error, Err}, _From, _To, _Node, _Lang) ->
|
|
|
|
{error, Err};
|
|
|
|
disco_features(empty, _From, _To, <<"">>, _Lang) ->
|
|
|
|
{result, [?NS_CARBONS_2]};
|
|
|
|
disco_features({result, Feats}, _From, _To, <<"">>, _Lang) ->
|
|
|
|
{result, [?NS_CARBONS_2|Feats]};
|
|
|
|
disco_features(Acc, _From, _To, _Node, _Lang) ->
|
|
|
|
Acc.
|
|
|
|
|
2016-07-18 14:01:32 +02:00
|
|
|
-spec iq_handler(iq()) -> iq().
|
|
|
|
iq_handler(#iq{type = set, lang = Lang, from = From,
|
|
|
|
sub_els = [El]} = IQ) when is_record(El, carbons_enable);
|
|
|
|
is_record(El, carbons_disable) ->
|
2015-11-24 16:44:13 +01:00
|
|
|
{U, S, R} = jid:tolower(From),
|
2016-07-18 14:01:32 +02:00
|
|
|
Result = case El of
|
2018-12-01 11:33:44 +01:00
|
|
|
#carbons_enable{} -> enable(S, U, R, ?NS_CARBONS_2);
|
|
|
|
#carbons_disable{} -> disable(S, U, R)
|
2016-07-18 14:01:32 +02:00
|
|
|
end,
|
2015-10-07 00:06:58 +02:00
|
|
|
case Result of
|
2016-07-18 14:01:32 +02:00
|
|
|
ok ->
|
|
|
|
xmpp:make_iq_result(IQ);
|
2018-12-01 11:33:44 +01:00
|
|
|
{error, _} ->
|
2019-06-22 16:08:45 +02:00
|
|
|
Txt = ?T("Database failure"),
|
2016-07-18 14:01:32 +02:00
|
|
|
xmpp:make_error(IQ, xmpp:err_internal_server_error(Txt, Lang))
|
2013-03-27 17:53:56 +01:00
|
|
|
end;
|
2016-07-18 14:01:32 +02:00
|
|
|
iq_handler(#iq{type = set, lang = Lang} = IQ) ->
|
2019-06-22 16:08:45 +02:00
|
|
|
Txt = ?T("Only <enable/> or <disable/> tags are allowed"),
|
2016-07-18 14:01:32 +02:00
|
|
|
xmpp:make_error(IQ, xmpp:err_bad_request(Txt, Lang));
|
|
|
|
iq_handler(#iq{type = get, lang = Lang} = IQ)->
|
2019-06-22 16:08:45 +02:00
|
|
|
Txt = ?T("Value 'get' of 'type' attribute is not allowed"),
|
2016-07-18 14:01:32 +02:00
|
|
|
xmpp:make_error(IQ, xmpp:err_not_allowed(Txt, Lang)).
|
2013-03-27 17:53:56 +01:00
|
|
|
|
2017-01-09 15:02:17 +01:00
|
|
|
-spec user_send_packet({stanza(), ejabberd_c2s:state()})
|
|
|
|
-> {stanza(), ejabberd_c2s:state()} | {stop, {stanza(), ejabberd_c2s:state()}}.
|
|
|
|
user_send_packet({Packet, C2SState}) ->
|
|
|
|
From = xmpp:get_from(Packet),
|
|
|
|
To = xmpp:get_to(Packet),
|
|
|
|
case check_and_forward(From, To, Packet, sent) of
|
|
|
|
{stop, Pkt} -> {stop, {Pkt, C2SState}};
|
|
|
|
Pkt -> {Pkt, C2SState}
|
|
|
|
end.
|
2014-04-07 22:10:08 +02:00
|
|
|
|
2017-01-09 15:02:17 +01:00
|
|
|
-spec user_receive_packet({stanza(), ejabberd_c2s:state()})
|
|
|
|
-> {stanza(), ejabberd_c2s:state()} | {stop, {stanza(), ejabberd_c2s:state()}}.
|
|
|
|
user_receive_packet({Packet, #{jid := JID} = C2SState}) ->
|
|
|
|
To = xmpp:get_to(Packet),
|
|
|
|
case check_and_forward(JID, To, Packet, received) of
|
|
|
|
{stop, Pkt} -> {stop, {Pkt, C2SState}};
|
|
|
|
Pkt -> {Pkt, C2SState}
|
|
|
|
end.
|
2015-10-07 00:06:58 +02:00
|
|
|
|
2018-12-10 09:53:27 +01:00
|
|
|
-spec c2s_copy_session(c2s_state(), c2s_state()) -> c2s_state().
|
|
|
|
c2s_copy_session(State, #{user := U, server := S, resource := R}) ->
|
|
|
|
case ejabberd_sm:get_user_info(U, S, R) of
|
|
|
|
offline -> State;
|
|
|
|
Info ->
|
|
|
|
case lists:keyfind(carboncopy, 1, Info) of
|
|
|
|
{_, CC} -> State#{carboncopy => CC};
|
|
|
|
false -> State
|
|
|
|
end
|
|
|
|
end.
|
|
|
|
|
|
|
|
-spec c2s_session_resumed(c2s_state()) -> c2s_state().
|
|
|
|
c2s_session_resumed(#{user := U, server := S, resource := R,
|
|
|
|
carboncopy := CC} = State) ->
|
|
|
|
ejabberd_sm:set_user_info(U, S, R, carboncopy, CC),
|
|
|
|
maps:remove(carboncopy, State);
|
|
|
|
c2s_session_resumed(State) ->
|
|
|
|
State.
|
|
|
|
|
|
|
|
-spec c2s_session_opened(c2s_state()) -> c2s_state().
|
|
|
|
c2s_session_opened(State) ->
|
|
|
|
maps:remove(carboncopy, State).
|
|
|
|
|
2015-10-07 00:06:58 +02:00
|
|
|
% Modified from original version:
|
2013-03-27 17:53:56 +01:00
|
|
|
% - registered to the user_send_packet hook, to be called only once even for multicast
|
|
|
|
% - do not support "private" message mode, and do not modify the original packet in any way
|
|
|
|
% - we also replicate "read" notifications
|
2016-07-18 14:01:32 +02:00
|
|
|
-spec check_and_forward(jid(), jid(), stanza(), direction()) ->
|
|
|
|
stanza() | {stop, stanza()}.
|
2014-11-24 22:37:14 +01:00
|
|
|
check_and_forward(JID, To, Packet, Direction)->
|
2015-07-28 21:34:02 +02:00
|
|
|
case is_chat_message(Packet) andalso
|
2018-02-22 00:40:09 +01:00
|
|
|
not is_received_muc_pm(To, Packet, Direction) andalso
|
2018-02-22 00:46:47 +01:00
|
|
|
not xmpp:has_subtag(Packet, #carbons_private{}) andalso
|
|
|
|
not xmpp:has_subtag(Packet, #hint{type = 'no-copy'}) of
|
2014-05-30 23:44:19 +02:00
|
|
|
true ->
|
|
|
|
case is_carbon_copy(Packet) of
|
|
|
|
false ->
|
2015-06-22 15:56:08 +02:00
|
|
|
send_copies(JID, To, Packet, Direction),
|
|
|
|
Packet;
|
2014-05-30 23:44:19 +02:00
|
|
|
true ->
|
2015-10-07 00:06:58 +02:00
|
|
|
%% stop the hook chain, we don't want logging modules to duplicates
|
|
|
|
%% this message
|
2015-06-22 15:56:08 +02:00
|
|
|
{stop, Packet}
|
2014-05-30 23:44:19 +02:00
|
|
|
end;
|
|
|
|
_ ->
|
2015-06-22 15:56:08 +02:00
|
|
|
Packet
|
2015-02-11 00:52:47 +01:00
|
|
|
end.
|
2013-03-27 17:53:56 +01:00
|
|
|
|
|
|
|
%%% Internal
|
|
|
|
%% Direction = received | sent <received xmlns='urn:xmpp:carbons:1'/>
|
2016-07-18 14:01:32 +02:00
|
|
|
-spec send_copies(jid(), jid(), message(), direction()) -> ok.
|
2014-04-07 22:10:08 +02:00
|
|
|
send_copies(JID, To, Packet, Direction)->
|
2015-11-24 16:44:13 +01:00
|
|
|
{U, S, R} = jid:tolower(JID),
|
2014-04-08 23:32:30 +02:00
|
|
|
PrioRes = ejabberd_sm:get_user_present_resources(U, S),
|
2015-02-11 16:12:08 +01:00
|
|
|
{_, AvailRs} = lists:unzip(PrioRes),
|
2016-11-22 19:25:20 +01:00
|
|
|
{MaxPrio, _MaxRes} = case catch lists:max(PrioRes) of
|
2014-11-05 19:04:02 +01:00
|
|
|
{Prio, Res} -> {Prio, Res};
|
|
|
|
_ -> {0, undefined}
|
|
|
|
end,
|
2014-04-08 23:32:30 +02:00
|
|
|
|
2015-02-12 00:14:57 +01:00
|
|
|
%% unavailable resources are handled like bare JIDs
|
2014-04-08 23:32:30 +02:00
|
|
|
IsBareTo = case {Direction, To} of
|
|
|
|
{received, #jid{lresource = <<>>}} -> true;
|
2015-02-12 00:14:57 +01:00
|
|
|
{received, #jid{lresource = LRes}} -> not lists:member(LRes, AvailRs);
|
2014-04-08 23:32:30 +02:00
|
|
|
_ -> false
|
|
|
|
end,
|
2013-03-27 17:53:56 +01:00
|
|
|
%% list of JIDs that should receive a carbon copy of this message (excluding the
|
2014-04-07 22:10:08 +02:00
|
|
|
%% receiver(s) of the original message
|
2016-11-22 19:25:20 +01:00
|
|
|
TargetJIDs = case {IsBareTo, Packet} of
|
|
|
|
{true, #message{meta = #{sm_copy := true}}} ->
|
2014-11-05 19:04:02 +01:00
|
|
|
%% The message was sent to our bare JID, and we currently have
|
|
|
|
%% multiple resources with the same highest priority, so the session
|
|
|
|
%% manager routes the message to each of them. We create carbon
|
2016-11-22 19:25:20 +01:00
|
|
|
%% copies only from one of those resources in order to avoid
|
|
|
|
%% duplicates.
|
2014-11-05 19:04:02 +01:00
|
|
|
[];
|
2016-11-22 19:25:20 +01:00
|
|
|
{true, _} ->
|
|
|
|
OrigTo = fun(Res) -> lists:member({MaxPrio, Res}, PrioRes) end,
|
|
|
|
[ {jid:make({U, S, CCRes}), CC_Version}
|
|
|
|
|| {CCRes, CC_Version} <- list(U, S),
|
|
|
|
lists:member(CCRes, AvailRs), not OrigTo(CCRes) ];
|
2014-11-05 19:04:02 +01:00
|
|
|
{false, _} ->
|
2015-11-24 16:44:13 +01:00
|
|
|
[ {jid:make({U, S, CCRes}), CC_Version}
|
2015-02-11 16:12:08 +01:00
|
|
|
|| {CCRes, CC_Version} <- list(U, S),
|
|
|
|
lists:member(CCRes, AvailRs), CCRes /= R ]
|
2015-11-24 16:44:13 +01:00
|
|
|
%TargetJIDs = lists:delete(JID, [ jid:make({U, S, CCRes}) || CCRes <- list(U, S) ]),
|
2014-04-07 22:10:08 +02:00
|
|
|
end,
|
2013-03-27 17:53:56 +01:00
|
|
|
|
2019-06-14 11:33:26 +02:00
|
|
|
lists:foreach(
|
|
|
|
fun({Dest, _Version}) ->
|
|
|
|
{_, _, Resource} = jid:tolower(Dest),
|
|
|
|
?DEBUG("Sending: ~p =/= ~p", [R, Resource]),
|
|
|
|
Sender = jid:make({U, S, <<>>}),
|
|
|
|
New = build_forward_packet(JID, Packet, Sender, Dest, Direction),
|
|
|
|
ejabberd_router:route(xmpp:set_from_to(New, Sender, Dest))
|
|
|
|
end, TargetJIDs).
|
2013-03-27 17:53:56 +01:00
|
|
|
|
2016-07-18 14:01:32 +02:00
|
|
|
-spec build_forward_packet(jid(), message(), jid(), jid(), direction()) -> message().
|
|
|
|
build_forward_packet(JID, #message{type = T} = Msg, Sender, Dest, Direction) ->
|
2018-01-25 18:02:47 +01:00
|
|
|
Forwarded = #forwarded{sub_els = [complete_packet(JID, Msg, Direction)]},
|
2016-07-18 14:01:32 +02:00
|
|
|
Carbon = case Direction of
|
|
|
|
sent -> #carbons_sent{forwarded = Forwarded};
|
|
|
|
received -> #carbons_received{forwarded = Forwarded}
|
|
|
|
end,
|
2016-11-22 22:21:34 +01:00
|
|
|
#message{from = Sender, to = Dest, type = T, sub_els = [Carbon],
|
|
|
|
meta = #{carbon_copy => true}}.
|
2013-03-27 17:53:56 +01:00
|
|
|
|
2016-07-18 14:01:32 +02:00
|
|
|
-spec enable(binary(), binary(), binary(), binary()) -> ok | {error, any()}.
|
2013-03-27 17:53:56 +01:00
|
|
|
enable(Host, U, R, CC)->
|
2018-12-01 11:33:44 +01:00
|
|
|
?DEBUG("Enabling carbons for ~s@~s/~s", [U, Host, R]),
|
|
|
|
case ejabberd_sm:set_user_info(U, Host, R, carboncopy, CC) of
|
|
|
|
ok -> ok;
|
|
|
|
{error, Reason} = Err ->
|
2019-07-24 17:56:44 +02:00
|
|
|
?ERROR_MSG("Failed to enable carbons for ~s@~s/~s: ~p",
|
2018-12-01 11:33:44 +01:00
|
|
|
[U, Host, R, Reason]),
|
2017-04-14 12:57:52 +02:00
|
|
|
Err
|
|
|
|
end.
|
2013-03-27 17:53:56 +01:00
|
|
|
|
2016-07-18 14:01:32 +02:00
|
|
|
-spec disable(binary(), binary(), binary()) -> ok | {error, any()}.
|
2013-03-27 17:53:56 +01:00
|
|
|
disable(Host, U, R)->
|
2018-12-01 11:33:44 +01:00
|
|
|
?DEBUG("Disabling carbons for ~s@~s/~s", [U, Host, R]),
|
|
|
|
case ejabberd_sm:del_user_info(U, Host, R, carboncopy) of
|
|
|
|
ok -> ok;
|
|
|
|
{error, notfound} -> ok;
|
|
|
|
{error, Reason} = Err ->
|
|
|
|
?ERROR_MSG("Failed to disable carbons for ~s@~s/~s: ~p",
|
|
|
|
[U, Host, R, Reason]),
|
|
|
|
Err
|
|
|
|
end.
|
2013-03-27 17:53:56 +01:00
|
|
|
|
2016-07-18 14:01:32 +02:00
|
|
|
-spec complete_packet(jid(), message(), direction()) -> message().
|
|
|
|
complete_packet(From, #message{from = undefined} = Msg, sent) ->
|
2013-03-27 17:53:56 +01:00
|
|
|
%% if this is a packet sent by user on this host, then Packet doesn't
|
|
|
|
%% include the 'from' attribute. We must add it.
|
2016-07-18 14:01:32 +02:00
|
|
|
Msg#message{from = From};
|
|
|
|
complete_packet(_From, Msg, _Direction) ->
|
|
|
|
Msg.
|
|
|
|
|
|
|
|
-spec is_chat_message(stanza()) -> boolean().
|
|
|
|
is_chat_message(#message{type = chat}) ->
|
|
|
|
true;
|
2016-11-18 11:38:08 +01:00
|
|
|
is_chat_message(#message{type = normal, body = [_|_]}) ->
|
|
|
|
true;
|
2016-07-18 14:01:32 +02:00
|
|
|
is_chat_message(_) ->
|
|
|
|
false.
|
|
|
|
|
2018-02-22 00:40:09 +01:00
|
|
|
-spec is_received_muc_pm(jid(), message(), direction()) -> boolean().
|
|
|
|
is_received_muc_pm(#jid{lresource = <<>>}, _Packet, _Direction) ->
|
2016-09-19 22:46:36 +02:00
|
|
|
false;
|
2018-02-22 00:40:09 +01:00
|
|
|
is_received_muc_pm(_To, _Packet, sent) ->
|
|
|
|
false;
|
|
|
|
is_received_muc_pm(_To, Packet, received) ->
|
2016-11-12 11:27:15 +01:00
|
|
|
xmpp:has_subtag(Packet, #muc_user{}).
|
2014-11-24 22:37:14 +01:00
|
|
|
|
2017-04-14 12:57:52 +02:00
|
|
|
-spec list(binary(), binary()) -> [{Resource :: binary(), Namespace :: binary()}].
|
2015-10-07 00:06:58 +02:00
|
|
|
list(User, Server) ->
|
2018-12-01 11:33:44 +01:00
|
|
|
lists:filtermap(
|
|
|
|
fun({Resource, Info}) ->
|
|
|
|
case lists:keyfind(carboncopy, 1, Info) of
|
|
|
|
{_, NS} -> {true, {Resource, NS}};
|
|
|
|
false -> false
|
|
|
|
end
|
|
|
|
end, ejabberd_sm:get_user_info(User, Server)).
|
2015-06-01 14:38:27 +02:00
|
|
|
|
2016-07-07 11:17:38 +02:00
|
|
|
depends(_Host, _Opts) ->
|
|
|
|
[].
|
|
|
|
|
2018-12-01 11:33:44 +01:00
|
|
|
mod_options(_) ->
|
2019-06-14 11:33:26 +02:00
|
|
|
[].
|