On Thu, Oct 29, 2020 at 11:43:41AM +0100, Helmut Schneider wrote: > [helmut@BSDHelmut ~]$ postfix.sh -i postfix-in -C 'postconf > smtpd_client_connection_limit_exceptions' > Getting Instances ... done > Instance 'postfix-in': smtpd_client_connection_limit_exceptions = > /usr/local/etc/postfix-in/smtpd_client_connection_limit_exceptions
You're specifying the list of IP addresses in an external file: > [helmut@BSDHelmut ~]$ cat > /usr/local/etc/postfix-in/smtpd_client_connection_limit_exceptions > # My Networks > $mynetworks That file seems to expect expansion of "$main_dot_cf_parameter" variables, which best I can tell/recall is not supported in such external files. Variable expansion in most main.cf parameters happens *before* they are used. By the time the parameter is split into tokens and some are interpreted as file names to read, ... all the expansions are already done, and no further variable expansion takes place. -- Viktor.