Guest User

Untitled

a guest
Mar 1st, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1. ## Main.cf
  2. # See /usr/share/postfix/main.cf.dist for a commented, more complete version
  3.  
  4.  
  5. # Debian specific: Specifying a file name will cause the first
  6. # line of that file to be used as the name. The Debian default
  7. # is /etc/mailname.
  8. #myorigin = /etc/mailname
  9.  
  10. smtpd_banner = $myhostname ESMTP $mail_name (Debian/GNU)
  11. biff = no
  12.  
  13. # appending .domain is the MUA's job.
  14. append_dot_mydomain = no
  15.  
  16. # Uncomment the next line to generate "delayed mail" warnings
  17. #delay_warning_time = 4h
  18.  
  19. # TLS parameters
  20. smtpd_tls_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
  21. smtpd_tls_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
  22. smtpd_use_tls=yes
  23. smtpd_tls_session_cache_database = btree:${queue_directory}/smtpd_scache
  24. smtp_tls_session_cache_database = btree:${queue_directory}/smtp_scache
  25.  
  26. # See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for
  27. # information on enabling SSL in the smtp client.
  28.  
  29. myhostname = sp2883b.serverpronto.com
  30. alias_maps = hash:/etc/aliases
  31. alias_database = hash:/etc/aliases
  32. myorigin = /etc/mailname
  33. mydestination = sp2883b.serverpronto.com, localhost.serverpronto.com, localhost
  34. relayhost =
  35. mynetworks = 127.0.0.0/8
  36. mailbox_command = procmail -a "$EXTENSION"
  37. mailbox_size_limit = 0
  38. recipient_delimiter = +
  39. inet_interfaces = all
  40.  
  41. # Virtual Stuff
  42. virtual_mailbox_domains = hsvdrifting.com, collink.net, teamfeint.com
  43. virtual_mailbox_base = /var/mail/
  44. virtual_mailbox_maps = hash:/etc/postfix/virtual/mailboxes
  45. virtual_minimum_uid = 2001
  46. virtual_uid_maps = static:postfix
  47. virtual_gid_maps = static:postfix
  48. virtual_alias_maps = hash:/etc/postfix/virtual/aliases
  49.  
  50. ## virtual/mailboxes
  51. # HSVDrifting Mailboxes
  52. collin@hsvdrifting.com hsvdrifting.com/collin/
  53.  
  54. # TeamFeint Mailboxes
  55. collin@teamfeint.com teamfeint.com/collin/
  56.  
  57. # CollinK Mailboxes
  58. collin@collink.net collink.net/collin/
  59.  
  60. ## virtual/aliases
  61. # HSVDrifting Aliases
  62. collink@hsvdrifting.com collin@hsvdrifting.com
  63.  
  64. # TeamFeint Aliases
  65. collink@teamfeint.com collin@teamfeint.com
  66.  
  67. # CollinK Aliases
  68. collink@collink.net collin@collink.net
Add Comment
Please, Sign In to add comment