Phillip Ryker wrote:
> ok,
>
> I changed to all brackets from braces as follows:
>
> mailman_router:
> driver = accept
> require_files =
> /virtual/${domain}/mailman/lists/${lc:$local_part}/config.pck
> local_part_suffix_optional
> local_part_suffix = -bounces : -bounces+* : \
> -confirm+* : -join : -leave : \
> -owner : -request : -admin
> transport = mailman_transport
>
> and I am still getting:
>
> news@??? cannot be resolved at this time:
> failed to expand "/virtual/${domain}/mailman/lists/${lc" for
> require_files: "${lc" is not a known operator (or a } is missing in a
> variable reference)
require_files takes a list, and colon is the default list-item
separator. Try prefixing with "<;" (minus the quotes) to
change it it a semicolon.
http://exim.org/exim-html-4.62/doc/html/spec_html/ch06.html#SECTlistconstruct
- Jeremy