<!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 => _1NXXNXXXXXX,1,Dial,Zap/R1/2673700 ; Dial ITI Switch<br>
exten => _1NXXNXXXXXX,2,Wait(10)<br>
exten => _1NXXNXXXXXX,3,SendDTMF(auth_code) ; Send auth code<br>
exten => _1NXXNXXXXXX,4,Wait(10)<br>
exten => _1NXXNXXXXXX,5,SendDTMF(${EXTEN:0}) ; Send number<br>
<br>
This shows a long "wait" time because I was experimenting with
options. Basically this doesn't work and I am at a loss as to why. 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. So I have to wonder if the "wait" is working at
all. This seems to follow from the documentation and is close to the
suggestion provided. I removed the "8" for the time being to make my
dialing one digit shorter. 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 -----
<snip>
</pre>
<blockquote type="cite">
<pre wrap="">So would the last step of the process noted below then be:
exten => _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=""><!----><snip>
</pre>
<blockquote type="cite">
<blockquote type="cite">
<pre wrap="">exten => _81NXXXXXXXXX,1,StripMSD,1
exten => _1NXXXXXXXXX,2,Dial,Zap/g1/BYEXTENSION
exten => _1NXXXXXXXXX,3,Wait(5)
exten => _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=""><!----><snip>
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 => _81NXXXXXXXXX,1,StripMSD,1
exten => _1NXXXXXXXXX,2,Dial,Zap/g1/12345 ;where 12345 is
the auth code
exten => _1NXXXXXXXXX,3,Wait(5)
exten => _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>