Displaying 8 results from an estimated 8 matches for "parkingexten".
2009 Aug 27
3
Sticky Park
...llstimeout context at s,1.
Ok now onto my Dial Plan.
[from_internal]
include => parkedcalls ; Gotta have this or things don't work.
;I do an attended transfer to 700.
exten => 700,1,Answer()
;Just so I can see if anything has been set
exten => 700,n,NoOp(I want to be parked on: ${PARKINGEXTEN})
;Also so I can see what the state of that parking slot is.
exten => 700,n,NoOp(Device State is:
${DEVICE_STATE(park:${PARKINGEXTEN}@parkedcalls)})
;Check to see if PARKINGEXTEN is set. If not then this must be a new
call being park, let's let asterisk find a spot for it.
exten => 700...
2014 Jul 02
1
Dynamic Call parking
...n the default parking lot :
[Jul 2 11:32:14] -- Executing [3333 at from-770000:5]
Set("SIP/testacc77000-00000002", "PARKINGDYNAMIC=parkinglot_test") in
new stack
[Jul 2 11:32:14] -- Executing [3333 at from-770000:6]
Set("SIP/testacc77000-00000002", "PARKINGEXTEN=3300") in new stack
[Jul 2 11:32:14] -- Executing [3333 at from-770000:7]
Set("SIP/testacc77000-00000002", "PARKINGDYNEXTEN=110") in new stack
[Jul 2 11:32:14] -- Executing [3333 at from-770000:8]
Set("SIP/testacc77000-00000002", "PARKINGDYNPOS=11...
2012 Feb 20
3
Park and PARKINGDYNAMIC
...rked Call)
exten => s,n,GoTo(${CUT(${l_ndeContext}-ndeArgs,~,1)},1)
exten => _XXX,1,Set(PARKINGDYNAMIC=parkinglot_small)
exten => _XXX,n,Set(PARKINGDYNEXTEN=110)
exten => _XXX,n,Set(PARKINGDYNPOS=111-120)
exten => _XXX,n,Set(PARKINGDYNCONTEXT=${account}-Lot)
;exten => _XXX,n,Set(PARKINGEXTEN=99)
exten => _XXX,n,Park()
[MSIP-DynParkPickup]
exten => _NXX,1,ParkedCall(${EXTEN},${account}-Lot)
exten => _NXX,hint,park:$EXTEN@${account}-Lot
Thanks
Bryant
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk...
2009 Feb 25
1
Stuck Parked Calls?
...an't seem to soft hangup the stuck channel either. Only killing Asterisk forcefully will solve the issue. We're running Asterisk 1.4.18.
Thanks for any help!
[parallelparking]
exten => _7[89]X,1,Noop(Attempting to parallel park...)
exten => _7[89]X,n,Answer
exten => _7[89]X,n,Set(PARKINGEXTEN=${EXTEN})
exten => _7[89]X,n,GotoIf($["${BLINDTRANSFER}" != ""]?dopark:dounpark)
exten => _7[89]X,n(dopark),Noop(Going to try to park this call)
exten => _7[89]X,n,Set(RECALLEXTEN=${BLINDTRANSFER:4:4})
exten => _7[89]X,n,ParkAndAnnounce(PARKED|180|Local/parkedannoun...
2009 Jun 27
1
Multiple parking lots use default park positions
...ing the correct
context from extensions.conf. If I comment out the include =>
a10-parking statement, Terry cannot access extension 700 to park the
call. What have I missed?
I did see this issue -
https://issues.asterisk.org/print_bug_page.php?bug_id=14996 - with this
test:
exten => 5,1,Set(PARKINGEXTEN=803)
exten => 5,n,Set(PARKINGLOT=edvinapark)
exten => 5,n,Set(CHANNEL(parkinglot)=edvinapark)
exten => 5,n,Verbose(2,Parking lot is current set to ${CHANNEL(parkinglot)})
exten => 5,n,Park()
which works on my system (once we change the name of the parkinglot to
the parkinglot name rath...
2006 Feb 25
2
metermaid patch
I'd like to be able to use my Snom 360 LEDs to view the status of
parking slots, so I'm trying to install the "metermaid" patch
(http://bugs.digium.com/view.php?id=5779). Can someone help an svn
newbie figure out how to install this patch? I've done the following:
svn checkout http://svn.digium.com/svn/asterisk/team/oej/metermaids
cd metermaids
make clean
make
but I get
2009 Mar 03
0
Blind transfer from asterisk dialplan (and problems re-parking a call)
...regular Goto() is that
I'm trying to do one-touch parking.
I can park a call using one-touch parking and then pick it up again,
however if I try to re-park the call, it gets lost.
I think that is because asterisk thinks I'm still on the park extension.
As an example:
exten => _9X,1,Set(PARKINGEXTEN=${EXTEN})
exten => _9X,n,Set(RETURNEXT=${CUT(BLINDTRANSFER||1):4})
exten => _9X,n,GotoIf($["x${RETURNEXT}" = "x"]?usechannel:find)
exten => _9X,n(usechannel),Set(RETURNEXT=${CUT(CHANNEL||1):4})
exten => _9X,n(park),ParkAndAnnounce(pbx-transfer:PARKED|30|Local/parkann...
2013 Oct 14
1
parking - why doesn't this work?
...ing, and I know this is not the common way to do this, but would like to know why this is failing.
Here is my config:
[from-office]
exten => _70X,1,SET(devstate=${DEVICE_STATE(park:${EXTEN}@parkedcalls)})
same => n,GotoIf($["${devstate}"="INUSE"]?unpark)
same => n,Set(PARKINGEXTEN=${EXTEN})
same => n,Park() ;??
same => n,hangup()
same => n(unpark),ParkedCall(${EXTEN})
same => n,hangup()
?
[parked_stations]
exten => 701,hint,park:701 at parkedcalls
exten => 702,hint,park:702 at parkedcalls
?
?
;--------------------------------------------------------------...