-
-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to configure the plugin? #55
Comments
I use this configuration: $rcmail_config['converse_xmpp_bosh_prebind_url']= function($args) {
return 'https://xmpp.domain.tld:5280/http-bind';
};
$rcmail_config['converse_xmpp_bosh_url']= function($args) {
return 'https://xmpp.domain.tld:5280/http-bind';
};
$rcmail_config['converse_xmpp_hostname']= function($args) {
return 'domain.tld';
};
$rcmail_config['converse_xmpp_username']= function($args) {
return $args['user'];
};
$rcmail_config['converse_xmpp_password']= function($args) {
return $args['pass'];
};
$rcmail_config['converse_jsfile'] = 'converse.nojquery.min.js';
$rcmail_config['converse_config'] = array(
'message_archiving' => 'roster',
'message_carbons' => true,
'csi_waiting_time' => 60
); Please note that I had to hardcode For the same reason, and because I also don't use a proxy, both instances of Generally your browser's JavaScript console can be helpful in debugging configuration issues, if the PHP server logs do not already contain clues. |
Thanks for answering. Still no luck. My Prosody server is on the same host so I guess
should be fine. How would I have to configure Do I have to copy the necesarry files to the root folder of The JavaScript console shows nothing, please have a look at https://mail.tristank.de/. |
The The |
Can someone explain how to configure the plugin properly? As soon as I enable the plugin via
main.inc.php
and log in, Rouncube only display a blank page. I'm using the up-to-date fork from @devurandom at https://github.com/devurandom/roundcube-converse.js-xmpp-plugin/.The text was updated successfully, but these errors were encountered: