Jason Hirsh wrote:
> Based on above changes i have ths now
>
> postgrey   651  0.0  2.4 14384 12028  ??  Is    3:24PM   0:00.04
> /usr/local/sbin/postgrey --pidfile=/var/run/postgrey.pid
> --inet=127.0.0.1:10023 -d --user=postgrey --group=postgrey
> --dbdir=/var/db/postgrey -verbose (perl5.8.9)
>
> postconf -n
>
>
> smtpd_banner = Hi This is the Ocean Window - BV

SASL is disabled with this banner.  Use the default as no one will read it.

> smtpd_recipient_restrictions = permit_sasl_authenticated,
> check_relay_domains,reject_rbl_client
> zen.spamhaus.org,reject_rbl_client bl.spamcop.net,reject_rbl_client,
> check_policy_service inet:127.0.0.1:10023
Let's reformat the recipient restrictions for reading:
smtpd_recipient_restrictions =
    permit_sasl_authenticated,
    check_relay_domains,
    reject_rbl_client zen.spamhaus.org,
    reject_rbl_client bl.spamcop.net,
    reject_rbl_client, check_policy_service
    inet:127.0.0.1:10023

See the error? To Postfix, a comma is whitespace when placed in
restriction lists.

Reply via email to