On 2010-03-25 Josh Cason wrote:
> First of all it is not just comming from postini. It once in a while
> wonders in from the outside. Not that I know how since all my mx
> records points to postini. Just random junk I suspose.

Your previous log excerpt did not include a full transaction (much less
smtpd -v logging). Also the log lines had been cropped.

Please post the full output of "grep D13DE10D8837 /var/log/mail.log".

Check, if the sending client is listed in mynetworks or in the access or
pop-before-smtp maps.
Check, if the sender address is listed in the sender_access map.
Check, if the recpient domain is listed in $relay_domains.
Check, if the recipient address is listed in $relay_recipient_maps.


Sorry about unnecessarily requesting the output of "postconf -n" again
when you already had posted it. You made so many changes from the
default config that I got the impression you had just posted your
main.cf. Perhaps you should simplify that a bit (particularly the
smtpd_*_restrictions). I'd suggest something like this:

smtpd_client_restrictions =
smtpd_helo_restrictions =
smtpd_sender_restrictions =
smtpd_recipient_restrictions =
  permit_mynetworks,
  permit_sasl_authenticated,
  check_client_access hash:/etc/postfix/pop-before-smtp,
  check_client_access hash:/etc/postfix/access,
  check_sender_access hash:/etc/postfix/sender_access,
  reject_unknown_client_hostname,
  reject_invalid_hostname,
  reject_non_fqdn_sender,
  reject_non_fqdn_recipient,
  reject_unknown_sender_domain,
  reject_unknown_recipient_domain,
  reject_unverified_sender,
  reject_unauth_destination,
  reject_rbl_client multi.uribl.com,
  reject_rbl_client dsn.rfc-ignorant.org,
  reject_rbl_client sbl-xbl.spamhaus.org,
  reject_rbl_client bl.spamcop.net,
  reject_rbl_client cbl.abuseat.org,
  reject_rbl_client ix.dnsbl.manitu.net,
  reject_rbl_client combined.rbl.msrbl.net,
  reject_rbl_client rabl.nuclearelephant.com
smtpd_data_restrictions =
  reject_unauth_pipelining,
  reject_multi_recipient_bounce,
  permit

Regards
Ansgar Wiechers
-- 
"Abstractions save us time working, but they don't save us time learning."
--Joel Spolsky

Reply via email to