<quote who="Steve Creel">>>>[main1] >>>; >>>; Take any number, and give it to the DISA. The DISA >>>; just then takes anything typed in within the (unchangeable) >>>; timer values, and hands it off to main2 to be post-processed. ; Iinclude the standard i,h,t values for pedantic reasons.>>>; >>>exten => _X.,1,DISA(no-password,main2) >>>exten => _X.,2,Hangup >>>; >>>exten => h,1,Hangup >>>exten => i,1,Congestion >>>exten => i,2,Hangup >>>exten => t,1,Congestion >>>exten => t,2,Hangup > > > Not to point out the obvious, but isn't the delay he's seeing caused by the > _X. and the digittimeout? Couldn't this be resolved by using a more > specific match on the DISA instead of _X. ?I think that would be right. I would have used: exten => s,1,DISA(no-password,main2) exten => s,2,Hangup -- END OF LINE -MCP
I was trying to only have Asterisk only answer with "extension" when it came from a specific Caller-id number, it works from all numbers with my example below: include => parkedcalls exten => s,1,Answer exten => s,2,DigitTimeout(10) exten => s,3,ResponseTimeout(20) exten => s,4,Background(vm-extension) Modified to: include => parkedcalls exten => s,1,Answer/6145551212 exten => s,2,DigitTimeout(10) exten => s,3,ResponseTimeout(20) exten => s,4,Background(vm-extension) I thought be adding the /6145551212 after the Answer above would do what I wanted but it doesn't. Could someone advise me of the right example? Thanks
Please do not start new threads by replying to a post; click on the asterisk-users email address and start a new one; you break threading and bury your own questions when you do what you just did.> exten => s,1,Answer/6145551212"show application answer" does not state that it will do this. I would imagine that you want to follow the "ex girlfriend" example in the handbook. Regards, Andrew
exten => s/6145551212,1,Answer that will. bkw PS read the handbook On Thu, 5 Feb 2004, Andrew Kohlsmith wrote:> Please do not start new threads by replying to a post; click on the > asterisk-users email address and start a new one; you break threading and > bury your own questions when you do what you just did. > > > exten => s,1,Answer/6145551212 > > "show application answer" does not state that it will do this. > > I would imagine that you want to follow the "ex girlfriend" example in the > handbook. > > Regards, > Andrew > _______________________________________________ > Asterisk-Users mailing list > Asterisk-Users@lists.digium.com > http://lists.digium.com/mailman/listinfo/asterisk-users > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users >