Advertisement
Guest User

Untitled

a guest
Feb 2nd, 2014
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. # Filter email through Amavisd
  2. smtp-amavis unix - - n - 3 smtp
  3. -o smtp_data_done_timeout=1800
  4. -o disable_dns_lookups=yes
  5. -o smtp_send_xforward_command=yes
  6. -o max_use=20
  7. -o smtp_bind_address=127.0.0.1
  8.  
  9. # Listener to re-inject email from Amavisd into Postfix
  10. 127.0.0.1:10025 inet n - n - 100 smtpd
  11. -o cleanup_service_name=cleanup_internal
  12. -o content_filter=
  13. -o local_recipient_maps=
  14. -o relay_recipient_maps=
  15. -o smtpd_restriction_classes=
  16. -o smtpd_client_restrictions=
  17. -o smtpd_helo_restrictions=
  18. -o smtpd_sender_restrictions=
  19. -o smtpd_recipient_restrictions=permit_mynetworks,reject
  20. -o mynetworks=127.0.0.0/8
  21. -o smtpd_authorized_xforward_hosts=127.0.0.0/8
  22.  
  23. # Filter email through Wallace
  24. smtp-wallace unix - - n - 3 smtp
  25. -o smtp_data_done_timeout=1800
  26. -o disable_dns_lookups=yes
  27. -o smtp_send_xforward_command=yes
  28. -o max_use=20
  29.  
  30. # Listener to re-inject email from Wallace into Postfix
  31. 127.0.0.1:10027 inet n - n - 100 smtpd
  32. -o cleanup_service_name=cleanup_internal
  33. -o content_filter=
  34. -o local_recipient_maps=
  35. -o relay_recipient_maps=
  36. -o smtpd_restriction_classes=
  37. -o smtpd_client_restrictions=
  38. -o smtpd_helo_restrictions=
  39. -o smtpd_sender_restrictions=
  40. -o smtpd_recipient_restrictions=permit_mynetworks,reject
  41. -o mynetworks=127.0.0.0/8
  42. -o smtpd_authorized_xforward_hosts=127.0.0.0/8
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement