PurpleShirt
Systems Engineer
We have a Vector which we use to route calls to a group of people. We either play some announcements if the the shop is closed or queue-to a hunt-group if it's open. In each case where the call isn't answered it ends with an AUDIX System where the customers can leave some message.
The users in the hunt-group have each a coverage path which tests if the call is not answered after 4 rings, in which case it redirects the call to a vector which plays an announcement and ends the call.
Lately we have a problem that the call is never redirected to the vdn which is configured in the coverage path, it rings indefinitely until the agent picks up the phone. No changes have been made since it last worked.
When we call the user directly it works as intended.
We have tried to log out the users and log them in again but it still doesn't work.
Here's the vector:
01 wait-time 1 secshearing ringback
02 # Is the shop open ?
03 goto step 6 if holiday in table 1
04 goto step 10if service-hours not-intable 1
05 goto step 14if service-hours in table 1
06 # Shop is closed because of Holiday
07 announcement400
08 messaging split 51 for extension 16000
09 disconnect after announcement none
10 # Shop is closed because of service-hours
11 announcement401
12 messaging split 51 for extension 16000
13 disconnect after announcement none
14 # Shop is open
15 queue-to split50 pri m
16 wait-time 10 secshearing ringback
What could it be that causes these problems?
The users in the hunt-group have each a coverage path which tests if the call is not answered after 4 rings, in which case it redirects the call to a vector which plays an announcement and ends the call.
Lately we have a problem that the call is never redirected to the vdn which is configured in the coverage path, it rings indefinitely until the agent picks up the phone. No changes have been made since it last worked.
When we call the user directly it works as intended.
We have tried to log out the users and log them in again but it still doesn't work.
Here's the vector:
01 wait-time 1 secshearing ringback
02 # Is the shop open ?
03 goto step 6 if holiday in table 1
04 goto step 10if service-hours not-intable 1
05 goto step 14if service-hours in table 1
06 # Shop is closed because of Holiday
07 announcement400
08 messaging split 51 for extension 16000
09 disconnect after announcement none
10 # Shop is closed because of service-hours
11 announcement401
12 messaging split 51 for extension 16000
13 disconnect after announcement none
14 # Shop is open
15 queue-to split50 pri m
16 wait-time 10 secshearing ringback
What could it be that causes these problems?