Guys - After implementing the main.cf on my Postfix server, I noticed
a increase in spam from before I modified my main.cf. Do you guys know
what could be causing this based on the changes I made to main.cf
below?
***OLD***
myhostname = mail.ideorlando.org
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
myorigin = ideorlando.org
mydestination = $myhostname, $mydomain, mail.$mydomain
mynetworks = $config_directory/mynetworks
mailbox_size_limit = 0
message_size_limit = 20480000
recipient_delimiter = +
inet_interfaces = all
proxy_interfaces = 216.242.104.130
home_mailbox = Maildir/
mime_header_checks = regexp:/etc/postfix/mime_header_checks
content_filter=smtp-amavis:[127.0.0.1]:10024
smtpd_recipient_restrictions =
permit_mynetworks,
permit_sasl_authenticated,
reject_unauth_destination,
reject_non_fqdn_sender,
reject_non_fqdn_recipient,
reject_unlisted_recipient,
reject_unlisted_sender,
reject_invalid_hostname,
reject_non_fqdn_hostname,
reject_rbl_client zen.spamhaus.org,
reject_rbl_client bl.spamcop.net,
reject_rbl_client safe.dnsbl.sorbs.net,
reject_invalid_hostname,
reject_non_fqdn_hostname
***NEW***
mail:~# postconf -n
alias_database = hash:/etc/aliases
alias_maps = hash:/etc/aliases
append_dot_mydomain = no
biff = no
config_directory = /etc/postfix
content_filter = smtp-amavis:[127.0.0.1]:10024
home_mailbox = Maildir/
inet_interfaces = all
mailbox_size_limit = 0
message_size_limit = 20480000
mime_header_checks = regexp:/etc/postfix/mime_header_checks
mydestination = $myhostname, $mydomain, mail.$mydomain
myhostname = mail.iamunix.org
mynetworks = $config_directory/mynetworks
myorigin = iamunix.org
readme_directory = no
recipient_delimiter = +
smtp_tls_session_cache_database = btree:${queue_directory}/smtp_scache
smtpd_banner = $myhostname ESMTP
smtpd_delay_reject = yes
smtpd_helo_required = yes
smtpd_helo_restrictions = permit_mynetworks,
reject_non_fqdn_helo_hostname, reject_invalid_helo_hostname
smtpd_recipient_restrictions = reject_unauth_pipelining,
reject_non_fqdn_recipient, reject_unknown_recipient_domain,
permit_mynetworks, reject_unauth_destination, reject_rbl_client
zen.spamhaus.org, reject_rbl_client bl.spamcop.net
smtpd_sender_restrictions = permit_mynetworks,
reject_non_fqdn_sender, reject_unknown_sender_domain
smtpd_tls_cert_file = /etc/ssl/certs/ssl-cert-snakeoil.pem
smtpd_tls_key_file = /etc/ssl/private/ssl-cert-snakeoil.key
smtpd_tls_session_cache_database = btree:${queue_directory}/smtpd_scache
smtpd_use_tls = yes
I know you prefer a postconf -n read out of the old but it's hard to
implement the change in production.