<!DOCTYPE html PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN'>
<html><head><meta http-equiv="Content-Type" content="text/html;charset=us-ascii">
<style>BODY{font:10pt Tahoma, Verdana, sans-serif}</style></head><body>
<DIV>Once a variable is set on a session (one leg) it presists till it's either "unset" or changed. Variables really don't have "default" values, there are just default ways that things work if the variables are not present. With that said you should only have to set variables like "hangup_after_bridge" and so on, only once on the A leg.</DIV>
<DIV>&nbsp;</DIV>
<DIV>The confusing part is what leg to set them on. The easiest way to figure that out, is to see how FS uses it. For example "hangup_after_bridge" is used by the Bridge application (actually in switch_ivr_bridge), so because it's an parameter that tells the bridge how to work, it needs to be set on the A leg. The bridge function connects two legs togetther, and the A leg is the one calling it.</DIV>
<DIV>&nbsp;</DIV>
<DIV>Other variables, the ones used for call origination, for example "origination_uuuid" are used to control how an outbound channel origiates the call. They could be used in the originate API call, with NO other leg preseent. If you are using them in a Bridge, then you must either set them on the B-Leg, or "export" them so that all new B-Legs created from the current, get those variables "cloned" to them. </DIV>
<DIV>&nbsp;</DIV>
<DIV>So in the case that you have more then one "Bridge" inside a condition, any variables you set with "set" will be there for each following bridge, however the ones you set in the channel of the bridge, the ones in the "[]" will not be there for the next ones. Becuase if the bridge fails, the B-Leg for that bridge is gone.</DIV>
<DIV>&nbsp;</DIV>
<DIV>--Dave</DIV><BR>
<BLOCKQUOTE style="BORDER-LEFT: #0000ff 2px solid; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; MARGIN-RIGHT: 0px">
<HR>
<B>From:</B> Avi Marcus [mailto:avi@avimarcus.net]<BR><B>To:</B> FreeSWITCH Users Help [mailto:freeswitch-users@lists.freeswitch.org]<BR><B>Sent:</B> Fri, 15 Jun 2012 07:40:49 -0700<BR><B>Subject:</B> Re: [Freeswitch-users] Best place to set variables?<BR><BR>No. They do persist for the whole &lt;condition&gt; just they aren't<BR>necessarily checked by each bridge line.<BR>-Avi<BR><BR><BR>On Fri, Jun 15, 2012 at 5:30 PM, ocset &lt;<A href="mailto:ocset@the800group.com">ocset@the800group.com</A>&gt; wrote:<BR>&gt; Thanks for your answer.<BR>&gt;<BR>&gt; What you are saying is that the "continue_on_fail=true" and<BR>&gt; "hangup_after_bridge=true" variables are set back to their default<BR>&gt; values in the"B" leg of the dailplan. I thought the variable that are<BR>&gt; set would persist for the whole &lt;condition&gt; section.<BR>&gt;<BR>&gt; Regards<BR>&gt; O<BR>&gt;<BR>&gt; On 15/06/12 21:47, Avi Marcus wrote:<BR>&gt;&gt; Short answer: some variables are for the A leg, and some are for the B leg.<BR>&gt;&gt; The two in their own set tags are for the A leg's execution of the<BR>&gt;&gt; bridge.. whether it should keep trying or not.<BR>&gt;&gt; The one inside the bridge is specific to that leg and bridge attempt<BR>&gt;&gt; of how it should behave.<BR>&gt;&gt;<BR>&gt;&gt; Perhaps someone wants to give the longer answer, but I don't have time<BR>&gt;&gt; right now.<BR>&gt;&gt;<BR>&gt;&gt; -Avi<BR>&gt;&gt;<BR>&gt;&gt;<BR>&gt;&gt; On Fri, Jun 15, 2012 at 4:12 PM, ocset&lt;<A href="mailto:ocset@the800group.com">ocset@the800group.com</A>&gt; &nbsp;wrote:<BR>&gt;&gt;&gt; Hi<BR>&gt;&gt;&gt;<BR>&gt;&gt;&gt; In the FreeSWITCH-Cookbook, there is the following example<BR>&gt;&gt;&gt;<BR>&gt;&gt;&gt; &lt;extension name="ring_sequentially"&gt;<BR>&gt;&gt;&gt; &lt;condition field="destination_number" expression="^(2001)$"&gt;<BR>&gt;&gt;&gt; &lt;action application="set" data="continue_on_fail=true"/&gt;<BR>&gt;&gt;&gt; &lt;action application="set" data="hangup_after_bridge=true"/&gt;<BR>&gt;&gt;&gt; &lt;action application="bridge"<BR>&gt;&gt;&gt; data={ignore_early_media=true}sofia/internal/<A href="mailto:userA@local.pbx.com">userA@local.pbx.com</A>"/&gt;<BR>&gt;&gt;&gt; &lt;action application="bridge"<BR>&gt;&gt;&gt; data={ignore_early_media=true}sofia/internal/<A href="mailto:userB@local.pbx.com">userB@local.pbx.com</A>"/&gt;<BR>&gt;&gt;&gt; &lt;/condition&gt;<BR>&gt;&gt;&gt; &lt;/extension&gt;<BR>&gt;&gt;&gt;<BR>&gt;&gt;&gt; Is there any reason why the "ignore_early_media=true" was not set before<BR>&gt;&gt;&gt; the bridge commands as is done with the "continue_on_fail" &nbsp;and<BR>&gt;&gt;&gt; "hangup_after_bridge" variables?<BR>&gt;&gt;&gt;<BR>&gt;&gt;&gt; Example:<BR>&gt;&gt;&gt;<BR>&gt;&gt;&gt; &lt;extension name="ring_sequentially"&gt;<BR>&gt;&gt;&gt; &lt;condition field="destination_number" expression="^(2001)$"&gt;<BR>&gt;&gt;&gt; &lt;action application="set" data="continue_on_fail=true"/&gt;<BR>&gt;&gt;&gt; &lt;action application="set" data="hangup_after_bridge=true"/&gt;<BR>&gt;&gt;&gt; &lt;action application="set" data="ignore_early_media=true"/&gt;<BR>&gt;&gt;&gt; &lt;action application="bridge" data=sofia/internal/<A href="mailto:userA@local.pbx.com">userA@local.pbx.com</A>"/&gt;<BR>&gt;&gt;&gt; &lt;action application="bridge" data=sofia/internal/<A href="mailto:userB@local.pbx.com">userB@local.pbx.com</A>"/&gt;<BR>&gt;&gt;&gt; &lt;/condition&gt;<BR>&gt;&gt;&gt; &lt;/extension&gt;<BR>&gt;&gt;&gt;<BR>&gt;&gt;&gt; Thanks<BR>&gt;&gt;&gt; O<BR>&gt;&gt;&gt;<BR>&gt;&gt;&gt; _________________________________________________________________________<BR>&gt;&gt;&gt; Professional FreeSWITCH Consulting Services:<BR>&gt;&gt;&gt; <A href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</A><BR>&gt;&gt;&gt; <A href="http://www.freeswitchsolutions.com/" target=_blank>http://www.freeswitchsolutions.com</A><BR>&gt;&gt;&gt;<BR>&gt;&gt;&gt; FreeSWITCH-powered IP PBX: The CudaTel Communication Server<BR>&gt;&gt;&gt; <A href="http://www.cudatel.com/" target=_blank>http://www.cudatel.com</A><BR>&gt;&gt;&gt;<BR>&gt;&gt;&gt; Official FreeSWITCH Sites<BR>&gt;&gt;&gt; <A href="http://www.freeswitch.org/" target=_blank>http://www.freeswitch.org</A><BR>&gt;&gt;&gt; <A href="http://wiki.freeswitch.org/" target=_blank>http://wiki.freeswitch.org</A><BR>&gt;&gt;&gt; <A href="http://www.cluecon.com/" target=_blank>http://www.cluecon.com</A><BR>&gt;&gt;&gt;<BR>&gt;&gt;&gt; Join Us At ClueCon - Aug 7-9, 2012<BR>&gt;&gt;&gt;<BR>&gt;&gt;&gt; FreeSWITCH-users mailing list<BR>&gt;&gt;&gt; <A href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</A><BR>&gt;&gt;&gt; <A href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target=_blank>http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</A><BR>&gt;&gt;&gt; UNSUBSCRIBE:<A href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target=_blank>http://lists.freeswitch.org/mailman/options/freeswitch-users</A><BR>&gt;&gt;&gt; <A href="http://www.freeswitch.org/" target=_blank>http://www.freeswitch.org</A><BR>&gt;&gt; _________________________________________________________________________<BR>&gt;&gt; Professional FreeSWITCH Consulting Services:<BR>&gt;&gt; <A href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</A><BR>&gt;&gt; <A href="http://www.freeswitchsolutions.com/" target=_blank>http://www.freeswitchsolutions.com</A><BR>&gt;&gt;<BR>&gt;&gt; FreeSWITCH-powered IP PBX: The CudaTel Communication Server<BR>&gt;&gt; <A href="http://www.cudatel.com/" target=_blank>http://www.cudatel.com</A><BR>&gt;&gt;<BR>&gt;&gt; Official FreeSWITCH Sites<BR>&gt;&gt; <A href="http://www.freeswitch.org/" target=_blank>http://www.freeswitch.org</A><BR>&gt;&gt; <A href="http://wiki.freeswitch.org/" target=_blank>http://wiki.freeswitch.org</A><BR>&gt;&gt; <A href="http://www.cluecon.com/" target=_blank>http://www.cluecon.com</A><BR>&gt;&gt;<BR>&gt;&gt; Join Us At ClueCon - Aug 7-9, 2012<BR>&gt;&gt;<BR>&gt;&gt; FreeSWITCH-users mailing list<BR>&gt;&gt; <A href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</A><BR>&gt;&gt; <A href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target=_blank>http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</A><BR>&gt;&gt; UNSUBSCRIBE:<A href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target=_blank>http://lists.freeswitch.org/mailman/options/freeswitch-users</A><BR>&gt;&gt; <A href="http://www.freeswitch.org/" target=_blank>http://www.freeswitch.org</A><BR>&gt;&gt;<BR>&gt;&gt;<BR>&gt;<BR>&gt; _________________________________________________________________________<BR>&gt; Professional FreeSWITCH Consulting Services:<BR>&gt; <A href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</A><BR>&gt; <A href="http://www.freeswitchsolutions.com/" target=_blank>http://www.freeswitchsolutions.com</A><BR>&gt;<BR>&gt; FreeSWITCH-powered IP PBX: The CudaTel Communication Server<BR>&gt; <A href="http://www.cudatel.com/" target=_blank>http://www.cudatel.com</A><BR>&gt;<BR>&gt; Official FreeSWITCH Sites<BR>&gt; <A href="http://www.freeswitch.org/" target=_blank>http://www.freeswitch.org</A><BR>&gt; <A href="http://wiki.freeswitch.org/" target=_blank>http://wiki.freeswitch.org</A><BR>&gt; <A href="http://www.cluecon.com/" target=_blank>http://www.cluecon.com</A><BR>&gt;<BR>&gt; Join Us At ClueCon - Aug 7-9, 2012<BR>&gt;<BR>&gt; FreeSWITCH-users mailing list<BR>&gt; <A href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</A><BR>&gt; <A href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target=_blank>http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</A><BR>&gt; UNSUBSCRIBE:<A href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target=_blank>http://lists.freeswitch.org/mailman/options/freeswitch-users</A><BR>&gt; <A href="http://www.freeswitch.org/" target=_blank>http://www.freeswitch.org</A><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>Join Us At ClueCon - Aug 7-9, 2012<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></BLOCKQUOTE>
<STYLE>
</STYLE>

<DIV>&nbsp;</DIV>
<DIV>&nbsp;</DIV></body></html>