From: Michael Wang (no email)
Date: Sun Feb 04 2007 - 00:57:32 EST
sam wun wrote:
> Feb 4 12:16:59 mail01 postfix/smtpd[62143]: >>> START Recipient
> address RESTRICTIONS <<<
> Feb 4 12:16:59 mail01 postfix/smtpd[62143]: generic_checks:
> name=permit_mynetworks
> Feb 4 12:16:59 mail01 postfix/smtpd[62143]: permit_mynetworks:
> unknown 192.168.1.200
> Feb 4 12:16:59 mail01 postfix/smtpd[62143]: match_hostname: unknown
> ~? 127.0.0.1/32
> Feb 4 12:16:59 mail01 postfix/smtpd[62143]: match_hostaddr:
> 192.168.1.200 ~? 127.0.0.1/32
> Feb 4 12:16:59 mail01 postfix/smtpd[62143]: match_list_match: unknown:
> no match
> Feb 4 12:16:59 mail01 postfix/smtpd[62143]: match_list_match:
> 192.168.1.200: no match
> Feb 4 12:16:59 mail01 postfix/smtpd[62143]: generic_checks:
> name=permit_mynetworks status=0
> Feb 4 12:16:59 mail01 postfix/smtpd[62143]: generic_checks:
> name=reject_unauth_destination
> Feb 4 12:16:59 mail01 postfix/smtpd[62143]:
> reject_unauth_destination:
> Feb 4 12:16:59 mail01 postfix/smtpd[62143]: permit_auth_destination:
>
> Feb 4 12:16:59 mail01 postfix/smtpd[62143]: ctable_locate: leave
> existing entry key
> Feb 4 12:16:59 mail01 postfix/smtpd[62143]: NOQUEUE: reject: RCPT
> from unknown[192.168.1.200]: 554 5.7.1 <>: Relay
> access denied; from=<> to=<>
> proto=ESMTP helo=<[127.0.0.1]>
What does your smtpd_recipient_restrictions look like now? It looks like
you are missing permit_sasl_authenticated before
reject_unauth_destination. E.g you should have something like:
smtpd_recipient_restrictions =
[...checks...]
permit_mynetworks
[...more checks...]
permit_sasl_authenticated
[...even more checks...]
reject_unauth_destination
[...running out of checks...]
-- Michael Wang
|
|
|