[asterisk-users] Register multiple phones to a single AOR with PJSIP

2014-10-30 Thread Carlos Chavez
I just finished installing Asterisk 13 on our test server and I can now use PJSIP to register phones and make and receive calls. The only problem I am having is that when I register multiple phones to a single account only one of them rings. The AOR for the account has maxcontacts at 3.

Re: [asterisk-users] Register multiple phones to a single AOR with PJSIP

2014-10-30 Thread Scott Griepentrog
​You need to change your dialplan to use the PJSIP_DIAL_CONTACTS function like this: exten = _X.,1,Dial(${PJSIP_DIAL_CONTACTS(200)},30)​ It expands to the list of contacts, separated by , so that the contacts are dialed at the same time. The documentation page you reference should be updated to

Re: [asterisk-users] Register multiple phones to a single AOR with PJSIP

2014-10-30 Thread Matthew Jordan
On Thu, Oct 30, 2014 at 2:47 PM, Scott Griepentrog sgriepent...@digium.com wrote: ​You need to change your dialplan to use the PJSIP_DIAL_CONTACTS function like this: exten = _X.,1,Dial(${PJSIP_DIAL_CONTACTS(200)},30)​ It expands to the list of contacts, separated by , so that the contacts