bbb-sip.conf isn't used anymore in v0.71a...look into
bbb_extensions.conf on how the call is handled to put
the user into the conference.
Richaerd
> --
> You received this message because you are subscribed to the Google Groups
> "BigBlueButton-dev" group.
> To post to this group, send email to bigblueb...@googlegroups.com.
> To unsubscribe from this group, send email to
> bigbluebutton-...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/bigbluebutton-dev?hl=en.
>
--
---
BigBlueButton
http://www.bigbluebutton.org
http://code.google.com/p/bigbluebutton
On Mon, Sep 5, 2011 at 2:12 PM, Damian <damian....@gmail.com> wrote:
> Hi Floh,
>
> I'm in a similar situation, using BBB with Freeswitch. As far as I
> can tell, it assigns each conference a random 5 digit extension number
> starting with a "7". I can watch the output of fs_cli to see what
> this extension is, and can successfully transfer calls from our VoIP
> system to these conference numbers, but that doesn't help my users
> much.
You can change /opt/freeswitch/conf/dialplan/public.xml to whatever
pattern you want for conference nums.
Here is says any 5-digit number.
<extension name="bbb_conferences">
<condition field="destination_number" expression="^(\d{5})$">
<action application="answer"/>
<action application="conference" data="$1@wideband"/>
<!-- <action application="conference" data="$1@wideband"/> -->
</condition>
</extension>
>
> This area of BBB seems to be somewhat lacking in documentation. I see
> there is a voiceBridge parameter for the create API, which sounds like
> it lets you specify the extension number to use. I don't see any way
> to get the current number for a conference though. Ideally, there
You can try calling the getMeetingInfo API to get the conference bridge.
richard
You can use the welcomeMsg (passed as a parameter to the 'create' API)
to output the current conference number to the user in the chat
welcome message. See
http://code.google.com/p/bigbluebutton/wiki/API#Create_Meeting_(create)
In short, put a "%%CONFNUM%%" in your welcome message and
BigBlueButton will replace it with the voice bridge number for the
current session.
Regards,... Fred
P.S. We'll in the process of updating the documentation for the
upcoming 0.8-beta and will be adding more information around the use
of voiceBridge.
--
http://code.google.com/p/bigbluebutton/wiki/FAQ#BigBlueButton_Committer
On Mon, Sep 5, 2011 at 2:12 PM, Damian <damian....@gmail.com> wrote:
Hi Richard & Fred,
thank you very much. I'll try it out tomorrow. VoiceBridge is available here.
cu Floh
> But linphone just hangup after I pressed "connect". On Server I looked into
> /var/log/asterisk/messages:
>
> [Sep 8 19:02:49] NOTICE[3886] chan_sip.c: Call from '' to extension '20000'
> rejected because extension not found.
>
You Asterisk dialplan isn't setup properly. Make sure that the call is
forwarded to the right context and
there is an extension that matches 20000
Richard
> So... what did I wrong here?
>
> cu Floh
>
> On Mon, Sep 5, 2011 at 11:02 PM, f.erfurth <f.er...@googlemail.com> wrote:
>>
>> Hi Richard & Fred,
>> thank you very much. I'll try it out tomorrow. VoiceBridge is available
>> here.
>>
>> cu Floh
>>
>> Am 05.09.2011 21:04 schrieb "Fred Dixon" <ffd...@gmail.com>:
>
> --
> You received this message because you are subscribed to the Google Groups
> "BigBlueButton-dev" group.
> To post to this group, send email to bigblueb...@googlegroups.com.
> To unsubscribe from this group, send email to
> bigbluebutton-...@googlegroups.com.
You Asterisk dialplan isn't setup properly. Make sure that the call is
forwarded to the right context and
there is an extension that matches 20000
What context are you putting when calling 2000?
I assume you register your linphone with Asterisk. So the account you
tie your linphone will have a context entry.
That context should be able to access [bigbluebutton] or [bbb-voip] context.
See http://www.voip-info.org/wiki/view/Asterisk+config+sip.conf
Richard
What context are you putting when calling 2000?
I assume you register your linphone with Asterisk. So the account you
tie your linphone will have a context entry.
See http://www.voip-info.org/wiki/view/Asterisk+config+sip.conf