<div dir="ltr">Thanks for the extra info, but I can&#39;t think of the best way to achieve what you want to do.<div><br></div><div>From everything you&#39;ve posted, I don&#39;t think there is a valid bug report here and possibly not even a valid feature request, as I&#39;m still not convinced on the use case.<br>
<div><br></div><div>Unless anyone else knows an immediate answer to this, then you&#39;ll need to spend time trying different approaches and see which works best for you. </div><div><br></div><div>My best advice would be to carry on playing around, see how far you get, perhaps report back in a week with your progress and see if anyone else bites on the thread.</div>
<div><br></div><div>Alternative if you need immediate answers, you could reach out to the core devs via FreeSwitch Consulting and pay for an hour of their time on the phone to go through the issue with you.</div><div><br>
</div><div>Sorry I couldn&#39;t be of more help on this.</div><div><br></div><div>Cal</div></div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Mon, Sep 30, 2013 at 12:04 PM, Mimiko <span dir="ltr">&lt;<a href="mailto:vbvbrj@gmail.com" target="_blank">vbvbrj@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im">On 30.09.2013 10:33, Cal Leeming [Simplicity Media Ltd] wrote:<br>
&gt; Can you please try the following on your dialplan;<br>
&gt; <a href="https://wiki.freeswitch.org/wiki/Misc._Dialplan_Tools_record_session#Continue_recording_on_transfer" target="_blank">https://wiki.freeswitch.org/wiki/Misc._Dialplan_Tools_record_session#Continue_recording_on_transfer</a><br>

&gt; &lt;action application=&quot;set&quot; data=&quot;recording_follow_transfer=false&quot;/&gt;<br>
&gt;<br>
&gt; Apparently setting that to false will stop the call recording after a<br>
&gt; transfer - which is the behavior I think you are looking for.<br>
&gt;<br>
&gt; Please let me know if I have misinterpreted your problem.<br>
<br>
</div>Well this will stop recording on a transfer. Only is that I need the<br>
recording to continue on transfer to any extension from callcenter<br>
application, except to extensions associated with another queue in<br>
callcenter. Ie, record_follow_transfer=true is the default on the whole<br>
FS system. Only in case of transfer from one queue to another queue<br>
record must not follow transfer.<br>
<br>
I obtained this behavior explicitly stopping recording when transferred<br>
to any extension associated with a callcenter application. So the<br>
dialplan contains this:<br>
<br>
&lt;extension name=&quot;cc1&quot;&gt;<br>
  &lt;condition field=&quot;destination_number&quot; expression=&quot;^777$&quot; break=&quot;on-false&quot;&gt;<br>
   &lt;action application=&quot;set&quot; data=&quot;default_language=ro&quot;/&gt;<br>
   &lt;action application=&quot;answer&quot;/&gt;<br>
  &lt;/condition&gt;<br>
  &lt;condition field=&quot;${cc_record_filename}&quot; expression=&quot;^$&quot; break=&quot;never&quot;&gt;<br>
<div class="im">   &lt;anti-action application=&quot;stop_record_session&quot;<br>
data=&quot;${cc_record_filename}&quot;/&gt;<br>
  &lt;/condition&gt;<br>
</div>  &lt;condition field=&quot;${cc_member_uuid}&quot; expression=&quot;^$&quot; break=&quot;never&quot;&gt;<br>
   &lt;anti-action application=&quot;set&quot; data=&quot;cc_base_score=300&quot;/&gt;<br>
   &lt;!-- play a message before entering the queue. --&gt;<br>
   &lt;action application=&quot;playback&quot; data=&quot;phrase:cc_intro&quot;/&gt;<br>
   &lt;!-- hangup after successful bridge to agent --&gt;<br>
<div class="im">   &lt;action application=&quot;set&quot; data=&quot;hangup_after_bridge=true&quot;/&gt;<br>
</div>   &lt;!-- queue caller --&gt;<br>
<div class="im">   &lt;action application=&quot;set&quot; data=&quot;RECORD_STEREO=true&quot;/&gt;<br>
   &lt;action application=&quot;set&quot; data=&quot;record_sample_rate=8000&quot;/&gt;<br>
</div>  &lt;/condition&gt;<br>
  &lt;condition&gt;<br>
<div class="im">   &lt;action application=&quot;bind_meta_app&quot; data=&quot;1 b s<br>
</div>execute_extension::redir_from_cc XML features_local&quot;/&gt;<br>
   &lt;action application=&quot;callcenter&quot; data=&quot;cc1&quot;/&gt;<br>
   &lt;!-- if no agent was reached and using max-wait-time - send to<br>
general voicemail --&gt;<br>
<div class="im">   &lt;action application=&quot;set&quot; data=&quot;playback_terminators=#&quot;/&gt;<br>
   &lt;action application=&quot;playback&quot; data=&quot;phrase:no_agents_leave_message&quot;/&gt;<br>
</div><div class="im">   &lt;action application=&quot;set&quot; data=&quot;skip_greeting=true&quot;/&gt;<br>
   &lt;action application=&quot;set&quot; data=&quot;skip_instructions=true&quot;/&gt;<br>
</div>   &lt;action application=&quot;voicemail&quot; data=&quot;default ${domain_name} cc1&quot;/&gt;<br>
<div class="im">   &lt;action application=&quot;hangup&quot;/&gt;<br>
  &lt;/condition&gt;<br>
&lt;/extension&gt;<br>
<br>
</div>&lt;extension name=&quot;cc2&quot;&gt;<br>
  &lt;condition field=&quot;destination_number&quot; expression=&quot;^888$&quot; break=&quot;on-false&quot;&gt;<br>
   &lt;action application=&quot;set&quot; data=&quot;default_language=ro&quot;/&gt;<br>
   &lt;action application=&quot;answer&quot;/&gt;<br>
  &lt;/condition&gt;<br>
  &lt;condition field=&quot;${cc_record_filename}&quot; expression=&quot;^$&quot; break=&quot;never&quot;&gt;<br>
<div class="im">   &lt;anti-action application=&quot;stop_record_session&quot;<br>
data=&quot;${cc_record_filename}&quot;/&gt;<br>
  &lt;/condition&gt;<br>
</div>  &lt;condition field=&quot;${cc_member_uuid}&quot; expression=&quot;^$&quot; break=&quot;never&quot;&gt;<br>
   &lt;anti-action application=&quot;set&quot; data=&quot;cc_base_score=300&quot;/&gt;<br>
   &lt;!-- play a message before entering the queue. --&gt;<br>
   &lt;action application=&quot;playback&quot; data=&quot;phrase:cc_intro&quot;/&gt;<br>
   &lt;!-- hangup after successful bridge to agent --&gt;<br>
<div class="im">   &lt;action application=&quot;set&quot; data=&quot;hangup_after_bridge=true&quot;/&gt;<br>
</div>   &lt;!-- queue caller --&gt;<br>
<div class="im">   &lt;action application=&quot;set&quot; data=&quot;RECORD_STEREO=true&quot;/&gt;<br>
   &lt;action application=&quot;set&quot; data=&quot;record_sample_rate=8000&quot;/&gt;<br>
</div>  &lt;/condition&gt;<br>
  &lt;condition&gt;<br>
<div class="im">   &lt;action application=&quot;bind_meta_app&quot; data=&quot;1 b s<br>
</div>execute_extension::redir_from_cc XML features_local&quot;/&gt;<br>
   &lt;action application=&quot;callcenter&quot; data=&quot;cc2&quot;/&gt;<br>
   &lt;action application=&quot;transfer&quot; data=&quot;cc1 XML default&quot;/&gt;<br>
  &lt;/condition&gt;<br>
&lt;/extension&gt;<br>
<br>
features_local contains:<br>
<br>
&lt;extension name=&quot;redir_from_cc&quot;&gt;<br>
  &lt;condition field=&quot;destination_number&quot; expression=&quot;^redir_from_cc$&quot;&gt;<br>
<div class="im">   &lt;action application=&quot;answer&quot;/&gt;<br>
   &lt;action application=&quot;read&quot; data=&quot;11 11<br>
&#39;tone_stream://%(10000,0,350,440)&#39; digits 5000 #&quot;/&gt;<br>
</div>   &lt;action application=&quot;execute_extension&quot; data=&quot;is_transfer_from_cc XML<br>
features_local&quot;/&gt;<br>
  &lt;/condition&gt;<br>
&lt;/extension&gt;<br>
<br>
&lt;extension name=&quot;is_transfer_from_cc&quot;&gt;<br>
  &lt;condition field=&quot;destination_number&quot; expression=&quot;^is_transfer_from_cc$&quot;/&gt;<br>
<div class="im HOEnZb">  &lt;condition field=&quot;${digits}&quot; expression=&quot;^(\d+)$&quot;&gt;<br>
   &lt;action application=&quot;transfer&quot; data=&quot;-bleg ${digits} XML default&quot;/&gt;<br>
   &lt;anti-action application=&quot;eval&quot; data=&quot;cancel transfer&quot;/&gt;<br>
  &lt;/condition&gt;<br>
&lt;/extension&gt;<br>
<br>
<br>
</div><div class="HOEnZb"><div class="h5">--<br>
Mimiko desu.<br>
<br>
_________________________________________________________________________<br>
Professional FreeSWITCH Consulting Services:<br>
<a href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>
<a href="http://www.freeswitchsolutions.com" target="_blank">http://www.freeswitchsolutions.com</a><br>
<br>
FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>
<a href="http://www.cudatel.com" target="_blank">http://www.cudatel.com</a><br>
<br>
Official FreeSWITCH Sites<br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
<a href="http://wiki.freeswitch.org" target="_blank">http://wiki.freeswitch.org</a><br>
<a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a><br>
<br>
FreeSWITCH-users mailing list<br>
<a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
</div></div></blockquote></div><br></div>