Topic: Parking Calls [Comments: 6]
ipfreely
Fri, 11/02/2007 - 19:54 | Parking Calls
This may seem like a dumb question, But how do you park calls. the feature.conf states 700 with park locations of 701 to704, but it does not seem to work for me.
Thanks,
Chris





Tue, 11/20/2007 - 06:50 | Parking Calls
BUMP!
I need to do this, too. Any hints?
Thu, 12/06/2007 - 09:06 | A way to find a solution
Hi guys,
To configure parking calls you need :
[general]
parkext => 700 ; What extension to dial to park
parkpos => 701-704 ; What extensions to park calls on. These needs to be
; numeric, as Asterisk starts from the start position
; and increments with one for the next parked call.
context => parkedcalls ; Which context parked calls are in
parkingtime => 90 ; Number of seconds a call can be parked for
; (default is 45 seconds)
[from-inside-redir]include => local-extensions
include => feature-extensions
include => outgoing
include => parkedcalls
exten => t,1,Hangup
exten => h,1,Hangup
exten => i,1,Playback(invalid)
exten => i,2,Hangup
[from-inside-redir-restricted]include => local-extensions
include => feature-extensions
include => outgoing-unrestricted
include => parkedcalls
exten => t,1,Hangup
exten => h,1,Hangup
exten => i,1,Playback(invalid)
exten => i,2,Hangup
[from-inside-redir-internal]include => local-extensions
include => feature-extensions
include => outgoing-emergency
include => parkedcalls
exten => t,1,Hangup
exten => h,1,Hangup
exten => i,1,Playback(invalid)
exten => i,2,Hangup
May be you can handle include in the lowest lever of from-inside, but I'haven't tested yet.
With this settings It will work like this :
Cheers, Duc.
Thu, 12/06/2007 - 16:23 | Parking Multi Tenant
Does this work with multi tenant?
Fri, 12/07/2007 - 08:42 | Try it...
Dear Dozement,
This configuration will work for one asterisk Server. I never used a mult-tenant architecture. May be you will have problem if the tenants are in the same context (parkedcall). Someone from Enterprise A can take parked calls by someone of enterprise B. May be you have need two contexts for parked call. I don't know if Thirdlane support this features.
Give it a try. I would be happy if you give me a feedback about this.
Cheers, Duc.
Mon, 12/10/2007 - 04:13 | Unfortunatly, the inital
Unfortunatly, the inital post as referring to Multitenant. Now while including => parkedcalls in extensions.conf will work, it only has 1 parking lot for the entire system, which will as noted earlier would allow a person in tenant A to pickup a call in tenant B. I think the only way to accomplish what is required is to write your own call parking script??
Cheers,
Chris A
Mon, 12/10/2007 - 13:55 | Multiple parking lot
Dear IpFreely,
You need one parking lot (parkedcall context) by tenant, I think it's the only way to split the parking lot.
Cheers, Duc.