Hi _Chris!
> Exim configuration error in line 332:
> error in ACL: unknown ACL condition/modifier in "{exists
> {/mail-data/mailman/lists/$1/config.pck}}} {yes}{no}}"
> # Accept bounces to lists even if callbacks or other checks would fail
> warn message = X-WhitelistedRCPT-nohdrfromcallback: Yes
> condition = \
> ${if and {{match{$local_part}{(.*)-bounces\+.*}}
> {exists {MAILMAN_HOME/lists/$1/config.pck}}} \
> {yes}{no}}
> {yes}{no}}
If you haven't found it already, there is a continuation character '\'
missing at the end of one line, and the last line is repeated.
condition = \
${if and {{match{$local_part}{(.*)-bounces\+.*}} \
{exists {MAILMAN_HOME/lists/$1/config.pck}}} \
{yes}{no}}
Same for the other ACL statement.
Andy