On 12/19/2016 3:31 AM, L.P.H. van Belle wrote: > > So when everything is setup correct the helo and hostname ares shown > in the logs,
On a normal, accepted connection, the HELO name is never shown in the logs. The client is identified by the source IP and port and verified client hostname if available. The HELO name is only logged with a rejection or error. The HELO name is recorded in the Received: header added to mail. If you want to always see the HELO in the logs, you can force a log entry with "check_client_access static:INFO" in your smtpd_recipient_restrictions. something like: # main.cf smtpd_recipient_restrictions = check_client_access static:INFO ... other checks ... -- Noel Jones