Re: [asterisk-users] dynamic MeetMe, min. digits

2010-08-28 Thread Doug Lytle
Xavier D. wrote:
 Yes but what about the conference number ?


You can pass that on via the dial plan.  I'm using mysql to setup 
dynamic conferences.  A snippet below:

; ***
; Get conference room number, if number entered is 5812
; jump to verify administrator password
; 

exten = s,n,Read(get-room-num|conf-getconfno)
exten = s,n,NoOP(${conf-getchannel})
exten = s,n,GotoIf($[${get-room-num} = 5812]?s-verify,1:s,5)

; **
; Create the conference room for the end user.  Info that
; was obtained from the MySQL database
; **

exten = s-process,1,SetMusicOnHold(conference)
exten = 
s-process,n,Meetme(${conference.room}|ciMDPs|${conference.password})
exten = s-process,n,Hangup()

Doug

-- 
Ben Franklin quote:

Those who would give up Essential Liberty to purchase a little Temporary 
Safety, deserve neither Liberty nor Safety.


-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


[asterisk-users] dynamic MeetMe, min. digits

2010-08-27 Thread Xavier

 Hi All,

Is there a way to use the dynamic feature of the meetme application (D) 
and to set an option to configure the minimum length of the numbers for 
the conference and the associated pin.

In my case, I'd like them to be at least four digits.

Thanks in advance !
-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] dynamic MeetMe, min. digits

2010-08-27 Thread Doug Lytle
Xavier wrote:
 Hi All,

 Is there a way to use the dynamic feature of the meetme application 
 (D) and to set an option to configure the minimum length of the 
 numbers for the conference and the associated pin.

You can use the read application to get the password and then check the 
length, before going onto the conference setup.



Doug

-- 
Ben Franklin quote:

Those who would give up Essential Liberty to purchase a little Temporary 
Safety, deserve neither Liberty nor Safety.


-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] dynamic MeetMe, min. digits

2010-08-27 Thread Xavier D.

 Yes but what about the conference number ?

On 08/27/2010 11:58 AM, Doug Lytle wrote:

Xavier wrote:

Hi All,

Is there a way to use the dynamic feature of the meetme application
(D) and to set an option to configure the minimum length of the
numbers for the conference and the associated pin.

You can use the read application to get the password and then check the
length, before going onto the conference setup.



Doug

-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users