Good Morning All,<br><br>I&#39;m running into an issue that I&#39;m not really sure what the root cause of is.<br><br>My queue&#39;s were moving slowly yesterday, and today are not moving at all.&nbsp; The setup is:<br><br>Postfix 2.4 with MailScanner 4.74.16 running on RH5.<br>
<br>Running MailScanner in debug mode nets me the following error:<br>Can&#39;t call method &quot;print&quot; on an undefined value at /usr/lib/MailScanner/MailScanner/PFDiskStore.pm line 734<br><br>The PFDiskStore file has not been modified, but here are it&#39;s contents as well:<br>
<br><div style="text-align: center;"># Write a message to a filehandle<br>sub WriteEntireMessage {<br>&nbsp; my($this, $message, $handle) = @_;<br><br>&nbsp; # Write the whole message in RFC822 format to the filehandle.<br>&nbsp; # That means 1 CR-terminated line for every N record in the file.<br>
&nbsp; my $b= Body-&gt;new( $this-&gt;{inhdhandle} );<br>&nbsp; if ($b) {<br>&nbsp;&nbsp;&nbsp; $b-&gt;Start(1); # 1 says we want the headers as well as the body<br>&nbsp;&nbsp;&nbsp; my $line;<br>&nbsp;&nbsp;&nbsp; print STDERR &quot;WriteEntireMessage\n&quot;;<br>&nbsp;&nbsp;&nbsp; while(defined($line = $b-&gt;Next())) {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $handle-&gt; print($line . &quot;\n&quot;);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; #print STDERR &quot;BODY:&nbsp; $line\n&quot;;<br>&nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp; $b-&gt;Done();<br>&nbsp; }<br>}<br><br><div style="text-align: left;">This may not be all of the information you need, but I couldn&#39;t think of anything else to add.&nbsp; Can someone point me in the right direction?<br>
<br>Thanks in advance!<br></div></div><br>