Good Morning All,<br><br>I'm running into an issue that I'm not really sure what the root cause of is.<br><br>My queue's were moving slowly yesterday, and today are not moving at all. 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't call method "print" 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's contents as well:<br>
<br><div style="text-align: center;"># Write a message to a filehandle<br>sub WriteEntireMessage {<br> my($this, $message, $handle) = @_;<br><br> # Write the whole message in RFC822 format to the filehandle.<br> # That means 1 CR-terminated line for every N record in the file.<br>
my $b= Body->new( $this->{inhdhandle} );<br> if ($b) {<br> $b->Start(1); # 1 says we want the headers as well as the body<br> my $line;<br> print STDERR "WriteEntireMessage\n";<br> while(defined($line = $b->Next())) {<br>
$handle-> print($line . "\n");<br> #print STDERR "BODY: $line\n";<br> }<br> $b->Done();<br> }<br>}<br><br><div style="text-align: left;">This may not be all of the information you need, but I couldn't think of anything else to add. Can someone point me in the right direction?<br>
<br>Thanks in advance!<br></div></div><br>