Displaying 1 result from an estimated 1 matches for "diycallgroup".
2004 Jul 13
2
SIP simultaneous registry possible workaround (was Re: New Asterisk bounty: SIP simultaneous registry)
...mith wrote:
>I wasn't talking about bandwidth but rather lengthy
>Dial() commands...
>
>exten => s,1,Dial(SIP/someuser&SIP/someuser&SIP ......
>
>kind of thing... seems awfully unwieldy.
That's why you would stick the members into a global
variable
[globals]
DIYCALLGROUP => SIP/111&SIP/112&SIP113 etc.
then dial using Dial(${DIYCALLGROUP},...)
Also, you can use the callgroup feature in sip.conf
[111]
...
callgroup=1
callerid="Member 1"<12345>
[112]
...
callgroup=1
callerid="Member 2"<12345>
[113]
...
callgroup=1
call...