dynamic MeetMe, min. digits

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 !

3 Responses to “dynamic MeetMe, min. digits”

  1. Doug Lytle said:

    Aug 27, 10 at 5:58 am

    Xavier wrote:

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

    Doug

  2. "Xavier D." said:

    Aug 27, 10 at 6:28 am

    Yes but what about the conference number ?

  3. Doug Lytle said:

    Aug 28, 10 at 9:40 am

    Xavier D. wrote:

    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