<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Thanks Brian, I had started looking at this, and I think I was heading
in the direction you describe - now I can pursue that with a bit more
confidence!<br>
<br>
So even if we do not originate the call, the last dialled extension
would still be valid as it would be set up during the bridging process?
<br>
(I think I need another method to collect the UUID of the leg of the
bridge that initiated the call - or just the UUID that is active for
that extension)<br>
<br>
Scott<br>
<br>
Brian West wrote:
<blockquote
 cite="mid:C935997D-0794-4C59-B7EC-9F57E7AFF1E0@freeswitch.org"
 type="cite">
  <pre wrap="">You would use a combination of storing the UUID... in the internal  
db... see insert in the default dialplan... then a code to get that  
out of the db... then run intercept on it using the value returned  
from the db.  See default config's

Store it something like this:

&lt;action application="db" data="insert/last_dial_ext/$ 
{dialed_extension}/${uuid}"/&gt;


Then use it something like this:

     &lt;extension name="intercept-ext"&gt;
       &lt;condition field="destination_number" expression="^\*\*(\d+)$"&gt;
         &lt;action application="answer"/&gt;
         &lt;action application="intercept" data="${db(select/ 
last_dial_ext/$1)}"/&gt;
         &lt;action application="sleep" data="2000"/&gt;
       &lt;/condition&gt;
     &lt;/extension&gt;




/b

On Jan 15, 2009, at 7:36 PM, Scott Ellis wrote:

  </pre>
  <blockquote type="cite">
    <pre wrap="">I would like to be able to place a call on hold on one extension, walk
to another phone and then dial a sequence (like the barge sequence)  
say
55+extension number and have the call taken off hold and transferred  
to
the extension I am on.

Has anyone done this? (Before I try and work it out for myself!)

Scott
    </pre>
  </blockquote>
  <pre wrap=""><!---->

_______________________________________________
Freeswitch-users mailing list
<a class="moz-txt-link-abbreviated" href="mailto:Freeswitch-users@lists.freeswitch.org">Freeswitch-users@lists.freeswitch.org</a>
<a class="moz-txt-link-freetext" href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a>
UNSUBSCRIBE:<a class="moz-txt-link-freetext" href="http://lists.freeswitch.org/mailman/options/freeswitch-users">http://lists.freeswitch.org/mailman/options/freeswitch-users</a>
<a class="moz-txt-link-freetext" href="http://www.freeswitch.org">http://www.freeswitch.org</a>

  </pre>
</blockquote>
</body>
</html>