$config['xmpp']['enabled'] = true;
$config['xmpp']['server'] = 'jabber.org';
$config['xmpp']['host'] = NULL; // Only set if different from server
$config['xmpp']['port'] = 5222;
$config['xmpp']['user'] = 'webname';
$config['xmpp']['encryption'] = true;
$config['xmpp']['resource'] = 'webname';
$config['xmpp']['password'] = 'passpord';
$config['xmpp']['public'][] = 'user@jabber.org';
$config['xmpp']['debug'] = false;
is it a right config of the im setting?
Comments
NO
$config['xmpp']['enabled'] = true;
$config['xmpp']['server'] = 'yoursite.com'; #make an SRV record for your site pointing to the A named one below
$config['xmpp']['user'] = 'user you registered on your jabber server';
$config['xmpp']['host'] = 'example.myjabberserver.org'; #must be an A name record
$config['xmpp']['resource'] = 'unique name, example "update";
$config['xmpp']['password'] = 'password of the user you registered on the xmpp server';
is anyone could tell me the next step?
how to set it up, how to configure my site's XMPP variables, etc..?
please help, i have no experience like this.