it would really be that easy... :)
meetme.conf. Is there a way that adhearsion can handle this though?
conferences table. Is there any way to have MeetMe pull that
On May 16, 10:34 am, "Thomas Howe" <
howetho...@aol.com> wrote:
> Hi geetarista -
>
> Actually, this one is pretty easy: just make sure you're using the edge
> version of adhearsion.
>
> 1) Create a new adherasion project
> 2) Edit your dialplan.rb file to something like this:
>
> ahn {
>
> loop do
> extension = input :play "please-enter-your-conference-number"
> pin = input :play => "please-enter-your-pin-buddy"
> break if pin == "#{insert-pin-or-db-dip-here}"
> end
>
> play "going-to-conference", extension
> join extension
>
> }
>
> 3) This brings the call into an asterisk meet me conference, so the
> extension has to match one of those. I actually didn't try this code out,
> but I think it's close. the names in the input commands correspond to wave
> files you put in the sounds directory (like /var/lib/asterisk/sounds). Ahn
> is the setup as the context that the call comes in as.
>
> Hope this helps,
> Thomas
>
> -----------------------------------------------