Hi,<div><br></div><div>Just wanted to know why don&#39;t I get any events on start/stop speaking conference joins/leaves if I do something like this:</div><div><br></div><div><div>$con-&gt;events(&quot;plain&quot;,&quot;all&quot;);</div>

<div>$con-&gt;events(&quot;plain&quot;,&quot;CUSTOM conference::maintenance&quot;);</div><div>$con-&gt;sendRecv(&quot;filter Unique-ID $confUUID&quot;);</div><div><br></div><div>Instead I&#39;ve to do something like this:</div>

<div><br></div><div><div>$con-&gt;events(&quot;plain&quot;,&quot;all&quot;);</div><div>$con-&gt;events(&quot;plain&quot;,&quot;CUSTOM conference::maintenance&quot;);</div><div>$con-&gt;sendRecv(&quot;filter Unique-ID $confmember1&quot;);</div>

</div><div>$con-&gt;sendRecv(&quot;filter Unique-ID $confmember2&quot;);</div><div>$con-&gt;sendRecv(&quot;filter Unique-ID $confmember3&quot;);</div><div>.</div><div>.</div><div>.</div><div><br></div><div>Which is useless in case you want to check if a user is entering/leaving a particular conference in a single inbound ESL script...</div>

<div><br></div><div>What I&#39;m doing instead now is something on these lines:</div><div><br></div><div><div>$con-&gt;events(&quot;plain&quot;,&quot;all&quot;);</div><div>$con-&gt;sendRecv(&quot;filter Unique-ID $CONFNAME&quot;);</div>

</div><div>i//psuedocode</div><div>if event equals PRESENCE_IN and presence-call-direction equals inbound then</div><div>{</div><div>    execute API command conference list confname</div><div>    parse uuid from members add a filter update the hashtable for existing confmembers</div>

<div>}</div><div>//once we have the uuid filter added we&#39;ll get to know if that user leaves, so the logic for removing the filter is straight forward</div><div><div>if event equals CUSTOM and subtype is CONFERENCE::MAINTANANCE</div>

<div>{</div><div>    if event action=del-member remove filter for UUID</div><div>}</div></div><div><br></div><div>I don&#39;t get ANY event if I&#39;m filtering on conference UUID... I think that needs to be fixed, because its mod_conference which is throwing all those events.</div>

<div><br></div><div>Regards.</div><div><br></div>-- <br>I&#39;d love to change the world, but they wont gimme the source code to it
</div>