ser forwards a sip message with extension 99999996 to asterisk which plays my 'userisoffline' message and hangs up and should stop here but instead asterisk continues to process the match everything extension ._ and dials out which is not what I want... if I change the starting priority of the Dial app to a higher level than 3 asterisk stops after the hangup but then doesn't accept any other extension that should be dialed. how can this be done? part of extensions.conf: ------------------------ ... exten => 99999996,1,Wait(1) exten => 99999996,2,Playback(userisoffline) exten => 99999996,3,Hangup() ... other extensions with more than 3 priority levels exten => _.,1,Dial,ZAP/g1/${EXTEN} exten => _.,2,Hangup() ... and the output in asterisk: --------------------------- Connected to Asterisk CVS-05/26/04-02:55:14 currently running on sip (pid = 7472) -- Remote UNIX connection -- Executing Wait("SIP/-083601e0", "1") in new stack -- Executing Playback("SIP/-083601e0", "userisoffline") in new stack -- Playing 'userisoffline' (language 'en') -- Executing Hangup("SIP/-083601e0", "") in new stack == Spawn extension (from-ser, 99999996, 3) exited non-zero on 'SIP/-083601e0' -- Executing Dial("SIP/-083601e0", "ZAP/g1/h") in new stack -- Called g1/h -- Channel 1, span 1 got hangup Jun 11 23:39:43 WARNING[491541]: app_dial.c:349 wait_for_answer: Unable to forward voice Jun 11 23:39:43 WARNING[491541]: app_dial.c:349 wait_for_answer: Unable to forward voice -- Hungup 'Zap/1-1' == No one is available to answer at this time -- Executing Hangup("SIP/-083601e0", "") in new stack == Spawn extension (from-ser, h, 2) exited non-zero on 'SIP/-083601e0' -- Best regards, Christian mailto:cgatti@vo.lu
What's that ? Dial("SIP/-083601e0", "ZAP/g1/h") ? why 'h' ? don't use exten => _.,1,blah , but try with exten =>_X.,1,blah Matteo Il ven, 2004-06-11 alle 23:59, Christian Gatti ha scritto:> ser forwards a sip message with extension 99999996 to asterisk which > plays my 'userisoffline' message and hangs up and should stop here but > instead asterisk continues to process the match everything extension ._ > and dials out which is not what I want... > > if I change the starting priority of the Dial app to a higher level > than 3 asterisk stops after the hangup but then doesn't accept any other > extension that should be dialed. > > how can this be done? > > part of extensions.conf: > ------------------------ > ... > exten => 99999996,1,Wait(1) > exten => 99999996,2,Playback(userisoffline) > exten => 99999996,3,Hangup() > > ... other extensions with more than 3 priority levels > > exten => _.,1,Dial,ZAP/g1/${EXTEN} > exten => _.,2,Hangup() > ... > > and the output in asterisk: > --------------------------- > > Connected to Asterisk CVS-05/26/04-02:55:14 currently running on sip (pid = 7472) > -- Remote UNIX connection > -- Executing Wait("SIP/-083601e0", "1") in new stack > -- Executing Playback("SIP/-083601e0", "userisoffline") in new stack > -- Playing 'userisoffline' (language 'en') > -- Executing Hangup("SIP/-083601e0", "") in new stack > == Spawn extension (from-ser, 99999996, 3) exited non-zero on 'SIP/-083601e0' > -- Executing Dial("SIP/-083601e0", "ZAP/g1/h") in new stack > -- Called g1/h > -- Channel 1, span 1 got hangup > Jun 11 23:39:43 WARNING[491541]: app_dial.c:349 wait_for_answer: Unable to forward voice > Jun 11 23:39:43 WARNING[491541]: app_dial.c:349 wait_for_answer: Unable to forward voice > -- Hungup 'Zap/1-1' > == No one is available to answer at this time > -- Executing Hangup("SIP/-083601e0", "") in new stack > == Spawn extension (from-ser, h, 2) exited non-zero on 'SIP/-083601e0'-- Brancaleoni Matteo <mbrancaleoni@espia.it> Espia Srl
Christian Gatti [cgatti@vo.lu] wrote:> > part of extensions.conf: > ------------------------ > ... > exten => 99999996,1,Wait(1) > exten => 99999996,2,Playback(userisoffline) > exten => 99999996,3,Hangup() > > ... other extensions with more than 3 priority levels > > exten => _.,1,Dial,ZAP/g1/${EXTEN} > exten => _.,2,Hangup() > ... > > and the output in asterisk: > --------------------------- > > Connected to Asterisk CVS-05/26/04-02:55:14 currently running on sip (pid = 7472) > -- Remote UNIX connection > -- Executing Wait("SIP/-083601e0", "1") in new stack > -- Executing Playback("SIP/-083601e0", "userisoffline") in new stack > -- Playing 'userisoffline' (language 'en') > -- Executing Hangup("SIP/-083601e0", "") in new stack > == Spawn extension (from-ser, 99999996, 3) exited non-zero on 'SIP/-083601e0' > -- Executing Dial("SIP/-083601e0", "ZAP/g1/h") in new stack > -- Called g1/h > -- Channel 1, span 1 got hangup > Jun 11 23:39:43 WARNING[491541]: app_dial.c:349 wait_for_answer: Unable to forward voice > Jun 11 23:39:43 WARNING[491541]: app_dial.c:349 wait_for_answer: Unable to forward voice > -- Hungup 'Zap/1-1' > == No one is available to answer at this time > -- Executing Hangup("SIP/-083601e0", "") in new stack > == Spawn extension (from-ser, h, 2) exited non-zero on 'SIP/-083601e0' >You dialled 99999996 which did as it was told - it played back "userisoffline" and hungup. The hangup caused the "h" extension to be called. You have a "_." extension which catches everything (including "h") so that was called. The "h" extension did as it was told and tried to dial "ZAP/g1/h". My suggestion would be to be more selective in your catchall. In your case, perhaps "_X." would be more appropriate. My view is that "h" and "o" etc. should not be extensions (as defined by using "exten"); Asterisk should allow them to be defined separately, while remaining in context, perhaps as: catch => hangup,1,Hangup catch => key_star,1,VoiceMailMain2 catch => key_star,2,Hangup instead of: exten => h,1,Hangup catch => a,1,VoiceMailMain2 catch => a,2,Hangup This obviously doesn't help you with your problem, but the above "_X." suggestion might. -- _/ _/ _/_/_/_/ _/ _/ _/_/_/ _/ _/ _/_/_/ _/_/ _/ _/ _/ _/_/ _/ K e v i n W a l s h _/ _/ _/ _/ _/ _/ _/ _/_/ kevin@cursor.biz _/ _/ _/_/_/_/ _/ _/_/_/ _/ _/