Christian Roessner: > Aug 11 14:57:11 mx0 postfix-loopback/smtpd[10241]: event: SMFIC_CONNECT; > macros: j=mx0.roessner-net.de {daemon_name}=mx0.ro > essner-net.de {client_ptr}=localhost {client_connections}=570245840 > v=Postfix 2.8.4
The client_connections macro reports some uninitialized value. This happens because the anvil daemon was not queried for the remote SMTP client connection count, as the remote SMTP client was excluded from connection count limits. Workaround: don't exclude clients from connection count limits. /etc/postfix/main.cf: smtpd_client_connection_count_limit = 1000 smtpd_client_event_limit_exceptions = Fix: report a zero connection count for clients that are excluded from connection count limits, or always query the anvil daemon when some Milter wants this attribute value. Wietse