I don't see anything in master.cf either.  Hmmm....

Wait a second.  My lack of regex foo may be showing. :)

The content of generic_rbl_clients.pcre:

  # sutton-partners.com
  /^64\.191\.79\.245$/            public_rbls

  # mabel.ca
  /^70\.38\.108\.42$/             public_rbls

  # dsnews.com
  /^209\.172\.40\.21[157]$/       public_rbls

  # Default: check these lists.
  #
  /./                             all_rbls

If I'm not mistaken, that last expression is going to match pretty much
anything and everything.  So it looks like you're checking 64.191.79.245
against public_rbls an then with /./ checking it against all_rbls.

Comment out the /./ catch all line and see what happens.  I *think*
that's what is happening anyway.  Like I said, my regex foo is rather weak.


-- 
Stan


Michael Orlitzky put forth on 9/23/2010 8:59 PM:
> On 09/23/10 21:55, Stan Hoeppner wrote:
>> I don't see your master.cf here.  In a setup like this I'd assume you
>> may be running more than one smtpd for submission.  master.cf settings
>> can override main.cf settings.  This might explain why you're seeing
>> behavior different than what main.cf says you should be seeing.  Please
>> post master.cf.
>>
> 
> 
> ==========================================================================
> # service type  private unpriv  chroot  wakeup  maxproc command + args
> #               (yes)   (yes)   (yes)   (never) (100)
> # ==========================================================================
> smtp      inet  n       -       n       -       -       smtpd
> #submission inet n       -       n       -       -       smtpd
> #  -o smtpd_enforce_tls=yes
> #  -o smtpd_sasl_auth_enable=yes
> #  -o smtpd_client_restrictions=permit_sasl_authenticated,reject
> #smtps     inet  n       -       n       -       -       smtpd
> #  -o smtpd_tls_wrappermode=yes
> #  -o smtpd_sasl_auth_enable=yes
> #  -o smtpd_client_restrictions=permit_sasl_authenticated,reject
> #628      inet  n       -       n       -       -       qmqpd
> 
> # Don't filter locally-submitted mail through amavis.
> pickup    fifo  n       -       n       60      1       pickup
>         -o content_filter=
>       
> cleanup   unix  n       -       n       -       0       cleanup
> qmgr      fifo  n       -       n       300     1       qmgr
> #qmgr     fifo  n       -       n       300     1       oqmgr
> tlsmgr    unix  -       -       n       1000?   1       tlsmgr
> rewrite   unix  -       -       n       -       -       trivial-rewrite
> bounce    unix  -       -       n       -       0       bounce
> defer     unix  -       -       n       -       0       bounce
> trace     unix  -       -       n       -       0       bounce
> verify    unix  -       -       n       -       1       verify
> flush     unix  n       -       n       1000?   0       flush
> proxymap  unix  -       -       n       -       -       proxymap
> smtp      unix  -       -       n       -       -       smtp
> # When relaying mail as backup MX, disable fallback_relay to avoid MX loops
> relay     unix  -       -       n       -       -       smtp
>       -o fallback_relay=
> #       -o smtp_helo_timeout=5 -o smtp_connect_timeout=5
> showq     unix  n       -       n       -       -       showq
> error     unix  -       -       n       -       -       error
> retry     unix  -       -       n       -       -       error
> discard   unix  -       -       n       -       -       discard
> 
> # Disable local delivery
> #local     unix  -       n       n       -       -       local
> 
> # Disable virtual delivery too
> #virtual   unix  -       n       n       -       -       virtual
> 
> # And lmtp...
> #lmtp      unix  -       -       n       -       -       lmtp
> 
> anvil     unix  -       -       n       -       1       anvil
> scache          unix  -       -       n       -       1       scache
> 
> 
> # AMAVISD-NEW CONTENT FILTER
> amavisd-new     unix    -       -       n       -       3       smtp
>         -o smtp_data_done_timeout=1200s
>       -o smtp_send_xforward_command=yes
>       -o max_use=20
> 
> 
> # AMAVISD-NEW RE-INJECTION SMTPD INSTANCE
> 127.0.0.1:10025 inet    n       -       n       -       -       smtpd
>       -o content_filter=
>       -o smtpd_delay_reject=no
>       -o smtpd_client_restrictions=permit_mynetworks,reject
>       -o smtpd_helo_restrictions=
>       -o smtpd_sender_restrictions=
>       -o smtpd_recipient_restrictions=permit_mynetworks,reject
>       -o smtpd_data_restrictions=reject_unauth_pipelining
>       -o smtpd_end_of_data_restrictions=
>       -o smtpd_restriction_classes=
>       -o mynetworks=127.0.0.0/8
>       -o smtpd_error_sleep_time=0
>       -o smtpd_soft_error_limit=1001
>       -o smtpd_hard_error_limit=1000
>       -o smtpd_client_connection_count_limit=0
>       -o smtpd_client_connection_rate_limit=0
>       -o
> receive_override_options=no_header_body_checks,no_unknown_recipient_checks,no_milters
>       -o local_header_rewrite_clients=
> 
> 
> # Policyd SPF checking.
> policyd-spf  unix  -       n       n       -       0       spawn
>              user=policyd-spf argv=/usr/bin/policyd-spf
> 
> 
> proxywrite unix -       -       n       -       1       proxymap

Reply via email to