> On Mar 19, 2021, at 3:56 PM, LoneStarKen <post...@lnstar.com> wrote: > > Maybe so. Here is output from postconf containing "discard_ehlo_keywords": > > # postconf | grep discard_ehlo_keywords > postscreen_discard_ehlo_keywords = $smtpd_discard_ehlo_keywords > smtp_discard_ehlo_keywords = > smtpd_discard_ehlo_keywords = chunking > > Looks like postscreen may somehow be the culprit. Odd that the lines in > main.cf > and master.cf for postscreen are commented out. Maybe it's getting invoked > some > other way? (Full uncommented lines of master.cf in previous response.)
No postscreen(8) has nothing to do with it, it just defaults to whatever smtpd(8) defaults to. The real issue is that you have (whether as a compiled in default, or in fact in main.cf) a non-empty setting for: smtpd_discard_ehlo_keywords = chunking if that's also reported by "postconf -d", then whoever compiled your Postfix package decided to change the upstream default. If you don't like that choice you can set an explicit empty value in main.cf and complain to your package maintainers: smtpd_discard_ehlo_keywords = -- Viktor.