Great! thanks<br><br><div class="gmail_quote">On Dec 3, 2007 8:31 PM, Mark Michelson &lt;<a href="mailto:mmichelson@digium.com">mmichelson@digium.com</a>&gt; wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="Ih2E3d">Rajeev Natarajan wrote:<br>&gt; Am using perl AGI to invoke the dial command thus:<br>&gt;<br>&gt; $AGI-&gt;exec(&#39;Dial&#39;,&quot;$numtodial2|30|L($maxcall:$msgtime)|M(conn^1002)&quot;);<br><br></div>
The problem is that you have one too many pipes (&#39;|&#39;) in your Dial string.<br>Change it to this:<br><div class="Ih2E3d"><br>$AGI-&gt;exec(&#39;Dial&#39;,&quot;$numtodial2|30|L($maxcall:$msgtime)M(conn^1002)&quot;);
<br><br></div>and it should work. Notice that the pipe between the L and M options has been<br>removed.<br><br>Mark Michelson<br><br>_______________________________________________<br>--Bandwidth and Colocation Provided by 
<a href="http://www.api-digital.com--" target="_blank">http://www.api-digital.com--</a><br><br>asterisk-users mailing list<br>To UNSUBSCRIBE or update options visit:<br> &nbsp; <a href="http://lists.digium.com/mailman/listinfo/asterisk-users" target="_blank">
http://lists.digium.com/mailman/listinfo/asterisk-users</a><br></blockquote></div><br>