Created
December 21, 2015 05:58
-
-
Save nhooyr/fa19088b9f4270c8c912 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 | |
-o content_filter=amavisfeed:[127.0.0.1]:10024 | |
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=permit_sasl_authenticated,reject | |
-o milter_macro_daemon_name=ORIGINATING | |
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 | |
policyd-spf unix - n n - - spawn user=nobody | |
argv=/usr/bin/policyd-spf | |
amavisfeed unix - - n - 2 smtp | |
-o smtp_data_done_timeout=1200 | |
-o smtp_send_xforward_command=yes | |
-o disable_dns_lookups=yes | |
-o max_use=20 | |
127.0.0.1:10025 inet n - y - - smtpd | |
-o content_filter= | |
-o smtpd_delay_reject=no | |
-o smtpd_client_restrictions=permit_mynetworks,reject | |
-o smtpd_helo_restrictions= | |
-o smtpd_sender_restrictions= | |
-o smtpd_recipient_restrictions=permit_mynetworks,reject | |
-o smtpd_data_restrictions=reject_unauth_pipelining | |
-o smtpd_end_of_data_restrictions= | |
-o mynetworks=127.0.0.0/8 | |
-o smtpd_error_sleep_time=0 | |
-o smtpd_soft_error_limit=1001 | |
-o smtpd_hard_error_limit=1000 | |
-o smtpd_client_connection_count_limit=0 | |
-o smtpd_client_connection_rate_limit=0 | |
-o receive_override_options=no_header_body_checks,no_unknown_recipient_checks,no_milters | |
-o local_header_rewrite_clients= |
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
compatibility_level = 2 | |
disable_vrfy_command = yes | |
header_size_limit = 51200 | |
inet_protocols = ipv4 | |
message_size_limit = 10485760 | |
mydomain = aubble.com | |
myhostname = mail.aubble.com | |
mynetworks_style = host | |
myorigin = $mydomain | |
policyd-spf_time_limit = 3600s | |
queue_minfree = 20971520 | |
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_helo_restrictions = reject_non_fqdn_helo_hostname, | |
reject_invalid_helo_hostname, permit | |
smtpd_recipient_limit = 100 | |
smtpd_recipient_restrictions = reject_unauth_pipelining, | |
reject_non_fqdn_recipient, reject_unknown_recipient_domain, | |
reject_unauth_destination, check_policy_service unix:private/policyd-spf, | |
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_sender_restrictions = reject_non_fqdn_sender, | |
reject_unknown_sender_domain, permit | |
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_maps = pgsql:/etc/postfix/pgsql-virtual-alias-maps.cf, | |
pgsql:/etc/postfix/pgsql-virtual-email2email.cf | |
virtual_mailbox_domains = pgsql:/etc/postfix/pgsql-virtual-mailbox-domains.cf | |
virtual_mailbox_maps = pgsql:/etc/postfix/pgsql-virtual-mailbox-maps.cf | |
virtual_transport = lmtp:unix:private/dovecot-lmtp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment