<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    On 06/11/2013 04:46 PM, Eric Wieling wrote:<br>
    <blockquote
cite="mid:616B4ECE1290D441AD56124FEBB03D08171443186C@mailserver2007.nyigc.globe"
      type="cite">
      <pre wrap="">The only way to resolve this is to redesign your dialplan so you do not have ambiguous matching,   This is not an Asterisk issue, this is an issue with the way you designed your dialplan and would apply to any IVR on any system.
</pre>
    </blockquote>
    <font face="Helvetica, Arial, sans-serif"><br>
      I understand that I need to re-design my dialplan logic.<br>
      <br>
      I gave an example of my re-design in my last post. Would that have
      been a good re-design ?? Or is it still ambiguous ?<br>
      <br>
      I will post it again :<br>
      <br>
      <br>
    </font>
    <pre wrap=""><font face="Helvetica, Arial, sans-serif">[my-context]
exten =&gt; ivr,1,NoOp()
exten =&gt; ivr,n(restartprompt),Background(<i class="moz-txt-slash"><span class="moz-txt-tag">/</span>var/lib/asterisk/sounds/vprompts<span class="moz-txt-tag">/</span></i>${KNUMMER}/${ASTPROMPT})
exten =&gt; ivr,n,NoOp(${BACKGROUNDSTATUS}) exten =&gt; ivr,n,WaitExten(15) exten =&gt; ivr,n,GoTo(restartprompt)

exten =&gt; _X,1,Set(choice=${EXTEN})
exten =&gt; _X,n,System(echo "'${klantID}','IVR','${choice}','','${CHANNEL:4}','$(date +%s)'" &gt;&gt; <i class="moz-txt-slash"><span class="moz-txt-tag">/</span>var/log/asterisk/loggingAST<span class="moz-txt-tag">/</span></i>${CHANNEL:4}.csv)
exten =&gt; _X,n,other_stuff_I_do

exten =&gt; ivradvanced,1,NoOp()
exten =&gt; ivradvanced,n(restartprompt),Background(<i class="moz-txt-slash"><span class="moz-txt-tag">/</span>var/lib/asterisk/sounds/vprompts<span class="moz-txt-tag">/</span></i>${KNUMMER}/${ASTPROMPT})
exten =&gt; ivradvanced,n,NoOp(${BACKGROUNDSTATUS})
exten =&gt; ivradvanced,n,WaitExten(15)
exten =&gt; ivradvanced,n,GoTo(restartprompt)

exten =&gt; _X.,1,Set(choice=${EXTEN})
exten =&gt; _X.,n,System(echo "'${klantID}','IVR','${keuzeID}','','${CHANNEL:4}','$(date +%s)'" &gt;&gt; <i class="moz-txt-slash"><span class="moz-txt-tag">/</span>var/log/asterisk/loggingAST<span class="moz-txt-tag">/</span></i>${CHANNEL:4}.csv)
exten =&gt; _X.,n,other_stuff_I_do

[another-context]
...
...</font></pre>
    <br>
    <br>
    Kind regards,<br>
    <br>
    Jonas.<br>
  </body>
</html>