n/oldblog
Archived
1
0
Fork 0
This repository has been archived on 2024-02-13. You can view files and clone it, but cannot push or open issues or pull requests.
oldblog/modules/talk.php
2023-04-30 21:50:11 +02:00

27 lines
734 B
PHP

<?php
require('class.jabber.php');
sendviajabber("coucou! \n ca va");
function sendviajabber($message)
{
$JABBER = new Jabber;
$JABBER->server = 'tourmentine.com';
$JABBER->port = 5222;
$JABBER->username = 'alerts';
$JABBER->password = 'gbzm@alerts';
$JABBER->resource = 'ClassJabberPHP';
$JABBER->Connect() or die('Could not connect!');
$JABBER->SendAuth() or die('Could not authenticate!');
$JABBER->SendPresence(NULL,NULL,'online');
// $JABBER->SendMessage('xxx@jabber.de.cw.net', 'chat', NULL, array( 'body' => 'Call from '.$agi['callerid'].' on '.$agi['dnid'] ));
$JABBER->SendMessage('n@tourmentine.com', 'chat', NULL, array( 'body' => $message ));
$JABBER->Disconnect();
fclose($in);
fclose($err);
}
?>