anonymous / gist:1355330
Created

Embed URL

HTTPS clone URL

SSH clone URL

You can clone with HTTPS or SSH.

Download Gist
View gist:1355330
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
# Postfix config
 
command_directory = /usr/sbin
daemon_directory = /usr/lib/postfix
data_directory = /var/lib/postfix
 
myhostname = boobierack.masterkorp.net
mydomain = masterkorp.net
 
myorigin = $mydomain
 
# mydestination = $mydomain
mydestination = $myhostname, localhost.$mydomain, localhost,$mydomain
 
# Only allow local relay for now
mynetworks_style = host
 
# Never relay mail to strangers
relay_domains =
 
# Send mail directly
relayhost =
 
# Little banner with the version an things
smtpd_banner = $myhostname ESMTP $mail_name ($mail_version)
 
notify_classes = 2bounce, policy, protocol, resource, software
 
# NAT optios ( not sure )
#proxy_interfaces = 78.46.107.33
 
# get alias out of /etc/aliases
alias_maps= hash:/etc/postfix/aliases
alias_database= hash:/etc/postfix/aliases
 
# Deliver mail in a maildir to $home/Maildir
home_mailbox = Mail/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Something went wrong with that request. Please try again.