<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Well I combined information in the previous message with the changes in
the docs and came up with the following:<br>
<br>
exten =&gt; _1NXXNXXXXXX,1,Dial,Zap/R1/2673700&nbsp;&nbsp;&nbsp;&nbsp; ; Dial ITI Switch<br>
exten =&gt; _1NXXNXXXXXX,2,Wait(10)<br>
exten =&gt; _1NXXNXXXXXX,3,SendDTMF(auth_code)&nbsp;&nbsp;&nbsp; ; Send auth code<br>
exten =&gt; _1NXXNXXXXXX,4,Wait(10)<br>
exten =&gt; _1NXXNXXXXXX,5,SendDTMF(${EXTEN:0})&nbsp;&nbsp;&nbsp; ; Send number<br>
<br>
This shows a long "wait" time because I was experimenting with
options.&nbsp; Basically this doesn't work and I am at a loss as to why.&nbsp; I
can seem to figure out how to debug what is happening so I can see what
digits are being sent bu if I had to guess I don't thing it is getting
past priority one because I hear dial tone from the LD switch in approx
7 sec. and then nothing until the LD switch times out and provides a
voice error message.&nbsp; So I have to wonder if the "wait" is working at
all.&nbsp; This seems to follow from the documentation and is close to the
suggestion provided.&nbsp; I removed the "8" for the time being to make my
dialing one digit shorter.&nbsp; StripMSD can now be handled wit the EXTEN:1
option.<br>
<br>
Any thoughts would be helpful.<br>
<br>
Scott<br>
<br>
Jason Kawakami wrote:
<blockquote cite="mid004b01c4ab1b$afca6480$2901a8c0@jkk00298l"
 type="cite">
  <pre wrap="">----- Original Message ----- 
&lt;snip&gt;
  </pre>
  <blockquote type="cite">
    <pre wrap="">So would the last step of the process noted below then be:

exten =&gt; _1NXXXXXXXXX,5,SendDTMF(${EXTEN:0})

Or assuming I chose the correct variable EXTEN is it possible to append
this to priority noted below.
    </pre>
  </blockquote>
  <pre wrap=""><!---->&lt;snip&gt;
  </pre>
  <blockquote type="cite">
    <blockquote type="cite">
      <pre wrap="">exten =&gt; _81NXXXXXXXXX,1,StripMSD,1
exten =&gt; _1NXXXXXXXXX,2,Dial,Zap/g1/BYEXTENSION
exten =&gt; _1NXXXXXXXXX,3,Wait(5)
exten =&gt; _1NXXXXXXXXX,4,SendDTMF(12345)            ;where 12345 is the
      </pre>
    </blockquote>
  </blockquote>
  <pre wrap=""><!---->auth
  </pre>
  <blockquote type="cite">
    <blockquote type="cite">
      <pre wrap="">code
      </pre>
    </blockquote>
  </blockquote>
  <pre wrap=""><!---->&lt;snip&gt;

you are actually sending the TN in priority 2 to the ZAP channel (I made an
assumption here).  so you need to send the auth code first then the TN?  if
so, then it would read

exten =&gt; _81NXXXXXXXXX,1,StripMSD,1
exten =&gt; _1NXXXXXXXXX,2,Dial,Zap/g1/12345                 ;where 12345 is
the auth code
exten =&gt; _1NXXXXXXXXX,3,Wait(5)
exten =&gt; _1NXXXXXXXXX,4,SendDTMF(${EXTEN})

haven't seen it this way from a carrier before, I have always sent the
number on the trunk first and then authenticate once I get a tone prompt.

should work I think though.

Jason





_______________________________________________
Asterisk-Users mailing list
<a class="moz-txt-link-abbreviated" href="mailto:Asterisk-Users@lists.digium.com">Asterisk-Users@lists.digium.com</a>
<a class="moz-txt-link-freetext" href="http://lists.digium.com/mailman/listinfo/asterisk-users">http://lists.digium.com/mailman/listinfo/asterisk-users</a>
To UNSUBSCRIBE or update options visit:
   <a class="moz-txt-link-freetext" href="http://lists.digium.com/mailman/listinfo/asterisk-users">http://lists.digium.com/mailman/listinfo/asterisk-users</a>
  </pre>
</blockquote>
<br>
<pre class="moz-signature" cols="72">-- 
Scott Henderson
==========================================
Finite Technologies Incorporated
3763 Image Drive, Anchorage, Alaska 99504
Phone: 907.337.2860, Fax: 907.333.4482
<a class="moz-txt-link-freetext" href="http://www.finite-tech.com">http://www.finite-tech.com</a>
<a class="moz-txt-link-freetext" href="http://www.chillywall.com">http://www.chillywall.com</a>
<a class="moz-txt-link-freetext" href="http://www.virtuale.cc">http://www.virtuale.cc</a>
<a class="moz-txt-link-freetext" href="http://www.mphage.com">http://www.mphage.com</a>
==========================================
</pre>
</body>
</html>