Hello,
Our company has changed its name some time ago and there will be a need to rename our jabber domain as the management is forcing it. Is there any fairly easy way of doing this, is that doable, at all? I want users to be able to save their settings, contact lists etc. We use PostgreSQL as a database for two-node ejabberd cluster.
Any response much appreciated!
Cheers,
Adam
Hmm… Just edit ejabberd
Hmm… Just edit ejabberd configuration file and run some SQL queries on your database
UPDATE rosterusers SET jid = replace(jid, 'old.com', 'new.com');
And run ejabberd with that database…
But if your users have contacts from external servers, the subscriptions will be broken.