<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/3.30.3">
</HEAD>
<BODY>
Thanks for all the suggestions, will not be able to test until tomorrow, will post results then<BR>
<BR>
regards, John<BR>
<BR>
On Tue, 2011-01-25 at 17:26 +0100, David Ponzone wrote:<BR>
<BLOCKQUOTE TYPE=CITE>
    Send an audio ringback to them.
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    <BR>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    <FONT COLOR="#1c00ff">David Ponzone &nbsp;</FONT><FONT COLOR="#000000">Direction Technique</FONT>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    email: <A HREF="mailto:david.ponzone@ipeva.fr">david.ponzone@ipeva.fr</A>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    tel: &nbsp; &nbsp; &nbsp;01 74 03 18 97
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    gsm: &nbsp; 06 66 98 76 34
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    <BR>
    <BR>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    <FONT COLOR="#1c00ff">Service Client&nbsp;</FONT><FONT COLOR="#ff0000">IP</FONT><FONT COLOR="#1c00ff">eva</FONT>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    <FONT COLOR="#1c00ff">tel: &nbsp; &nbsp; &nbsp;0811 46 26 26</FONT>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    <FONT COLOR="#1c00ff"><A HREF="BLOCKED::http://www.ipeva.fr/">www.ipeva.fr</A>&nbsp; -&nbsp; &nbsp;<A HREF="BLOCKED::http://www.ipeva-studio.com/">www.ipeva-studio.com</A></FONT>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    <BR>
    <BR>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    <I><FONT COLOR="#1c00ff">Ce message et toutes les pi&#232;ces jointes sont confidentiels et &#233;tablis &#224; l'intention exclusive de ses destinataires. Toute utilisation ou diffusion non autoris&#233;e est interdite. Tout message &#233;lectronique est susceptible d'alt&#233;ration.&nbsp;</FONT></I><I><FONT COLOR="#1c00ff"><B>IPeva</B></FONT></I><I><FONT COLOR="#1c00ff">&nbsp;d&#233;cline toute responsabilit&#233; au titre de ce message s'il a &#233;t&#233; alt&#233;r&#233;, d&#233;form&#233; ou falsifi&#233;. Si vous n'&#234;tes pas destinataire de ce message, merci de le d&#233;truire imm&#233;diatement et d'avertir l'exp&#233;diteur.</FONT></I>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    <BR>
    <BR>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    <BR>
    <BR>
    <BR>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    <BR>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    Le 25/01/2011 &#224; 16:22, John Carpenter a &#233;crit :
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    <BR>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    <BLOCKQUOTE TYPE=CITE>
        Hi, I have now traced the problem down to the SIP tunk provider having a timeout of 10 seconds. If they receive no signalling or RTP for 10 seconds they drop the call. If I had known this earlier I would not have signed up with them but its too late now.<BR>
        So the question is how do I get FS to send RTP back to SIP trunk when a call is being bridged, it currently dies if extension not answered in 10 seconds. Have tried proxy_media and bypass_media without any success. My extensions are remote and using NAT.<BR>
        <BR>
        regards, John<BR>
        <BR>
        On Mon, 2011-01-24 at 12:28 -0800, Michael Collins wrote:<BR>
        <BLOCKQUOTE TYPE=CITE>
            Can you pastebin a debug log with a siptrace? Also, pastebin your dialplan. I think we can help with this but I want to see what you're doing before I suggest anything.<BR>
            <BR>
            <BR>
            -MC<BR>
            <BR>
            On Fri, Jan 21, 2011 at 5:57 PM, John Carpenter &lt;<A HREF="mailto:john@247-talk.co.uk">john@247-talk.co.uk</A>&gt; wrote:<BR>
            <BLOCKQUOTE>
                Hi, I am trying to setup a very simple IVR using LUA. Call arrives from a DID SIP trunk and is answered and message is played ok, after a particular digit is pressed it bridges the call to an extension which is remotely connected. It works but after 2 rings the call to the extension is dropped with a SIP message &quot;BYE&quot; from DID provider. If I just route the call directly to the extension (no IVR) it works fine. It seems like the DID hangs up when the call is bridged to the extension. Have tried same thing using the XML IVR Engine and get exactly the same result. The IVR script is below<BR>
                <BR>
                pathsep = '/'<BR>
                session:setAutoHangup(false);<BR>
                session:answer()<BR>
                prompt = &quot;ivr&quot; .. pathsep .. &quot;247talk.wav&quot;<BR>
                invalid = &quot;ivr&quot; .. pathsep .. &quot;ivr-that_was_an_invalid_entry.wav&quot;<BR>
                freeswitch.consoleLog(&quot;INFO&quot;, &quot;Prompt file is '&quot; .. prompt .. &quot;'\n&quot;)<BR>
                continue = true<BR>
                <BR>
                while( session:ready() == true and continue == true) do<BR>
                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; digits = session:playAndGetDigits(1,1,3,7000,&quot;#&quot;, prompt, invalid, &quot;<A HREF="smb://d+">\\d+</A>&quot;)<BR>
                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (digits == &quot;1&quot;) then<BR>
                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; continue = false<BR>
                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; session:execute(&quot;bridge&quot;,&quot;sofia/external/2476%91.xxx.xx.xx&quot;)<BR>
                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; end<BR>
                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (digits == &quot;2&quot;) then<BR>
                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; session:execute(&quot;bridge&quot;,&quot;sofia/external/2475%91.xxx.xx.xx&quot;)<BR>
                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; end<BR>
                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (digits == &quot;3&quot;) then<BR>
                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; continue = false<BR>
                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; session:execute(&quot;bridge&quot;,&quot;sofia/external/2475%91.xxx.xx.xx&quot;)<BR>
                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; end<BR>
                end<BR>
                <BR>
                session:hangup()<BR>
                <BR>
                Any help with this greatly appreciated it is driving me nuts.<BR>
                <BR>
                regards, John Carpenter <BR>
                <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">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</A><BR>
                UNSUBSCRIBE:<A HREF="http://lists.freeswitch.org/mailman/options/freeswitch-users">http://lists.freeswitch.org/mailman/options/freeswitch-users</A><BR>
                <A HREF="http://www.freeswitch.org/">http://www.freeswitch.org</A><BR>
                <BR>
            </BLOCKQUOTE>
            <BR>
            <BR>
<PRE>
_______________________________________________
FreeSWITCH-users mailing list
<A HREF="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</A>
<A HREF="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</A>
UNSUBSCRIBE:<A HREF="http://lists.freeswitch.org/mailman/options/freeswitch-users">http://lists.freeswitch.org/mailman/options/freeswitch-users</A>
<A HREF="http://www.freeswitch.org/">http://www.freeswitch.org</A>
</PRE>
        </BLOCKQUOTE>
        <BR>
        <BR>
    </BLOCKQUOTE>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    <BLOCKQUOTE TYPE=CITE>
        _______________________________________________<BR>
        FreeSWITCH-users mailing list<BR>
        <A HREF="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</A><BR>
        http://lists.freeswitch.org/mailman/listinfo/freeswitch-users<BR>
        UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users<BR>
        http://www.freeswitch.org
    </BLOCKQUOTE>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
    <BR>
    <BR>
</BLOCKQUOTE>
<BLOCKQUOTE TYPE=CITE>
<PRE>
_______________________________________________
FreeSWITCH-users mailing list
<A HREF="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</A>
<A HREF="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</A>
UNSUBSCRIBE:<A HREF="http://lists.freeswitch.org/mailman/options/freeswitch-users">http://lists.freeswitch.org/mailman/options/freeswitch-users</A>
<A HREF="http://www.freeswitch.org">http://www.freeswitch.org</A>
</PRE>
</BLOCKQUOTE>
<BR>
</BODY>
</HTML>