Displaying 1 result from an estimated 1 matches for "notvip".
Did you mean:
notrap
2007 Jul 12
0
No subject
...ideas online. (I use this way to manage 100's
of number to name mappings)
To use:
exten => s,n,Noop(Testing for VIP - caller is ${CALLERID(number)})
exten => s,n,Set(vipTarget=${DB(vipMap/${CALLERID(number)})})
exten => s,n,GotoIf($["${vipTarget}" = ""]?notVip)
exten => s,n,Noop(We got a VIP - lets call their contact on ${vipTarget})
exten => s,n,Dial(SIP/${OUT}/{vipTarget}) ; or whatever
exten => s,n(notVip),Noop(Not a VIP - dump to answering machine)
...
Gordon