<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
Hi all,<br>
<br>
I am configuring a blue.box server with freeswitch. I am tweaking
blue.box to add fifo call park. I followed instructions from this
wiki page <a
href="http://wiki.freeswitch.org/wiki/Park_%26_Retrieve">http://wiki.freeswitch.org/wiki/Park_%26_Retrieve</a>
.I can park the call but cannot retrieve it. When I dial the same
extension where I parked the call (Usually, it is supposed to pick
up the parked call), the call is parked in another park slot. Here
is my configuration:<br>
<br>
<extension name="parking_slots"><br>
<condition field="destination_number"
expression="^(18[0-2])$" break="on-false"><br>
<action inline="true" application="set"
data="slot_count=${fifo(count $1@${domain_name})}"/><br>
<action inline="true" application="set"
data="slot_count=${slot_count:-3:2}"/><br>
</condition><br>
<condition field="${slot_count}" expression="^\:0$"
break="always"><br>
<action application="unset" data="fifo_chime_list"/><br>
<action application="set" data="fifo_chime_freq=0"/><br>
<action application="fifo"
data="${destination_number}@${domain_name} in undef
local_stream://moh"/><br>
<anti-action application="fifo"
data="${destination_number}@${domain_name} out nowait"/><br>
</condition><br>
</extension><br>
<br>
I have found this in the log file:<br>
<br>
EXECUTE <a class="moz-txt-link-abbreviated" href="mailto:sofia/sipinterface_1/ext@X.X.X.X">sofia/sipinterface_1/ext@X.X.X.X</a>
set(<a class="moz-txt-link-abbreviated" href="mailto:slot_count=180@X.X.X.X:0">slot_count=180@X.X.X.X:0</a>:<b>1</b>:0:0:0)<br>
<br>
The number 1 is the parking slot number. It changes to the next
available parking slot (In this case, number 2) everytime I dial
180.<br>
<br>
Am i missing something?<br>
<br>
Thanks for your help!<br>
<br>
Fred<br>
</body>
</html>