. */ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } /** * Queue handler for pushing new notices to public XMPP subscribers. * @fixme correct this exception handling */ class PublicQueueHandler extends QueueHandler { function transport() { return 'public'; } function handle_notice($notice) { require_once(INSTALLDIR.'/lib/jabber.php'); try { return jabber_public_notice($notice); } catch (XMPPHP_Exception $e) { $this->log(LOG_ERR, "Got an XMPPHP_Exception: " . $e->getMessage()); die($e->getMessage()); } return true; } }