Re: [asterisk-users] MeetMe and setting conference timeout

2013-09-19 Thread andrey
exten = 123,1,Set(TIMEOUT(absolute)=3600) exten = 123,n,MeetMe(blah,d) if you are using freepbx and you want to set timeout for all conference rooms go here -http://dn.forceit.ru/asterisk-conference-timeout -- _ --

[asterisk-users] MeetMe and setting conference timeout

2009-06-01 Thread ik
Hello, I have MeetMe rooms generated dynamically and it always have two people inside that are entered by dialplan. I wish to make in some way a timeout mechanism that after X amount of time, it will disconnect the users and kick them out of the conference. How can I do such thing ? Thanks,

Re: [asterisk-users] MeetMe and setting conference timeout

2009-06-01 Thread Danny Nicholas
Of ik Sent: Monday, June 01, 2009 4:44 AM To: asterisk-users@lists.digium.com Subject: [asterisk-users] MeetMe and setting conference timeout Hello, I have MeetMe rooms generated dynamically and it always have two people inside that are entered by dialplan. I wish to make in some way

Re: [asterisk-users] MeetMe and setting conference timeout

2009-06-01 Thread Tilghman Lesher
On Monday 01 June 2009 04:43:43 ik wrote: I have MeetMe rooms generated dynamically and it always have two people inside that are entered by dialplan. I wish to make in some way a timeout mechanism that after X amount of time, it will disconnect the users and kick them out of the conference.

Re: [asterisk-users] MeetMe and setting conference timeout

2009-06-01 Thread Carlos Chavez
Is there a README file with the new Realtime SQL table definition for Meetme? On Mon, 2009-06-01 at 13:45 -0500, Tilghman Lesher wrote: On Monday 01 June 2009 04:43:43 ik wrote: I have MeetMe rooms generated dynamically and it always have two people inside that are entered by

Re: [asterisk-users] MeetMe and setting conference timeout

2009-06-01 Thread Tilghman Lesher
On Monday 01 June 2009 13:53:22 Carlos Chavez wrote: Is there a README file with the new Realtime SQL table definition for Meetme? On Mon, 2009-06-01 at 13:45 -0500, Tilghman Lesher wrote: On Monday 01 June 2009 04:43:43 ik wrote: I have MeetMe rooms generated dynamically and it

Re: [asterisk-users] MeetMe and setting conference timeout

2009-06-01 Thread Jared Smith
On Mon, 2009-06-01 at 10:22 -0500, Danny Nicholas wrote: Write an AGI to hangup the users using Asterisk Manager. If you’re the ambitious type, you could do it with grep and awk from the dialplan; just hangup the appropriate channels. Wow... that sure sounds like complicated overkill to me.

Re: [asterisk-users] MeetMe and setting conference timeout

2009-06-01 Thread Danny Nicholas
Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users] MeetMe and setting conference timeout On Mon, 2009-06-01 at 10:22 -0500, Danny Nicholas wrote: Write an AGI to hangup the users using Asterisk Manager. If you're the ambitious type, you could do it with grep and awk from

Re: [asterisk-users] MeetMe and setting conference timeout

2009-06-01 Thread Jared Smith
On Mon, 2009-06-01 at 14:42 -0500, Danny Nicholas wrote: That sounds good Jared; This would kill the channel 1 hour after caller 1 joined conference? Close... it will kill each channel one hour after each channel joined the conference. If Bob joins at 5:00 and John joins at 5:01, then Bob's

Re: [asterisk-users] MeetMe and setting conference timeout

2009-06-01 Thread ik
Thank you all for the comments. Jared, I've implemented your idea, and it worked very well. Thank you very much for it :) Ido On Mon, Jun 1, 2009 at 10:36 PM, Jared Smith jsm...@digium.com wrote: On Mon, 2009-06-01 at 10:22 -0500, Danny Nicholas wrote: Write an AGI to hangup the users

Re: [asterisk-users] MeetMe and setting conference timeout

2009-06-01 Thread JR Richardson
I wish to make in some way a timeout mechanism that after X amount of time, it will disconnect the users and kick them out of the conference. How can I do such thing ? This is from my realtime extensions, database formatted. Set the TIMEOUT(absolute)=value to whatever you like in seconds.