+++ /dev/null
-#!/usr/bin/php -Cq\r
-<?php\r
-\r
-error_reporting(E_ALL);\r
-include_once('msn.class.php');\r
-\r
-// force to use MSNP9, without debug information\r
-// $msn = new MSN('MSNP9');\r
-\r
-// force to use MSNP9, with debug information\r
-// $msn = new MSN('MSNP9', true);\r
-\r
-// force to use MSNP15, without debug information\r
-// $msn = new MSN('MSNP15');\r
-\r
-// force to use MSNP15, with debug information\r
-// $msn = new MSN('MSNP15', true);\r
-\r
-// auto detect MSN protocol, without debug information\r
-// $msn = new MSN;\r
-\r
-// auto detect MSN protocol, with debug information\r
-$msn = new MSN(array('user' => 'statusnetbot@inflatablegoldfish.com', 'password' => 'statusnetplugin', 'alias' => 'statusnetbot', 'psm' => '', 'debug' => true));\r
-\r
-if ($msn->Run()) {\r
- echo "Error for connect to MSN network\n";\r
- echo "$msn->error\n";\r
- exit;\r
-}\r
-\r
-//$msn->sendMessage('Now: '.strftime('%D %T')."\nTesting\nSecond Line\n\n\n\nand Empty Line",\r
- // array(\r
- // 'darkip@inflatablegoldfish.com'\r
- // )\r
- // );\r
-echo "Done!\n";\r
-exit;\r
-\r
-?>\r
-\r