<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Tahoma
}
--></style>
</head>
<body class='hmmessage'>
Hey Guys!<br><br>I have perl script for allpage which is working fine with asterisk 1.8.2.3 version but same script same dialplan wouldn't working on asterisk-1.8.3.2&nbsp; is there anything changes ?<br><br>If i run this script from command like it works but not from asterisk dialplan.&nbsp; This script nothing but just connecting AMI interface and using Variable: SIPADDHEADER=Alert-Info: Ring Answer variable to call all phones and putting them in meetme conf room.<br><br>following is sample of script ( I am pasting half script ) <br><br># Now, we have an array (@tocall) with all valid SIP extensions.<br>while (my $sipxtn = shift @tocall) {<br>&nbsp; print "VERBOSE \"Doing $sipxtn\" 0\n";<br># Open connection to AGI<br>&nbsp; my $tn = new Net::Telnet ( Port =&gt; $mgrport,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Prompt =&gt; '/.*[\$%#&gt;] $/',<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Output_record_separator =&gt; '',<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Input_Log=&gt; "/tmp/input.log",<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Output_Log=&gt; "/tmp/output.log",<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Errmode&nbsp;&nbsp;&nbsp; =&gt; 'return', );<br><br>&nbsp; $tn-&gt;open("127.0.0.1");<br>&nbsp; $tn-&gt;waitfor('/0\n$/');<br>&nbsp; $tn-&gt;print("Action: Login\n");<br>&nbsp; $tn-&gt;print("Username: $mgruser\n");<br>&nbsp; $tn-&gt;print("Secret: $mgrpass\n");<br>&nbsp; $tn-&gt;print("Events: off\n\n");<br>&nbsp; my ($pm, $m) = $tn-&gt;waitfor('/Authentication (.+)\n\n/');<br>&nbsp; if ($m =~ /Authentication failed/) {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print "VERBOSE \"Incorrect MGRUSER or MGRPASS - unable to connect to manager interface\" 0\n";<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; exit;<br>&nbsp; }<br>&nbsp; $tn-&gt;print("Action: Originate\nChannel: SIP/$sipxtn\nContext: all-page\nPriority: 1\n");<br>&nbsp; $tn-&gt;print("Variable: SIPADDHEADER=Alert-Info: Ring Answer\n");<br>&nbsp; $tn-&gt;print("Extension: s\n");<br>&nbsp; $tn-&gt;print("CallerID: System Page\n");<br>&nbsp; $tn-&gt;print("Action: Logoff\n\n");<br>&nbsp; $tn-&gt;close;<br>}<br><br><br>-S<br><br>                                               </body>
</html>