Great! thanks<br><br><div class="gmail_quote">On Dec 3, 2007 8:31 PM, Mark Michelson <<a href="mailto:mmichelson@digium.com">mmichelson@digium.com</a>> 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>> Am using perl AGI to invoke the dial command thus:<br>><br>> $AGI->exec('Dial',"$numtodial2|30|L($maxcall:$msgtime)|M(conn^1002)");<br><br></div>
The problem is that you have one too many pipes ('|') in your Dial string.<br>Change it to this:<br><div class="Ih2E3d"><br>$AGI->exec('Dial',"$numtodial2|30|L($maxcall:$msgtime)M(conn^1002)");
<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> <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>