VoIP Mailing List Archives
Mailing list archives for the VoIP community |
|
View previous topic :: View next topic |
Author |
Message |
jcromes at gmail.com Guest
|
Posted: Tue May 26, 2009 9:42 am Post subject: [Freeswitch-users] Conference users hear MOH until leader en |
|
|
First off, I apologize if this has been sent multiple times, the mailing
list won't cooperate with me... Hopefully that is resolved now.
I'm attempting to replicate the behavior of an Asterisk conferencing
system and I need a feature that, I'm surprised to say, doesn't seem to
be supported (easily) in FreeSwitch.
I've setup my dialplan so that when a specific extension is hit, it
calls out to some javascript which acts like an IVR to handle the
prompts and conferencing setup. (Similar to this:
http://wiki.freeswitch.org/wiki/Examples_confcall_js but with my own
improvements.) Anyway, the conferences are stored permanently in a
database table, but I need them disabled until the conference owner
dials in and enables his conference. If other users have entered the
conference prior to the owner, they should hear music-on-hold until the
leader enters. (The purpose of this is to prevent abuse of conferences
that are, basically, always available.)
This is easy in Asterisk because you can pop someone into MeetMe with
different flags. So, in my IVR, I prompt for the "conference number"
(known to all) and then the "password" (known only to the owner/leader).
If the proper password is entered, that user is sent to conference XYZ
with the leader flag set. If no password is entered, the user goes to
conference XYZ, without the leader flag. If anyone enters before the
leader, they're told by MeetMe that "the conference will begin when the
leader arrives" and MeetMe provides MOH until that time.
Help! This is an absolute deal-breaker for my install... How can I do
this in FreeSwitch?
Thanks...
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
jcromes at gmail.com Guest
|
Posted: Tue May 26, 2009 9:49 am Post subject: [Freeswitch-users] Conference users hear MOH until leader en |
|
|
I'm attempting to replicate the behavior of an Asterisk system with
FreeSwitch and I need a feature that, I'm surprised to say, doesn't seem to
be supported (easily).
Ok, so I've setup my dialplan so that when a specific extension is hit, it
calls out to some javascript which acts like an IVR to handle the conference
setup. (Similar to this:
http://wiki.freeswitch.org/wiki/Examples_confcall_js but with my own
improvements.) Anyway, the conferences are stored permanently in a
database, but I want them protected by their "owner" so they can only be
used when that conference owner dials. If other users have entered the
conference prior to the owner, they should hear music-on-hold until the
leader enters.
This is easy in Asterisk because you can pop someone into MeetMe with
different flags. So, in my IVR, I prompt for the "conference number" (known
to all) and then the "password" (known only to the owner/leader). If the
proper password is entered, the user is sent to conference XYZ with the
leader flag set. If no password is entered, the user goes to conference
XYZ, without the leader flag. If anyone enters before the leader, they're
told by MeetMe that "the conference will begin when the leader arrives" and
MeetMe provides MOH until that time.
Help! This is an absolute deal-breaker for my install... How can I do this
in FreeSwitch?
Thanks...
--
View this message in context: http://www.nabble.com/Conference-users-hear-MOH-until-leader-enters--tp23715721p23715721.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
brian at freeswitch.org Guest
|
Posted: Tue May 26, 2009 9:58 am Post subject: [Freeswitch-users] Conference users hear MOH until leader en |
|
|
Jason,
There are many ways to accomplish this using FreeSWITCH. All of
which will require you to do a little bit of coding in js, lua or some
other language.
1. Park all callers into a fifo.. (see mod_fifo)
2. When leader auths in your script then you uuid_transfer them all
into the conference.
You could also do this via esl using perl, lua, python, php or ruby.
That should accomplish the same ending result.
/b
On May 26, 2009, at 9:38 AM, Jason Cromes wrote:
Quote: | This is easy in Asterisk because you can pop someone into MeetMe with
different flags. So, in my IVR, I prompt for the "conference number"
(known to all) and then the "password" (known only to the owner/
leader).
If the proper password is entered, that user is sent to conference XYZ
with the leader flag set. If no password is entered, the user goes to
conference XYZ, without the leader flag. If anyone enters before the
leader, they're told by MeetMe that "the conference will begin when
the
leader arrives" and MeetMe provides MOH until that time.
Help! This is an absolute deal-breaker for my install... How can I
do
this in FreeSwitch?
Thanks...
|
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
anthony.minessale at g... Guest
|
Posted: Tue May 26, 2009 6:58 pm Post subject: [Freeswitch-users] Conference users hear MOH until leader en |
|
|
the easiest way would be the new feature I added to 13442
in the conference profile add
<param name="conference-flags" value="wait-mod"/>
to your <profile>
and in your dialplan
<action application="set" data="conference_member_flags=moderator"/>
<action application="conference" data="1234@wideband"/>
or
<action application="conference" data="1234@wideband+flags{moderator}"/>
Don't forget the wishlist and donate button on the main site....
On Tue, May 26, 2009 at 10:46 AM, <jcromes@gmail.com (jcromes@gmail.com)> wrote:
Quote: | Ok, that sounds doable... I have no problem banging around with some code. Thanks for the advice...
I'm new to FIFOs and FreeSwitch in general, so please check my logic here...
- When a user enters their conference number, I check to see if that conference exists (because the conference shouldn't exist until the leader enters).
- If that conference exists, the user gets dropped straight into it.
- If that conference does not exist, I park that user into a FIFO, with music.
- When the leader enters their conference number and password, I put them into that conference (which creates the conference).
- Then check for the presence of a FIFO with parked users.
- If the FIFO contains parked users, I transfer everyone from the FIFO into the conference.
Is that what you were thinking?
Brian West wrote: Quote: | Quote: | Jason,
There are many ways to accomplish this using FreeSWITCH. All of
which will require you to do a little bit of coding in js, lua or some
other language.
1. Park all callers into a fifo.. (see mod_fifo)
2. When leader auths in your script then you uuid_transfer them all
into the conference.
You could also do this via esl using perl, lua, python, php or ruby.
That should accomplish the same ending result.
/b
On May 26, 2009, at 9:38 AM, Jason Cromes wrote:
Quote: | This is easy in Asterisk because you can pop someone into MeetMe with
different flags. So, in my IVR, I prompt for the "conference number"
(known to all) and then the "password" (known only to the owner/
leader).
If the proper password is entered, that user is sent to conference XYZ
with the leader flag set. If no password is entered, the user goes to
conference XYZ, without the leader flag. If anyone enters before the
leader, they're told by MeetMe that "the conference will begin when
the
leader arrives" and MeetMe provides MOH until that time.
Help! This is an absolute deal-breaker for my install... How can I
do
this in FreeSwitch?
Thanks...
| _______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
| |
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
|
--
Anthony Minessale II
FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/
AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])
IRC: irc.freenode.net #freeswitch
FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])
pstn:213-799-1400 |
|
Back to top |
|
|
msc at freeswitch.org Guest
|
Posted: Tue May 26, 2009 7:56 pm Post subject: [Freeswitch-users] Conference users hear MOH until leader en |
|
|
On Tue, May 26, 2009 at 4:56 PM, Anthony Minessale <anthony.minessale@gmail.com (anthony.minessale@gmail.com)> wrote:
Quote: | the easiest way would be the new feature I added to 13442
in the conference profile add
<param name="conference-flags" value="wait-mod"/>
to your <profile>
and in your dialplan
<action application="set" data="conference_member_flags=moderator"/>
<action application="conference" data="1234@wideband"/>
or
<action application="conference" data="1234@wideband+flags{moderator}"/>
Don't forget the wishlist and donate button on the main site....
|
And the wiki tax if you feel comfortable adding this to the wiki. If not let me know and I'll add it.
-MC |
|
Back to top |
|
|
stevecrozz at gmail.com Guest
|
Posted: Tue May 26, 2009 8:18 pm Post subject: [Freeswitch-users] Conference users hear MOH until leader en |
|
|
Michael,
Pardon me for hopping on this thread, but can you explain more about this new feature? I've been wanting something like this to apply different behaviors for different conference members. Can this be used to provide a 'moderator' with different behaviors bound to DTMF keys than regular callers?
--Stephen
On Tue, May 26, 2009 at 5:55 PM, Michael Collins <msc@freeswitch.org (msc@freeswitch.org)> wrote:
|
|
Back to top |
|
|
jcromes at gmail.com Guest
|
Posted: Tue May 26, 2009 9:19 pm Post subject: [Freeswitch-users] Conference users hear MOH until leader en |
|
|
Anthony - unbelievable! Thank you so much for implementing that! I kept
going through the possibilities of using a FIFO, putting the javascript in a
polling loop, or having everyone enter the conference muted and manually
playing MOH. This feature absolutely makes my code a snap... Yes, I will
remember the wish-list and I will update the wiki (probably tomorrow
though).
Stephen: This new feature doesn't provide the ability you're referring
to... It gives me the ability to make normal users "wait" on a moderator to
open the conference.
However, the capability you're asking for already exists in FreeSwitch by
choosing different "profiles" for your conferences. Within the
mod_conference config file you can create different profiles which use
different "caller controls" a.k.a. "in-conference dtmf features". So,
create one profile for your normal users and another identical profile
(except for the caller controls) for your moderators/admins.
When you put them into the conference, you can select your profile like so:
<action application="conference" data="1234@profile_for_users"/>
<action application="conference" data="1234@profile_for_moderators"/>
I hope that's all correct - again, I'm new.
Anthony, I will try this out first thing tomorrow!
--
View this message in context: http://www.nabble.com/Conference-users-hear-MOH-until-leader-enters--tp23724561p23734920.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
anthony.minessale at g... Guest
|
Posted: Wed May 27, 2009 7:54 am Post subject: [Freeswitch-users] Conference users hear MOH until leader en |
|
|
This opens the door to what you ask but to add moderator specific dtmf controls is another patch that would require specifics and most likely a bounty or contract to complete.
On Tue, May 26, 2009 at 8:17 PM, Stephen Crosby <stevecrozz@gmail.com (stevecrozz@gmail.com)> wrote:
--
Anthony Minessale II
FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/
AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])
IRC: irc.freenode.net #freeswitch
FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])
pstn:213-799-1400 |
|
Back to top |
|
|
stevecrozz at gmail.com Guest
|
Posted: Wed May 27, 2009 11:29 am Post subject: [Freeswitch-users] Conference users hear MOH until leader en |
|
|
Thanks j3flight, I have used that method, but the profiles seem to be for conferences not users. So I give a conference a profile, and everybody in the conference shares the profile settings. If I'm wrong, let me know, otherwise I'll stop hijacking this thread.
--Stephen
On Wed, May 27, 2009 at 5:50 AM, Anthony Minessale <anthony.minessale@gmail.com (anthony.minessale@gmail.com)> wrote:
|
|
Back to top |
|
|
jcromes at gmail.com Guest
|
Posted: Wed May 27, 2009 11:46 am Post subject: [Freeswitch-users] Conference users hear MOH until leader en |
|
|
Nope, it seems you are absolutley correct. I had setup my conferences this
way, but hadn't experimented yet. I tried putting two users into the same
conference using different profiles, but they both had the same caller
controls. Bummer.
I believe we can get around this though, assuming I can call javascript from
the caller controls. Currently, I am using a trick in my conference IVR
where I scan the UUIDs in a conference looking for an IsModerator variable
that I set when they were dropped in. If a user has that variable set to 1,
they are a moderator.
I could use that same trick from the caller controls to determine whether
that user has moderator permissions and can act (or not act) on their button
press. I'll give it a shot at some point and post back.
Stephen Crosby-2 wrote:
Quote: |
Thanks j3flight, I have used that method, but the profiles seem to be for
conferences not users. So I give a conference a profile, and everybody in
the conference shares the profile settings. If I'm wrong, let me know,
otherwise I'll stop hijacking this thread.
--Stephen
On Wed, May 27, 2009 at 5:50 AM, Anthony Minessale <
anthony.minessale@gmail.com> wrote:
Quote: | This opens the door to what you ask but to add moderator specific dtmf
controls is another patch that would require specifics and most likely a
bounty or contract to complete.
On Tue, May 26, 2009 at 8:17 PM, Stephen Crosby
<stevecrozz@gmail.com>wrote:
Quote: | Michael,
Pardon me for hopping on this thread, but can you explain more about
this
new feature? I've been wanting something like this to apply different
behaviors for different conference members. Can this be used to provide
a
'moderator' with different behaviors bound to DTMF keys than regular
callers?
--Stephen
On Tue, May 26, 2009 at 5:55 PM, Michael Collins
<msc@freeswitch.org>wrote:
Quote: |
On Tue, May 26, 2009 at 4:56 PM, Anthony Minessale <
anthony.minessale@gmail.com> wrote:
Quote: | the easiest way would be the new feature I added to 13442
in the conference profile add
to your <profile>
and in your dialplan
<action application="set" data="conference_member_flags=moderator"/>
<action application="conference" data="1234@wideband"/>
or
<action application="conference" data="1234@wideband
+flags{moderator}"/>
Don't forget the wishlist and donate button on the main site....
| And the wiki tax if you feel comfortable adding this to the wiki. If
not
let me know and I'll add it.
-MC
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
|
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
|
--
Anthony Minessale II
FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/
AIM: anthm
MSN:anthony_minessale@hotmail.com <MSN%3Aanthony_minessale@hotmail.com>
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com<PAYPAL%3Aanthony.minessale@gmail.com>
IRC: irc.freenode.net #freeswitch
FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org <sip%3A888@conference.freeswitch.org>
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org<googletalk%3Aconf%2B888@conference.freeswitch.org>
pstn:213-799-1400
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
|
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
|
--
View this message in context: http://www.nabble.com/Conference-users-hear-MOH-until-leader-enters--tp23724561p23746348.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
anthony.minessale at g... Guest
|
Posted: Wed May 27, 2009 2:41 pm Post subject: [Freeswitch-users] Conference users hear MOH until leader en |
|
|
It would be an improvement to move the caller controls to the member so it works
the way you expect but it will have to wait for the right time and motivation level.
From there it would also be possible to make up some new caller controls that were moderator inspired like (mute all besides moderator) stuff like that.
I don't want to get too fancy because the idea behind the conference is to keep it clean.
We do have a caller control that just sends an event so an external application can catch it and use esl to do the desired action such as, dial 4, get the event on the socket decide it means mute all and then send the correct series of api calls to mute each member.
On Wed, May 27, 2009 at 11:45 AM, j3flight <jcromes@gmail.com (jcromes@gmail.com)> wrote:
Quote: |
Nope, it seems you are absolutley correct. I had setup my conferences this
way, but hadn't experimented yet. I tried putting two users into the same
conference using different profiles, but they both had the same caller
controls. Bummer.
I believe we can get around this though, assuming I can call javascript from
the caller controls. Currently, I am using a trick in my conference IVR
where I scan the UUIDs in a conference looking for an IsModerator variable
that I set when they were dropped in. If a user has that variable set to 1,
they are a moderator.
I could use that same trick from the caller controls to determine whether
that user has moderator permissions and can act (or not act) on their button
press. I'll give it a shot at some point and post back.
Stephen Crosby-2 wrote:
Quote: |
Thanks j3flight, I have used that method, but the profiles seem to be for
conferences not users. So I give a conference a profile, and everybody in
the conference shares the profile settings. If I'm wrong, let me know,
otherwise I'll stop hijacking this thread.
--Stephen
On Wed, May 27, 2009 at 5:50 AM, Anthony Minessale <
anthony.minessale@gmail.com (anthony.minessale@gmail.com)> wrote:
Quote: | This opens the door to what you ask but to add moderator specific dtmf
controls is another patch that would require specifics and most likely a
bounty or contract to complete.
On Tue, May 26, 2009 at 8:17 PM, Stephen Crosby
<stevecrozz@gmail.com (stevecrozz@gmail.com)>wrote:
Quote: | Michael,
Pardon me for hopping on this thread, but can you explain more about
this
new feature? I've been wanting something like this to apply different
behaviors for different conference members. Can this be used to provide
a
'moderator' with different behaviors bound to DTMF keys than regular
callers?
--Stephen
On Tue, May 26, 2009 at 5:55 PM, Michael Collins
<msc@freeswitch.org (msc@freeswitch.org)>wrote:
|
|
|
Quote: | Quote: | MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email]) <MSN%3Aanthony_minessale@hotmail.com ([email]MSN%253Aanthony_minessale@hotmail.com[/email])>
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])<PAYPAL%3Aanthony.minessale@gmail.com ([email]PAYPAL%253Aanthony.minessale@gmail.com[/email])>
IRC: irc.freenode.net #freeswitch
FreeSWITCH Developer Conference
|
|
Quote: | Quote: | sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email]) <sip%3A888@conference.freeswitch.org ([email]sip%253A888@conference.freeswitch.org[/email])>
iax:guest@conference.freeswitch.org/888
|
|
--
View this message in context: http://www.nabble.com/Conference-users-hear-MOH-until-leader-enters--tp23724561p23746348.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
|
--
Anthony Minessale II
FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/
AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])
IRC: irc.freenode.net #freeswitch
FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])
pstn:213-799-1400 |
|
Back to top |
|
|
jmesquita at gmail.com Guest
|
Posted: Wed May 27, 2009 8:06 pm Post subject: [Freeswitch-users] Conference users hear MOH until leader en |
|
|
Quoting Mr. Anthony Minessale:
Quote: | thThe easiest way would be the new feature I added to 13442
in the conference profile add
<param name="conference-flags" value="wait-mod"/>
to your <profile>
and in your dialplan
<action application="set" data="conference_member_flags=moderator"/>
<action application="conference" data="1234@wideband"/>
or
<action application="conference" data="1234@wideband+flags{moderator}"/>
Don't forget the wishlist and donate button on the main site....
|
On Tue, May 26, 2009 at 10:20 AM, j3flight <jcromes@gmail.com (jcromes@gmail.com)> wrote:
Quote: |
I'm attempting to replicate the behavior of an Asterisk system with
FreeSwitch and I need a feature that, I'm surprised to say, doesn't seem to
be supported (easily).
Ok, so I've setup my dialplan so that when a specific extension is hit, it
calls out to some javascript which acts like an IVR to handle the conference
setup. (Similar to this:
http://wiki.freeswitch.org/wiki/Examples_confcall_js but with my own
improvements.) Anyway, the conferences are stored permanently in a
database, but I want them protected by their "owner" so they can only be
used when that conference owner dials. If other users have entered the
conference prior to the owner, they should hear music-on-hold until the
leader enters.
This is easy in Asterisk because you can pop someone into MeetMe with
different flags. So, in my IVR, I prompt for the "conference number" (known
to all) and then the "password" (known only to the owner/leader). If the
proper password is entered, the user is sent to conference XYZ with the
leader flag set. If no password is entered, the user goes to conference
XYZ, without the leader flag. If anyone enters before the leader, they're
told by MeetMe that "the conference will begin when the leader arrives" and
MeetMe provides MOH until that time.
Help! This is an absolute deal-breaker for my install... How can I do this
in FreeSwitch?
Thanks...
--
View this message in context: http://www.nabble.com/Conference-users-hear-MOH-until-leader-enters--tp23715721p23715721.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
|
|
|
Back to top |
|
|
jcromes at gmail.com Guest
|
|
Back to top |
|
|
msc at freeswitch.org Guest
|
Posted: Thu May 28, 2009 11:09 am Post subject: [Freeswitch-users] Conference users hear MOH until leader en |
|
|
On Wed, May 27, 2009 at 8:00 PM, j3flight <jcromes@gmail.com (jcromes@gmail.com)> wrote:
Quote: |
Wiki Tax paid...
That was my first contribution to the freeswitch wiki!
MC, you're welcome to have a look over it and see if i made things clear
enough. Feel free to edit.
|
Nicely done! Thanks for taking the time to create a wiki user and jump in with both feet. BTW, as you gain more practical experience with this wait-mod/moderator feature please feel free to come back and add any useful tidbits to the wiki.
-MC |
|
Back to top |
|
|
jmesquita at gmail.com Guest
|
Posted: Fri May 29, 2009 2:20 am Post subject: [Freeswitch-users] Conference users hear MOH until leader en |
|
|
I could not get this working on current trunk. Can you post your configuration on conference module and the dialplan example?
Thanks,
jmesquita
On Thu, May 28, 2009 at 12:56 PM, Michael Collins <msc@freeswitch.org (msc@freeswitch.org)> wrote:
|
|
Back to top |
|
|
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|