You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@spamassassin.apache.org by Dave Hansen <da...@sr71.net> on 2005/04/16 02:40:23 UTC

ALL_TRUSTED from Quest DSL on 71/8 class A

debug: metadata: X-Spam-Relays-Trusted: 
      [ ip=127.0.0.1 rdns=localhost helo=ns.sr71.net
        by=blackbird.sr71.net ident= e nvfrom= intl=0 id=8AEBFFC749 
        auth= ]
      [ ip=71.34.178.107 rdns=71-34-178-107.desm.qwest.net
        helo=71-34-178-107.desm.qwe st.net by=ns.sr71.net 
        ident= envfrom= intl=0 id=A40561AF37 auth= ]

See the originating IP? 71.34.178.107

check out: Constants.pm
        use constant IP_IN_RESERVED_RANGE => qr{^(?:
        # reserved/multicast ranges
        ...
          7[1-9]|                          # 071-079/8:        IANA Reserved
        
This causes it to hit the ALL_TRUSTED rule.

Whois information for that IP seems to indicate that it is, indeed owned
by Quest.  Does that IP_IN_RESERVED_RANGE variable need to get updated?

-- Dave


Re: ALL_TRUSTED from Quest DSL on 71/8 class A

Posted by "Daryl C. W. O'Shea" <sp...@dostech.ca>.
Dave Hansen wrote:
> debug: metadata: X-Spam-Relays-Trusted: 
>       [ ip=127.0.0.1 rdns=localhost helo=ns.sr71.net
>         by=blackbird.sr71.net ident= e nvfrom= intl=0 id=8AEBFFC749 
>         auth= ]
>       [ ip=71.34.178.107 rdns=71-34-178-107.desm.qwest.net
>         helo=71-34-178-107.desm.qwe st.net by=ns.sr71.net 
>         ident= envfrom= intl=0 id=A40561AF37 auth= ]
> 
> See the originating IP? 71.34.178.107
> 
> check out: Constants.pm
>         use constant IP_IN_RESERVED_RANGE => qr{^(?:
>         # reserved/multicast ranges
>         ...
>           7[1-9]|                          # 071-079/8:        IANA Reserved
>         
> This causes it to hit the ALL_TRUSTED rule.
> 
> Whois information for that IP seems to indicate that it is, indeed owned
> by Quest.  Does that IP_IN_RESERVED_RANGE variable need to get updated?
> 
> -- Dave

This range was recently assigned.  This has been fixed in 3.1.

Daryl