If a IM confirmation is send by GNU social the following log entry appears:
OpportunisticQueueManager: Got string '<message from="gnusocial@geekpla...' (517 bytes) for transport xmpp-out
but those messages never arrive. If I send e.g. "help" to the GNU social XMPP contact, he will reply with a message like "Unknown user; go to ... to add your address to your", which appear as
DBQueueManager (im): Got string '<message from="gnusocial@geekpla...(226 bytes) for transport xmpp-out
notice how DBQueueManager is mentioned here
My config.php:
<?php if (!defined('GNUSOCIAL')) { exit(1); } $config['site']['logfile'] = '/var/log/gnusocial/gnusocial.log'; $config['daemon']['piddir'] = '/var/run/gnusocial'; $config['site']['name'] = 'GNU Social @ geekplace'; $config['site']['server'] = 'social.geekplace.eu'; $config['site']['path'] = false; $config['site']['fancy'] = true; $config['db']['database'] = 'mysqli://xxx:xxx@localhost/gnusocial'; $config['db']['type'] = 'mysql'; foreach(array("Memcache", "Memcached") as $plugin) : if (class_exists($plugin)) { addPlugin($plugin); break; } endforeach; $config['site']['profile'] = 'community'; $config['queue']['enabled'] = true; $config['queue']['daemon'] = true; addPlugin('xmpp', array('user'=>'gnusocial','host'=>'mate.geekplace.eu','server'=>'geekplace.eu','password'=>'xxx') ); addPlugin('Gravatar', array()); addPlugin('Autocomplete'); addPlugin('PiwikAnalytics', array('piwikroot'=>'piwik.geekplace.eu/','piwikId'=>'5'));