> On Oct 22, 2017, at 12:11 AM, Henry <der...@gmail.com> wrote: > > root@mail:/var/log# grep EEA9AA65A2 mail.log > Oct 15 06:32:00 mail postfix/qmgr[1275]: EEA9AA65A2: > from=<zvnpozz...@brev.krcnet.com>, size=9979, nrcpt=3 (queue active)
You're not looking far enough back in the logs. This is a retry, the message did not just materialize on your system, it came in from somewhere ~9248 seconds prior to 6:32:03AM on Oct 15th. > Oct 15 06:32:03 mail postfix/lmtp[28970]: EEA9AA65A2: > to=<me.lastn...@mydomain.com>, > relay=mail.mydomain.com[/var/lib/imap/socket/lmtp], delay=9250, > delays=9248/2/0.05/0.02, dsn=4.2.2, status=deferred (host > mail.mydomain.com[/var/lib/imap/socket/lmtp] said: 452 4.2.2 Over > quota SESSIONID=<mail-28976-1508009523-1-8051276567117181905> (in > reply to RCPT TO command)) > > Above repeats 50+ times... That's because the LMTP server responds with a tempfail 452 code, rather than a hardfail 552 code. Configure it to definitively reject over-quota mail. And as mentioned by another poster, do try to avoid accepting mail you're going to bounce. If you have a quota system, propagate over-quota status into Postfix access tables in a timely manner, and of course clear it when the user is again sufficiently under quota. -- Viktor.