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 2018/09/19 17:39:00 UTC

[Bug 7632] New: new_dns_packet is spamming system logs

https://bz.apache.org/SpamAssassin/show_bug.cgi?id=7632

            Bug ID: 7632
           Summary: new_dns_packet is spamming system logs
           Product: Spamassassin
           Version: 3.4.2
          Hardware: PC
                OS: Windows NT
            Status: NEW
          Severity: blocker
          Priority: P2
         Component: spamassassin
          Assignee: dev@spamassassin.apache.org
          Reporter: kmcgrail@apache.org
  Target Milestone: Undefined

Alex Woick <al...@wombaz.de> reported this on list:

- The system log is spammed with messages like:

dns: new_dns_packet: domain is utf8 flagged: a3.verisigndns.com

This seems a debug or trace message mistakenly sent with info severity.

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

[Bug 7632] new_dns_packet is spamming system logs

Posted by bu...@bugzilla.spamassassin.org.
https://bz.apache.org/SpamAssassin/show_bug.cgi?id=7632

natan <na...@iq.pl> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |natan@iq.pl

--- Comment #2 from natan <na...@iq.pl> ---
Nope. because this is this same like Spamassassin-3.4.1

DnsResolver.pm

-------------- start ----------
 eval {

    if (utf8::is_utf8($domain)) {  # since Perl 5.8.1
      info("dns: new_dns_packet: domain is utf8 flagged: %s", $domain);
    }

    $domain =~ s/\.*\z/./s;

------------ stop ------------


and in Spamassassin-3.4.2

DnsResolver.pm

-------------- start ----------

  eval {

    if (utf8::is_utf8($domain)) {  # since Perl 5.8.1
      info("dns: new_dns_packet: domain is utf8 flagged: %s", $domain);
    }

    $domain =~ s/\.*\z/./s;
---------- stop -------------


Please realy test diff

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

[Bug 7632] new_dns_packet is spamming system logs

Posted by bu...@bugzilla.spamassassin.org.
https://bz.apache.org/SpamAssassin/show_bug.cgi?id=7632

Michael Orlitzky <mi...@orlitzky.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |michael@orlitzky.com

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

[Bug 7632] new_dns_packet is spamming system logs

Posted by bu...@bugzilla.spamassassin.org.
https://bz.apache.org/SpamAssassin/show_bug.cgi?id=7632

Giovanni Bechis <gi...@paclan.it> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
             Status|NEW                         |RESOLVED
                 CC|                            |giovanni@paclan.it

--- Comment #1 from Giovanni Bechis <gi...@paclan.it> ---
Changed into a debug message with commit r1843623.

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