<p>The num+0 thing is to &quot;trick&quot; perl to always treat imthe scalar as a number.</p>
<p>I have close to no free time to look at this, but ... will try as best as I can to check this over.</p>
<p>Cheers<br>
-- <br>
-- Glenn</p>
<div class="gmail_quote">Den 17 okt 2011 18:37 skrev &quot;--[ UxBoD ]--&quot; &lt;<a href="mailto:uxbod@splatnix.net">uxbod@splatnix.net</a>&gt;:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
&gt;From what I can see it is a trivial fix. In PFDiskStore.pm around line 359 it has:<br>
<br>
  printf $Tf &quot;%15ld %15ld %15ld&quot;, $HeaderLength, $HeaderStartPos, $recipcounter;<br>
  printf $Tf &quot; %15ld&quot;, $message-&gt;{PostfixQmgrOpts}<br>
    if $message-&gt;{PostfixQmgrOpts} ne &quot;&quot;;<br>
  seek $Tf, 0, 0;<br>
<br>
I believe this needs to become:<br>
<br>
  printf $Tf &quot;%15ld %15ld %15ld&quot;, $HeaderLength, $HeaderStartPos, $recipcounter;<br>
  printf $Tf &quot; %15ld&quot;, $message-&gt;{PostfixQmgrOpts}<br>
    if $message-&gt;{PostfixQmgrOpts} ne &quot;&quot;;<br>
  printf $Tf &quot; %15ld&quot;, $HeaderLength;<br>
  seek $Tf, 0, 0;<br>
<br>
This then sets the actual content length in field 5 of the queue file. I am not sure why the line above is there though as Postfix.pm always appears to set PostfixQmgrOpts to at least zero:<br>
<br>
    if (defined $numbers[3]) {<br>
      $MailScanner::Postfix::DataStructure = 1;<br>
      $message-&gt;{PostfixQmgrOpts} = $numbers[3]+0;<br>
    }<br>
<br>
I have tested this and it appears to work fine. Thoughts Jules or anybody else ?<br>
--<br>
Thanks, Phil<br>
<br>
----- Original Message -----<br>
<br>
&gt; Hello,<br>
<br>
&gt; I am working on the MailScanner and ZendTo integration and have hit<br>
&gt; the same problem that Markus had with respect to setting the true<br>
&gt; message size when the content has been changed. Within<br>
&gt; PFDiskStore.pm I see that the message size is being written plus the<br>
&gt; data offset:<br>
<br>
&gt; printf $Tf &quot;%15ld %15ld %15ld&quot;, $HeaderLength, $HeaderStartPos,<br>
&gt; $recipcounter;<br>
&gt; printf $Tf &quot; %15ld&quot;, $message-&gt;{PostfixQmgrOpts}<br>
&gt; if $message-&gt;{PostfixQmgrOpts} ne &quot;&quot;;<br>
&gt; seek $Tf, 0, 0;<br>
<br>
&gt; now to check these figures I stopped MailScanner, and only started up<br>
&gt; Postfix, and then sent a message with an attachment. If the queue<br>
&gt; file one saw:<br>
<br>
&gt; *** ENVELOPE RECORDS 247A13580015 ***<br>
&gt; message_size: <a href="tel:21966%20613%201%200" value="+12196661310">21966 613 1 0</a> 21966<br>
&gt; message_arrival_time: Mon Oct 17 10:30:47 2011<br>
&gt; create_time: Mon Oct 17 10:30:47 2011<br>
&gt; named_attribute: rewrite_context=local<br>
<br>
&gt; and after the file has been stripped:<br>
<br>
&gt; *** ENVELOPE RECORDS 30E7C358026F ***<br>
&gt; message_size: 2283 613 1 0 21966<br>
&gt; message_arrival_time: Mon Oct 17 10:33:23 2011<br>
&gt; create_time: Mon Oct 17 10:33:23 2011<br>
&gt; named_attribute: rewrite_context=local<br>
<br>
&gt; Note that the first field in message_size has been correctly reduced.<br>
&gt; When this message then hits the remote MTA it is still being<br>
&gt; rejected due to the size, even though we have stripped the<br>
&gt; attachment. I believe the problem is that the final field in<br>
&gt; message_size part of the envelope is not being updated as-well. Any<br>
&gt; ideas what the field is ? I am struggling to find it in the Postfix<br>
&gt; source code; and on checking Postfix.pm I see the following code has<br>
&gt; been hashed out:<br>
<br>
&gt; # If $5 is set then we have a new data structure in the file<br>
&gt; $MailScanner::Postfix::DataStructure = 0;<br>
&gt; #if ($5 ne &quot;&quot;) {<br>
&gt; # $MailScanner::Postfix::DataStructure = 1;<br>
&gt; # $message-&gt;{PostfixQmgrOpts} = $5+0;<br>
&gt; #}<br>
<br>
&gt; Any thoughts please ?<br>
&gt; --<br>
&gt; Thanks, Phil<br>
<br>
&gt; --<br>
&gt; MailScanner mailing list<br>
&gt; <a href="mailto:mailscanner@lists.mailscanner.info">mailscanner@lists.mailscanner.info</a><br>
&gt; <a href="http://lists.mailscanner.info/mailman/listinfo/mailscanner" target="_blank">http://lists.mailscanner.info/mailman/listinfo/mailscanner</a><br>
<br>
&gt; Before posting, read <a href="http://wiki.mailscanner.info/posting" target="_blank">http://wiki.mailscanner.info/posting</a><br>
<br>
&gt; Support MailScanner development - buy the book off the website!<br>
--<br>
MailScanner mailing list<br>
<a href="mailto:mailscanner@lists.mailscanner.info">mailscanner@lists.mailscanner.info</a><br>
<a href="http://lists.mailscanner.info/mailman/listinfo/mailscanner" target="_blank">http://lists.mailscanner.info/mailman/listinfo/mailscanner</a><br>
<br>
Before posting, read <a href="http://wiki.mailscanner.info/posting" target="_blank">http://wiki.mailscanner.info/posting</a><br>
<br>
Support MailScanner development - buy the book off the website!<br>
</blockquote></div>