From: Christian Weiske Date: Fri, 10 Aug 2012 20:44:12 +0000 (+0200) Subject: examples of how to configure notify-send and dreambox loggers X-Git-Tag: v1.0.0~26 X-Git-Url: https://git.cweiske.de/auerswald-callnotifier.git/commitdiff_plain/ae9a300f586a9d1701dc0f972846192c2cfe743f examples of how to configure notify-send and dreambox loggers --- diff --git a/data/callnotifier.config.php.dist b/data/callnotifier.config.php.dist index 3461feb..1e79853 100644 --- a/data/callnotifier.config.php.dist +++ b/data/callnotifier.config.php.dist @@ -55,4 +55,16 @@ $log->addLogger( array('finishedCall') ); +//Log starting calls to the dreambox satellite receiver +$log->addLogger( + new Logger_CallDreambox('192.168.1.12', 'i', array('12345', '12346')), + array('startingCall') +); + +//Show desktop notifications for calls (via notify-send) +$log->addLogger( + new Logger_CallNotifySend('i', array('40862', '40835')), + array('startingCall', 'finishedCall') +); + ?>