Reputation: 572
Suppose we have client A
and client B
.
client A
has connection to jabber.
client B
has no connection to jabber.
client A
sends "hello" message to B
. when client B
reconnected to ejabberd
will receive "hello" message.
i want client B
only receive "hello" message when it connected to ejabberd
.
i commented mod_offline
module in ejabbed config file, but didn't solve problem.
Upvotes: 0
Views: 181
Reputation: 4120
If you comment mod_offline, then messages sent to offline users are not stored, they are lost.
If client B logins with negative priority, it does not receive offline messages. Later when the client sets a positive priority, it receives all the offline messages.
Upvotes: 1