Advertisement
labrute974

Postfix template - SES example

Sep 26th, 2013
538
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. queue_directory = /var/spool/postfix
  2. command_directory = /usr/sbin
  3. daemon_directory = /usr/libexec/postfix
  4. data_directory = /var/lib/postfix
  5. mail_owner = postfix
  6. myhostname = example.com
  7. myorigin = $myhostname
  8. inet_interfaces = localhost
  9. inet_protocols = all
  10. mydestination = $myhostname, localhost.$mydomain, localhost
  11. unknown_local_recipient_reject_code = 550
  12. relayhost = [email-smtp.us-east-1.amazonaws.com]:587
  13. alias_maps = hash:/etc/aliases
  14. alias_database = hash:/etc/aliases
  15. debug_peer_level = 2
  16. debugger_command =
  17. PATH=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin
  18. ddd $daemon_directory/$process_name $process_id & sleep 5
  19. sendmail_path = /usr/sbin/sendmail.postfix
  20. newaliases_path = /usr/bin/newaliases.postfix
  21. mailq_path = /usr/bin/mailq.postfix
  22. setgid_group = postdrop
  23. html_directory = no
  24. manpage_directory = /usr/share/man
  25. sample_directory = /usr/share/doc/postfix-2.6.6/samples
  26. readme_directory = /usr/share/doc/postfix-2.6.6/README_FILES
  27. smtp_sasl_auth_enable = yes
  28. smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
  29. smtp_sasl_security_options = noanonymous
  30. smtp_use_tls = yes
  31. smtp_tls_CAfile = /etc/ssl/certs/ca-bundle.crt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement