Where are conference bridge configs stored?

Hoping this is an easy question to answer. I went digging through the asterisk database tables and cant find it. Also don’t see it in /etc/asterisk (confbridge.conf and associated files) and digging through the conferences.class.php file for hints but I guess I’m not much of a programme. functions.php mentions some meetme files in /etc/asterisk that don’t have anything in them either.

What specifically are you looking for?

MariaDB [asterisk]> select * from meetme;
+-------+---------+---------+----------+------------------------+------------+-------+-------+----------+---------+
| exten | options | userpin | adminpin | description            | joinmsg_id | music | users | language | timeout |
+-------+---------+---------+----------+------------------------+------------+-------+-------+----------+---------+
| 85002 | T       |         |          | 5002's conference room |       NULL |       |     0 |          |   21600 |
| 85003 | T       |         |          | 5003's conference room |       NULL |       |     0 |          |   21600 |
| 85013 | T       |         |          | 5013's conference room |       NULL |       |     0 |          |   21600 |
| 85014 | T       |         |          | 5014's conference room |       NULL |       |     0 |          |   21600 |
| 85016 | T       |         |          | 5016's conference room |       NULL |       |     0 |          |   21600 |
| 85018 | T       |         |          | 5018's conference room |       NULL |       |     0 |          |   21600 |
+-------+---------+---------+----------+------------------------+------------+-------+-------+----------+---------+
6 rows in set (0.01 sec)

Well crap. I must have looked several times at the list of tables and didn’t see the meetme table…

Where can I find a list of the options?

image

1 Like

You will have to look at the code or tease it out by toggling options one by one.

http://www.asteriskdocs.org/en/2nd_Edition/asterisk-book-html-chunk/asterisk-APP-B-109.html

Thanks.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.