Guest User

Untitled

a guest
Oct 30th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. # See /usr/share/postfix/main.cf.dist for a commented, more complete version
  2.  
  3.  
  4. # Debian specific: Specifying a file name will cause the first
  5. # line of that file to be used as the name. The Debian default
  6. # is /etc/mailname.
  7. #myorigin = /etc/mailname
  8.  
  9. smtpd_banner = $myhostname ESMTP $mail_name (Debian/GNU)
  10. biff = no
  11.  
  12. # appending .domain is the MUA's job.
  13. append_dot_mydomain = no
  14.  
  15. # Uncomment the next line to generate "delayed mail" warnings
  16. #delay_warning_time = 4h
  17.  
  18. readme_directory = no
  19.  
  20. smtpd_sasl_auth_enable = yes
  21. smtpd_sasl_path = private/auth
  22. broken_sasl_auth_clients = yes
  23. smtpd_sasl_security_options = noanonymous
  24. # information on enabling SSL in the smtp client.
  25.  
  26. myhostname = arcane.netaddict.co.za
  27. alias_maps = hash:/etc/aliases
  28. alias_database = hash:/etc/aliases
  29. myorigin = /etc/mailname
  30. mydestination =
  31. relayhost =
  32. mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128
  33. mailbox_size_limit = 0
  34. recipient_delimiter = +
  35. inet_interfaces = all
  36.  
  37. virtual_alias_domains =
  38. virtual_alias_maps = proxy:mysql:/etc/postfix/mysql-forwards.cf, mysql:/etc/postfix/mysql-email.cf
  39. virtual_mailbox_domains = proxy:mysql:/etc/postfix/mysql-domains.cf
  40. virtual_mailbox_maps = proxy:mysql:/etc/postfix/mysql-mailboxes.cf
  41. virtual_mailbox_base = /home/vmail
  42. virtual_uid_maps = static:5000
  43. virtual_gid_maps = static:5000
  44.  
  45. proxy_read_maps = $local_recipient_maps $mydestination $virtual_alias_maps $virtual_alias_domains $virtual_mailbox_maps $virtual_mailbox_domains $relay_recipient_maps $relay_domains $canonical_maps $sender_canonical_maps $recipient_canonical_maps $relocated_maps $transport_maps $mynetworks $virtual_mailbox_limit_maps
Add Comment
Please, Sign In to add comment