Hi!

Mike Parker schrieb:

> The solution was to use my PABX (Asterisk), which runs on the VDR server.

Nice idea :)
I let my VDR show me the number of incoming calls:

extensions.conf:

 exten => number,1,agi(call.sh|${CALLERID})

call.sh:
-----
#!/bin/sh

NUMBER="$1"

if [ "$NUMBER" = "" ]; then
    NUMBER="Unknown Caller"
fi

vdrhost=your_vdr_hostname
echo -e "mesg Anruf von: ${NUMMER}\nquit\n" | /bin/nc $vdrhost 2001 \
        2>/dev/null >/dev/null &

----
(SVDR must be allowed from the PBX host)

Ciao

Martin

_______________________________________________
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr

Reply via email to