Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

running my own jabber/xmpp server [closed]

Tags:

chat

xmpp

  1. Can I make my own jabber server.So that if I run my website xyz then people should be be able to get their jabber id from my website by registering on my website.
  2. Is there any open source implementation of jabber server that I can use?
like image 218
akshay Avatar asked Mar 25 '10 05:03

akshay


1 Answers

I use Openfire to run my Jabber server and am quite happy with it. Probably higher-overhead than some of the other options (jabberd, ejabberd, etc.), but it's easy to install and has a great web-based admin UI.

As far as adding users via a web application - I don't know how you would go about doing that with Openfire, but it should be possible. It can plug in to many databases, and you might be able to give your web application an admin account that it can use to create users.

Alternatively, the Jabber/XMPP protocol supports creating a new account when you first connect to a server, if that's good enough for you. OpenFire supports that feature (as do most Jabber servers, I believe).

Update: The User Service Plugin for Openfire exposes an HTTP API for performing user administration actions. That's probably exactly what you need.

like image 75
Michael Ekstrand Avatar answered Oct 24 '22 22:10

Michael Ekstrand