Timothy Kesten wrote:
Se│Sep 1 08:05:55 main postfix/smtpd[14186]: fatal: non-null host address bits in "127.0.0.1/8", perhaps you should use │ Se│"127.0.0.0/8" instead
Hm this sounds like it might be something to do with something.
grep 127.0.0.1/8 /etc/postfix/* -R
to try to find where this is coming from, change it to 127.0.0.0/8 as suggested by the error, restart postfix.
Se│Sep 1 10:05:56 main postfix/master[14128]: warning: process /usr/libexec/postfix/smtpd pid 14185 exit status 1 │. .0│Sep 1 10:05:56 main postfix/master[14128]: warning: /usr/libexec/postfix/smtpd: bad command startup -- throttling │
This I have seen when a subprocess started by Postfix is dying. Perhaps one of your series of mail filtering apps is dying.
Se│Sep 1 10:05:56 main postfix/master[14128]: warning: process /usr/libexec/postfix/smtpd pid 14186 exit status 1 │ Se│Sep 1 10:05:56 main postfix/smtp[14133]: AF64F4B70B: to=root@main.jacmelaw.local, relay=localhost[127.0.0.1], delay│. .0│=55, status=deferred (host localhost[127.0.0.1] said: 450 4.4.1 Can't connect to 127.0.0.1 port 10025, (Ung\303\274lt│
Hm I bet one of your filter apps was meant to be listening on localhost:10025 but died
Se│iger Dateideskriptor) at (eval 54) line 145, <GEN8> line 55., MTA([127.0.0.1]:10025), id=14082-01 (in reply to end of │ Se│DATA command)) │ Se│Sep 1 10:05:57 main postfix/smtp[14180]: 1CB734B70A: to=tk@localhost.jacmelaw.local, orig_to=tk@localhost, relay=│ Se│localhost[127.0.0.1], delay=22, status=deferred (host localhost[127.0.0.1] said: 450 4.4.1 Can't connect to 127.0.0.1 │ ta│port 10025, (Ung\303\274ltiger Dateideskriptor) at (eval 54) line 145, <GEN8> line 632., MTA([127.0.0.1]:10025), id=0│d sk│9877-10 (in reply to end of DATA command))
There is some mentioned about: said: 450 4.4.1 Can't connect to 127.0.0.1 port 10025, (Ung\303\274lt│ Se│iger Dateideskriptor) at (eval 54) line 145, <GEN8> line 55., MTA([127.0.0.1]:10025), id=14082-01 (in reply to end of │ Se│DATA command))
That it is a 450 means that it is not a fatal error and the mail should be tried again, not the immediate bounce you see.
Try finding and fixing the 127.0.0.1/8 problem, afterwards if it didn't help check with ps -Af that all your filtering programs are active.
-Andy