Advertisement
Guest User

Untitled

a guest
Aug 28th, 2015
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. smtpd_sender_restrictions = reject_sender_login_mismatch, reject_unknown_sender_domain, reject_non_fqdn_sender, reject_unlisted_sender, permit_sasl_authenticated, reject_unauth_destination, permit_mynetworks
  2. #smtpd_helo_restrictions = permit_mynetworks, permit_sasl_authenticated, reject_non_fqdn_helo_hostname, reject_invalid_helo_hostname, check_helo_access pcre:/etc/postfix/helo_access.pcre
  3. smtpd_client_restrictions = permit_sasl_authenticated, permit_mynetworks
  4. smtpd_recipient_restrictions = permit_sasl_authenticated, reject_unauth_destination
  5.  
  6. alias@example.com -> alias@example.com --> Mail sent
  7. alias@example.com -> mailbox@example.com --> Mail sent
  8. someuser@anotherexample.com -> alias@example.com --> Mail sent
  9. someuser@anotherexample.com -> mailbox@example.com --> Mail sent
  10. mailbox@example.com -> alias@example.com --> Sender address rejected: not logged in
  11. mailbox@example.com -> someuser@anotherexample.com --> Sender address rejected: not logged in
  12. someuser@anotherexample.com -> someuser2@anotherexample.com --> Relay access denied
  13. alias@example.com -> someuser@anotherexample.com --> Relay access denied
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement