Inbound calls get stuck in vicidial_auto_calls table
Posted: Wed Jul 11, 2007 9:42 am
When several inbound calls come in the earliest ones get stuck in the vicidial_auto_calls table.
I think it's because they all use the same caller id(we had to do this because our provider doesn't send us caller id).
Here is the code in my dialplan that sends the inbound call to VICIDIAL:
Is there another AGI script that can be used that does not do a CID lookup that we could use for inbound?
Cald
I think it's because they all use the same caller id(we had to do this because our provider doesn't send us caller id).
Here is the code in my dialplan that sends the inbound call to VICIDIAL:
- Code: Select all
;inbound VICIDIAL call with CID delivery through T1 PRI
exten => #NUMBER#,1,Set(CALLERID(num)=#OTHER_NUMBER#)
exten => #NUMBER#,n,Ringing ; call ringing
exten => #NUMBER#,n,Wait(1) ; Wait 1 second for CID delivery from PRI
exten => #NUMBER#,n,Answer ; Answer the line
exten => #NUMBER#,n,AGI(agi-VDADcloser_inboundCIDlookup.agi,SALESLINE-----9852488-----SCOTIA_C--------------999-----1)
exten => #NUMBER#,n,Hangup
Is there another AGI script that can be used that does not do a CID lookup that we could use for inbound?
Cald