On Tue, May 02, 2006 at 12:09:35PM -0500, jimkski wrote:
> exten => *001,1,playback(pls-wait-connect-call)
>
> exten => *001,1,Dial(SIP/94235576 g1,60,r)
; I'm sure the problem is in here
> but don't really have a clue what this should look
like with my setup
>
> exten => *001,2,Hangup
One problem is that you have two "step 1"s.
If you use the "n" priority, that should help
you avoid this.
The other problem is that you're not using SIP to make the
call - if
you're using a TE110P, then you're using a Zap Channel.
The 'r' option isn't needed. I had a long discussion
with some of
the Asterisk developers who set me straight on that.
What you have should look like:
exten => *001,1,playback(pls-wait-connect-call)
exten => *001,2,Dial(Zap/g1/94235576,60)
exten => *001,3,Hangup
-or-
exten => *001,1,playback(pls-wait-connect-call)
exten => *001,n,Dial(Zap/g1/94235576,60)
exten => *001,n,Hangup
Hope that helps!
Gil.
_______________________________________________
Austin-Asterisk-Users-Group mailing list
Austin-Asterisk-Users-Group bybent.com
http://buzzard.onr.com/mailman/listinfo/austi
n-asterisk-users-group
AAUG Web Site: http://aaug.bybent.com/
|