From ae9a300f586a9d1701dc0f972846192c2cfe743f Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Fri, 10 Aug 2012 22:44:12 +0200 Subject: [PATCH] examples of how to configure notify-send and dreambox loggers --- data/callnotifier.config.php.dist | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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') +); + ?> -- 2.30.2