Re: [asterisk-users] Rejecting transfers to in-use parking spaces

2012-02-24 Thread Phil Frost
On Feb 23, 2012, at 18:44 , Bryant Zimmerman wrote: I was working on this today. I have it figured out but I don't have simple dialplan code I can share as we are doing a lot of external db and script calls to make ours work with our realtime stuff. We also are using the Dynamic Parking

[asterisk-users] Rejecting transfers to in-use parking spaces

2012-02-23 Thread Phil Frost
I'm trying to emulate the functionality of our existing phone system, which is somewhat different than what Asterisk provides with a trivial parking configuration. I'd like each user to have three park buttons, park 1, park 2, park 3. The snom 870s I'm using have a Park+Orbit button, which best

Re: [asterisk-users] Rejecting transfers to in-use parking spaces

2012-02-23 Thread Richard Mudgett
I'm trying to emulate the functionality of our existing phone system, which is somewhat different than what Asterisk provides with a trivial parking configuration. I'd like each user to have three park buttons, park 1, park 2, park 3. The snom 870s I'm using have a Park+Orbit button, which

Re: [asterisk-users] Rejecting transfers to in-use parking spaces

2012-02-23 Thread Phil Frost
On Feb 23, 2012, at 16:32 , Richard Mudgett wrote: exten = _*70[123],1,NoOp(parking in ${EXTEN:1}) same = n,Set(PARKINGEXTEN=${EXTEN:1}) same = n,GotoIf(${DEVICE_STATE(park:${PARKINGEXTEN}@parkedcalls)}=INUSE?busy) same = n,Park() same = n(busy),Busy() What I'm hoping to

Re: [asterisk-users] Rejecting transfers to in-use parking spaces

2012-02-23 Thread Richard Mudgett
exten = _*70[123],1,NoOp(parking in ${EXTEN:1}) same = n,Set(PARKINGEXTEN=${EXTEN:1}) same = n,GotoIf(${DEVICE_STATE(park:${PARKINGEXTEN}@parkedcalls)}=INUSE?busy) same = n,Park() same = n(busy),Busy() What I'm hoping to accomplish is have Asterisk respond to the

Re: [asterisk-users] Rejecting transfers to in-use parking spaces

2012-02-23 Thread Bryant Zimmerman
From: Phil Frost p...@macprofessionals.com Sent: Thursday, February 23, 2012 4:39 PM To: Asterisk Users Mailing List - Non-Commercial Discussion asterisk-users@lists.digium.com Subject: Re: [asterisk-users] Rejecting transfers to in-use parking spaces