Hello,
for whatever reason it’s not possible to use a ‘dynamic PIN’ for
a conference room. Dynamic as in: the first member enters an arbitrary
PIN which is then valid as long as the room is established.
The appropriate Meetme option is ‘D’, thus it’s rather easy to
patch this into the page.conferences.php.
I checked this up to 2.8.0.0, not there.
This diff is against fpbx 2.5.2.3 / conferences 2.5.1.7.
--- page.conferences.php.dist 2010-04-27 13:54:51.000000000 +0200
+++ page.conferences.php 2010-04-27 13:56:16.000000000 +0200
@@ -174,6 +174,18 @@
</tr>
<?php } ?>
<tr>
+ <td><a href="#" class="info"><?php echo _("Dynamic PIN:")?><span><?php echo _("If yes, the first member can set the PIN of this conference")?></span></a></td>
+ <td>
+ <select name="opt#D" tabindex="<?php echo ++$tabindex;?>">
+ <?php
+ $optselect = strpos($options, "D");
+ echo '<option value=""' . ($optselect === false ? ' SELECTED' : '') . '>'._("No") . '</option>';
+ echo '<option value="D"'. ($optselect !== false ? ' SELECTED' : '') . '>'._("Yes"). '</option>';
+ ?>
+ </select>
+ </td>
+ </tr>
+ <tr>
<td><a href="#" class="info"><?php echo _("Leader Wait:")?><span><?php echo _("Wait until the conference leader (admin user) arrives before starting the conference")?></span></a></td>
<td>
<select name="opt#w" tabindex="<?php echo ++$tabindex;?>">