Tom Kistner wrote:
> Hi,
>
> Some of you may have seen that I have written an exim-based mailing list
> manager that I use for my exiscanusers mailing list.
>
> I have now wrapped it up and wrote an installation manual. It is at
>
> http://duncanthrax.net/exilist-distro/
Looks nice, I wanted to ask you about it anyway ;)
Maybe a small enhancement:
# exilist bounce router
exilist_bounce_router:
driver = accept
verify_sender = false
condition = ${if match \
{$local_part}{^[0-9]+_return_[0-9]+\\.[A-Za-z0-9-]+\$}{1}{0}}
transport = exilist_bounce_transport
I think it's nicer to make this
# exilist bounce router
exilist_bounce_router:
driver = accept
verify_sender = false
local_parts = \N^[0-9]+_return_[0-9]+\.[A-Za-z0-9-]+$\N
transport = exilist_bounce_transport
Nico