Advertisement
Guest User

Untitled

a guest
Oct 5th, 2015
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. root@mycomputernname.mydomain
  2.  
  3. # See man 5 aliases for format
  4. postmaster: root
  5. root: srvmon@mydomain.com
  6.  
  7. newaliases
  8.  
  9. smtp_generic_maps = hash:/etc/postfix/generic
  10.  
  11. root srvmon@mydomain.com
  12.  
  13. postmap /etc/postfix/generic
  14.  
  15. smtpd_banner = $myhostname ESMTP $mail_name
  16. biff = no
  17. append_dot_mydomain = no
  18. readme_directory = no
  19. mailbox_size_limit = 0
  20. recipient_delimiter = +
  21. inet_interfaces = loopback-only
  22. disable_vrfy_command=yes
  23.  
  24. smtpd_tls_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
  25. smtpd_tls_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
  26. smtpd_use_tls=yes
  27. smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
  28. smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache
  29. smtp_tls_note_starttls_offer = yes
  30. tls_random_source = dev:/dev/urandom
  31. smtp_use_tls=yes
  32.  
  33. myhostname = mydomain.com
  34.  
  35. myorigin = $myhostname
  36. alias_maps = hash:/etc/aliases
  37. alias_database = hash:/etc/aliases
  38. mydestination = localhost
  39. mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128
  40. relayhost = 1xx.xx.xx.xxx:25
  41. smtp_generic_maps = hash:/etc/postfix/generic
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement