On Fri, Jun 04, 2010 at 10:53:58AM -0600, Josh Cason wrote:

> So postini wants me to add there servers into the my_network list.

They are giving you the simplest solution to explain, not the best one.

> To only 
> accept e-mail from there servers. To me this is wrong. For send mail they 
> wanted the below setup. Now from what I could find. Should I not be able to 
> add the ip numbers or ranges to my access file.

main.cf:
    cidr = cidr:${config_directory}/
    indexed = ${default_database_type}:${config_directory}/
    smtpd_client_restrictions =
                # Permit local network clients
        permit_mynetworks,
                # Permit mail filtered by Postini MX proxy cloud
        check_client_access ${cidr}postini.cidr,
                # Block everyone else
        reject

    smtpd_recipient_restrictions =
                # Only local clients can relay out.
        permit_mynetworks,
                # Everyone else sends only to non-remote domains
        reject_unauth_destination
                # Special restrictions on sender or recipient that
                # apply to Postini filtered traffic. Can't use IP
                # checks here, since you only ever see Postini IPs.
        # check_recipient_access  ${indexed}rcpt-access,
        # check_sender_access  ${indexed}sender-access,

-- 
        Viktor.

Reply via email to