Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

direct calls to cdn drop after 4 rings

Status
Not open for further replies.

phonetech2012

Vendor
Joined
May 18, 2012
Messages
287
Location
US
When we call some of our cdn's after hours, the calls are disconnecting after 4 rings. I can see the calls hitting my IVR voice ports, but then it drops. Below is one of the scripts giving us a problem. The music route 14 is unable to be acquired for some reason also, not sure if it needs to be. Any ideas? The 13930 Night treatment is a working mailbox. Thanks.

/* BN - ENGLISH */
/* 11-13-2014 */
/*------------------------------------------------*/

IF (DATE = Corporate_holidays) THEN
EXECUTE Night_Treatment
END IF

IF (DATE <> Corporate_holidays) AND (TIME OF DAY = Corp_bus_hrs) THEN
EXECUTE Open_Business
ELSE
EXECUTE Night_Treatment
END IF

SECTION Open_Business

/*-------------------------------------------------*/
IF (NOT OUT OF SERVICE BN_ENGLISH) THEN
QUEUE TO SKILLSET BN_ENGLISH
WAIT 2
ELSE
EXECUTE Night_Treatment
END IF

GIVE IVR 3602 with Treatment 1092
GIVE MUSIC 14
WAIT 30
EXECUTE Ran_Loop

SECTION Ran_Loop
IF (NOT OUT OF SERVICE BN_ENGLISH) THEN
QUEUE TO SKILLSET BN_ENGLISH
Wait 2
GIVE IVR 3602 with Treatment 1092
Wait 2
GIVE MUSIC 14
WAIT 30
EXECUTE RAN_Loop
ELSE
EXECUTE Night_Treatment
END IF

SECTION Night_Treatment
ROUTE CALL 13930 /*goes to night menu*/
DISCONNECT
 
I had a problem with calls over SIP not hitting the mailbox as the CLI is carried over from other system way I got around it is

SECTION Night_Treatment
GIVE IVR 3602 with Treatment xxxx

xxxx = An SDN linked to a callpilot application that express messaged the mailbox

May work for you.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top