<div dir="ltr">Hello everyone,<div><br></div><div>let's say, I have a FreeSWITCH conference that is PIN-protected and where I want to record each participant's name. How do I announce the name of a participant *after* the caller's PIN has been validated?</div><div><br></div><div>So far I tried something like this:</div><div><br></div><div>        <extension name="Record Name and schedule conf announce"><br>          <condition field="destination_number" expression="^34(\d{2})$"><br>            <action application="answer"/><br>            <action application="set" data="namefile=/tmp/${uuid}-name.wav" inline="true"/><br>            <action application="sleep" data="1000"/><br>            <action application="playback" data="voicemail/vm-record_name1.wav"/><br>            <action application="playback" data="tone_stream://%(500,0,500)"/><br>            <action application="record" data="${namefile} 5"/><br>            <action application="playback" data="ivr/ivr-call_being_transferred.wav"/><br>            <action application="set" data="res=${sched_api +1 none conference 31$1-${domain_name} play file_string://${namefile}!conference/conf-has_joined.wav}"/><br>            <action application="transfer" data="31$1 XML default"/><br>          </condition><br>        </extension><br><br>        <extension name="wb_conferences"><br>          <condition field="destination_number" expression="^(31\d{2})$"><br>            <action application="answer"/><br>            <action application="conference" data="$1-${domain_name}@wideband${conference_pin}"/><br>          </condition><br>        </extension><br></div><div><br></div><div>Participant dials 34xx, name is recorded, playback scheduled, call transferred to 31xx, which initiates the conference, but sched_api plays the join message before the pin has been validated.</div><div><br></div><div>Is there a way to hook into the conference so that the join message is only scheduled after the PIN has been validated successfully?</div><div><br clear="all"><div><div dir="ltr" class="gmail_signature" data-smartmail="gmail_signature">Thanks,<br>Thilo</div></div></div></div>