Is there any postfix configuration that will allow rejected mail to be viewed or mail from a certain user to be saved despite reject/accept status for debugging? Postfix is blocking an incoming message saying

mx1 postfix/cleanup[7139]: 6F3FBE4079: reject: header From: "ts2" <t...@mail.cibtc.com.cn> from mta319.sina.net[202.108.3.196]; from=<t...@mail.cibtc.com.cn> to=<serv...@someone.com> proto=ESMTP helo=<mta319.sina.net>: 5.7.1 message content rejected

and I have that e-mail addresses listed in a whitelist as such in my main.cf. I don't see any rejection filter labelled "message content rejected" in any of my filter lists/files.

smtpd_recipient_restrictions =
 permit_mynetworks,
* check_sender_access hash:/etc/postfix/EMAIL_ADDRESS_CHECKS/mywhitelist.map,* check_recipient_access hash:/etc/postfix/EMAIL_ADDRESS_CHECKS/mywhitelist_recipients.map,
 check_sender_access hash:/etc/postfix/EMAIL_ADDRESS_CHECKS/myspamlist.map,
 reject_unauth_destination,
 check_reverse_client_hostname_access pcre:/etc/postfix/fqrdns.pcre,
check_sender_access hash:/etc/postfix/NETWORK_CHECKS/disallow_my_domain.map,
 reject_non_fqdn_sender,
 reject_non_fqdn_recipient,
 reject_unknown_reverse_client_hostname,
 reject_unverified_recipient,
 reject_unknown_sender_domain,
 check_sender_access pcre:/etc/postfix/MISC_CHECKS/ascii.pcre,
 check_recipient_access pcre:/etc/postfix/MISC_CHECKS/ascii.pcre,
 check_sender_mx_access cidr:/etc/postfix/NETWORK_CHECKS/drop.cidr,
 check_policy_service inet:127.0.0.1:10023,
 check_helo_access pcre:/etc/postfix/NETWORK_CHECKS/helo_hostnames.pcre,
 pcre:/etc/postfix/EMAIL_ADDRESS_CHECKS/to_recipients_bw.regexp
 reject_non_fqdn_helo_hostname
 reject_invalid_helo_hostname

Reply via email to