[asterisk-users] SIP Extension Config Issue

2008-09-08 Thread Joseph L. Casale
I have a setup with a SIP DID inbound, and several SIP phones inside. Obviously if the SIP phones are off/unplugged/otherwise not available, incoming calls ring busy. My extensions.conf looks like this for inbound calls: exten = _1xx,1,Dial(SIP/200SIP/201SIP/202SIP/203,30,tr) So what

Re: [asterisk-users] SIP Extension Config Issue

2008-09-08 Thread Eric ManxPower Wieling
You're joking, right? exten = _1xx,1,Dial(SIP/200SIP/201SIP/202SIP/203,30,tr) exten = _1xx,n,Voicemail([EMAIL PROTECTED]) Use whatever voice mailbox and voicemail context you want. Joseph L. Casale wrote: I have a setup with a SIP DID inbound, and several SIP phones inside.

Re: [asterisk-users] SIP Extension Config Issue

2008-09-08 Thread Joseph L. Casale
exten = _1xx,1,Dial(SIP/200SIP/201SIP/202SIP/203,30,tr) exten = _1xx,n,Voicemail([EMAIL PROTECTED]) Use whatever voice mailbox and voicemail context you want. Well, its not advancing when *no* phones are online, just ringing busy. It does however step through just fine when they

Re: [asterisk-users] SIP Extension Config Issue

2008-09-08 Thread Doug Lytle
Joseph L. Casale wrote: exten = _1xx,1,Dial(SIP/200SIP/201SIP/202SIP/203,30,tr) exten = _1xx,n,Voicemail([EMAIL PROTECTED]) exten = _1xx,1,Dial(SIP/200SIP/201SIP/202SIP/203,30,tr) exten = _1xx,n,NoOP(Dial Status: ${DIALSTATUS}) exten =

Re: [asterisk-users] SIP Extension Config Issue

2008-09-08 Thread Joseph L. Casale
exten = _1xx,1,Dial(SIP/200SIP/201SIP/202SIP/203,30,tr) exten = _1xx,n,NoOP(Dial Status: ${DIALSTATUS}) exten = _1xx,n,NoOP(Hangup Cause: ${HANGUPCAUSE}) exten = _1xx,n,Gosub(s-${DIALSTATUS},s,1) [s-BUSY] exten = s,1,Voicemail([EMAIL PROTECTED]|b) Doug,