You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@spamassassin.apache.org by bu...@bugzilla.spamassassin.org on 2006/01/08 19:36:12 UTC

[Bug 4757] New: Util.pm line 711, in log files

http://issues.apache.org/SpamAssassin/show_bug.cgi?id=4757

           Summary: Util.pm line 711, <GEN206> in log files
           Product: Spamassassin
           Version: 3.1.0
          Platform: Other
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P3
         Component: spamc/spamd
        AssignedTo: dev@spamassassin.apache.org
        ReportedBy: fugazi@ananzi.co.za
                CC: fugazi@ananzi.co.za


spamd[7993]: Argument "a" isn't numeric in pack at
/usr/lib/perl5/site_perl/5.6.1/Mail/SpamAssassin/Util.pm line 711, <GEN206> line
98. 
gateway last message repeated 8 times



------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

[Bug 4757] Util.pm line 711, in log files

Posted by bu...@bugzilla.spamassassin.org.
http://issues.apache.org/SpamAssassin/show_bug.cgi?id=4757


spamassassin@dostech.ca changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |spamassassin@dostech.ca




------- Additional Comments From spamassassin@dostech.ca  2006-01-25 05:28 -------
This appears to only happen in 3.1.x.  Current-svn doesn't log anything.



------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

[Bug 4757] Util.pm line 711, in log files

Posted by bu...@bugzilla.spamassassin.org.
http://issues.apache.org/SpamAssassin/show_bug.cgi?id=4757


felicity@apache.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|Undefined                   |3.1.1




------- Additional Comments From felicity@apache.org  2006-01-20 05:35 -------
Thanks.  Based on having it only in a Received header, I'd guess that the Received header parsing is going 
awry and taking bits and passing them around as an IP.  Line 711 is:

sub my_inet_aton { unpack("N", pack("C4", split(/\./, $_[0]))) }




------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

[Bug 4757] Util.pm line 711, in log files

Posted by bu...@bugzilla.spamassassin.org.
http://issues.apache.org/SpamAssassin/show_bug.cgi?id=4757





------- Additional Comments From spamassassin@dostech.ca  2006-01-25 05:26 -------
Created an attachment (id=3344)
 --> (http://issues.apache.org/SpamAssassin/attachment.cgi?id=3344&action=view)
sample




------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

[Bug 4757] Util.pm line 711, in log files

Posted by bu...@bugzilla.spamassassin.org.
http://issues.apache.org/SpamAssassin/show_bug.cgi?id=4757


tibbs@math.uh.edu changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |tibbs@math.uh.edu




------- Additional Comments From tibbs@math.uh.edu  2006-01-20 05:24 -------
I'm seeing these as well, with varying strings appearing in the warning.  Here's
one with a conveinently distinct string:

Jan 19 20:25:57 nas02 spamd[21708]: Argument "06:33:15" isn't numeric in pack at
/usr/lib/perl5/vendor_perl/5.8.5/Mail/SpamAssassin/Util.pm line 711, <GEN341>
line 53.

I keep the headers from each rejected message; a quick grep shows that string
appearing in a Received: header:

Received: from [163.151.168.212] by smtp.flash.net;
        Fri, 20 Jan 2006 06:33:15

Hope this helps.



------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

[Bug 4757] Util.pm line 711, in log files

Posted by bu...@bugzilla.spamassassin.org.
http://issues.apache.org/SpamAssassin/show_bug.cgi?id=4757


spamassassin@dostech.ca changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |DUPLICATE




------- Additional Comments From spamassassin@dostech.ca  2006-01-26 02:02 -------


*** This bug has been marked as a duplicate of 4485 ***



------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

[Bug 4757] Util.pm line 711, in log files

Posted by bu...@bugzilla.spamassassin.org.
http://issues.apache.org/SpamAssassin/show_bug.cgi?id=4757





------- Additional Comments From ard@waikato.ac.nz  2006-01-23 03:10 -------

This causes it:

  X-Originating-IP: 70.135.189.222 via proxy [73.180.107.240]

The constant "IP_ADDRESS" containing the following pattern:

 # a pure-IPv6 address
 # don't use \b here, it hits on :'s
 (?:IPv6:    # with optional prefix
   | (?<!:)
 )
 (?:[a-f0-9]{0,4}\:){0,7} [a-f0-9]{0,4}

...which matches the string "via", or any word of 0-4 characters, and especially
loves anything containing colons.

I got about 30000 of these yesterday.

Quickest, nastiest fix is to delete it entirely from IP_ADDRESS Constants.pm.





------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.