Created
December 21, 2015 18:26
-
-
Save nhooyr/5988e5783225d981ccdc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
smtp inet n - n - - smtpd | |
submission inet n - n - - smtpd | |
-o syslog_name=postfix/submission | |
-o smtpd_tls_security_level=encrypt | |
-o smtpd_sasl_auth_enable=yes | |
-o smtpd_recipient_restrictions=reject_non_fqdn_sender,reject_unknown_sender_domain,reject_non_fqdn_recipient,reject_unknown_recipient_domain,reject_unauth_pipelining,permit_sasl_authenticated,reject | |
pickup unix n - n 60 1 pickup | |
cleanup unix n - n - 0 cleanup | |
qmgr unix n - n 300 1 qmgr | |
tlsmgr unix - - n 1000? 1 tlsmgr | |
rewrite unix - - n - - trivial-rewrite | |
bounce unix - - n - 0 bounce | |
defer unix - - n - 0 bounce | |
trace unix - - n - 0 bounce | |
verify unix - - n - 1 verify | |
flush unix n - n 1000? 0 flush | |
proxymap unix - - n - - proxymap | |
proxywrite unix - - n - 1 proxymap | |
smtp unix - - n - - smtp | |
relay unix - - n - - smtp | |
showq unix n - n - - showq | |
error unix - - n - - error | |
retry unix - - n - - error | |
discard unix - - n - - discard | |
local unix - n n - - local | |
virtual unix - n n - - virtual | |
lmtp unix - - n - - lmtp | |
anvil unix - - n - 1 anvil | |
scache unix - - n - 1 scache | |
amavis-forward unix - - n - 2 lmtp | |
-o lmtp_data_done_timeout=1200 | |
-o lmtp_send_xforward_command=yes | |
-o disable_dns_lookups=yes | |
-o max_use=2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias_database = | |
alias_maps = | |
compatibility_level = 2 | |
disable_vrfy_command = yes | |
enable_long_queue_ids = yes | |
header_size_limit = 51200 | |
inet_protocols = ipv4 | |
local_recipient_maps = | |
local_transport = error:local mail delivery is disabled | |
message_size_limit = 10485760 | |
mydestination = | |
mydomain = aubble.com | |
myhostname = mail.$mydomain | |
mynetworks_style = host | |
myorigin = $mydomain | |
queue_minfree = 20971520 | |
relay_domains = pgsql:/etc/postfix/pgsql-relay-domains.cf | |
relay_recipient_maps = pgsql:/etc/postfix/pgsql-relay-recipient-maps.cf | |
relay_transport = amavis-forward:unix:amavis/amavisd.sock | |
smtp_tls_security_level = may | |
smtpd_client_connection_count_limit = 10 | |
smtpd_client_connection_rate_limit = 30 | |
smtpd_data_restrictions = reject_unauth_pipelining | |
smtpd_helo_required = yes | |
smtpd_recipient_limit = 100 | |
smtpd_recipient_restrictions = reject_non_fqdn_helo_hostname, | |
reject_invalid_helo_hostname, reject_non_fqdn_sender, | |
reject_unknown_sender_domain, reject_unauth_pipelining, | |
reject_non_fqdn_recipient, reject_unknown_recipient_domain, | |
reject_unauth_destination, reject_rbl_client zen.spamhaus.org, | |
reject_rbl_client bl.spamcop.net reject_rbl_client b.barracudacentral.org, | |
permit | |
smtpd_sasl_path = private/auth | |
smtpd_sasl_type = dovecot | |
smtpd_tls_auth_only = yes | |
smtpd_tls_cert_file = /usr/local/etc/dotfiles/certs/mail.aubble.com/cert.pem | |
smtpd_tls_dh1024_param_file = /etc/postfix/dhparams.pem | |
smtpd_tls_key_file = /usr/local/etc/dotfiles/certs/mail.aubble.com/key.pem | |
smtpd_tls_security_level = may | |
strict_rfc821_envelopes = yes | |
tls_ssl_options = NO_COMPRESSION | |
virtual_alias_domains = | |
virtual_alias_maps = pgsql:/etc/postfix/pgsql-virtual-alias-maps.cf, | |
pgsql:/etc/postfix/pgsql-virtual-email2email.cf | |
virtual_mailbox_domains = | |
virtual_mailbox_maps = | |
virtual_transport = error:virtual mail delivery is disabled |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment