Documentation needed
I've added this section because I've found dynamic realtime references in "app_meetme.c" and because I found a "meetme" table structure searching the web. But AFAIK there is not real documentaion about it. Contributors are welcome.
extconfig.conf Setup
Add the following line, swapping your own personal values if you wish:meetme => mysql,asterisk,meetme
- You can change "mysql" to "odbc" .
- You can change "asterisk" to be the name of your database.
- You can change "meetme" to be the name of the MeetMe table we will create below.
Database Table
#
# Table structure for table `meetme`
#
CREATE TABLE `meetme` (
`confno` varchar(80) DEFAULT '0' NOT NULL,
`username` varchar(64) DEFAULT '' NOT NULL,
`domain` varchar(128) DEFAULT '' NOT NULL,
`pin` varchar(20) NULL,
`adminpin` varchar(20) NULL,
`members` integer DEFAULT 0 NOT NULL,
PRIMARY KEY (confno)
);
FIXME: Not idea of what `username`and `domain`fields are for (they appeared in the table definition I found).
NOTE: `members` is updated by MeetMe() application and stores the number of participants in the conference. Don't edit it.
Testing
Add some entries, for example:
- confno: 25
- pin: 1234
In dialplan set:
exten => 25,1,MeetMe(25)
This SQL query will be done:
SELECT * FROM meetme WHERE confno = '25'
And you should be prompted for pin.
IƱaki Baz Castillo
Page Changes