Alex Eftimiades
Alex Eftimiades

Reputation: 2617

XMPP python: Send a private message to one of several users logged on with the same jid

In my situation, I have might have userA and userB logged on to google talk with using [email protected], while userC and userD are logged on to google talk using [email protected].

How might userA send a message that only userC will see, and userC verify that a given message is from userA?

I am still new to xmpp, and I am having trouble gauging whether this requires muc or not. Any suggestions would be appreciated.

I have a good deal of code written in python so far that interprets the messages, so if there is a simple way to do this with xmpppy or the like, please let me know.

Upvotes: 0

Views: 500

Answers (1)

Christopher Orr
Christopher Orr

Reputation: 111555

See this answer about using full JIDs with resources, as opposed to "bare" JIDs like "[email protected]".

Upvotes: 1

Related Questions