1

I am new to Ejabberd. I want to know whether my message has been delivered to the recipient or not. The client i am using is pidgin.I have gone through the protocol XEP-0184 I don't know how to implement this(I don't know Erlang). Is there any modules available that implemented this protocol which i can install and use? If its not implemented how can I implement this?

Salini L
  • 829
  • 5
  • 15
  • 43
  • 1
    Message delivery state is completely client side supported feature. You need to enable it from client side. So, iOS xmppframework & Android smack are widely used to build chat application for apps. – Hare Kumar Oct 26 '16 at 15:01
  • you should use Smack https://www.igniterealtime.org/projects/smack/ – Sunil Singh Nov 11 '16 at 17:40

1 Answers1

1

XEP-0184 is completely client-side. No special server functionality is required: only the clients need to support it.

Unfortunately, it seems like Pidgin doesn't support it; see ticket #6940 in their issue tracker. Someone who knows Python would have to work on that.

legoscia
  • 39,593
  • 22
  • 116
  • 167