This is a discussion on SASL AUTH with TLS relay problem within the mailing.postfix.users forums, part of the Mail Servers and Related category; I am having a problem with the configuration of postfix. I set up SMTP AUTH with tls. It relays good ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
I am having a problem with the configuration of postfix. I set up SMTP AUTH
with tls. It relays good and sends mail perfect as long as the sender is located in one of the networks in the mynetworks file example 192.168.0.54. However, as soon as I try to send an e-mail from another network even though it authenticates good it rejects the e-mail with a relaying denied message. I know I'm missing something but can't figure out what it is. In the smtpd_recipient_restriction I do have permit_sasl_authenticated however, that does not seem to make a difference. Here is my configurations currently. I would appreciate it very much if anyone could give me some direction. inet_interfaces = 192.168.0.69 smtpd_sasl_auth_enable = yes broken_sasl_auth_clients = yes #TLS CONFIG smtpd_use_tls = yes smtpd_tls_key_file = /etc/postfix/mailkey.pem smtpd_tls_cert_file= /etc/postfix/mail_signed_cert.pem smtpd_tls_CAfile = /etc/postfix/cacert.pem smtpd_recipient_restriction = permit_mynetworks, permit_sasl_authenticated, check_relay_domains, permit mynetworks = $config_directory/mynetworks 192.168.0.0/24 127.0.0.0/8 |