I would like to create a 3-user conference from a 2-user call (bridge) without calling the third user twice.<br><br>The scenario is the following:<br>1. user 1000 calls user 1001 (that responds);<br>2. user 1001 may decide to create a 3-user conference by transferring the execution to an extension that use conference_set_auto_outcall to invite user 1002 and create the conference.<br>
<br><action application="bind_meta_app" data="3 b s execute_extension::cf XML features"/><br><br><extension name="cf"><br> <condition field="destination_number" expression="^cf$"><br>
<action application="answer"/><br> <action application="transfer" data="-both 3000 XML default"/><br> </condition><br></extension><br><br><extension name="nb_conferences"><br>
<condition field="destination_number" expression="^(3000)$"><br> <action application="answer"/><br> <action application="set" data="conference_auto_outcall_timeout=20"/><br>
<action application="set" data="conference_auto_outcall_flags=none"/><br> <action application="set" data="conference_auto_outcall_caller_id_name=${effective_caller_id_name}"/><br>
<action application="set" data="conference_auto_outcall_caller_id_number=${effective_caller_id_number}"/><br> <action application="set" data="conference_auto_outcall_profile=default"/><br>
<action application="conference_set_auto_outcall" data="user/1002@${domain}"/><br> <action application="conference" data="$1@default"/><br> </condition><br>
</extension><br><br>At this point user 1002 receive two simultaneous calls: one from user 1000 and one from user 1001 (I'm using softphones).<br><br>The behavior I would like to achieve is that user 1002 only gets one call from user 1001 or from the conference.<br>
<br><br>Lorentz<br>