Autor: Jakob Hirsch Datum: To: De Leeuw Guy CC: exim-users Betreff: Re: [exim] how to: aliases
De Leeuw Guy wrote:
> But the content of our aliased list can change at any time, for this
> reasons, I try to send an mail to the sender that content all items
> availables in the alias.
As Magnus wrote, you can do it with an autoreply router (before your
redirect router).
I didn't think much about it, but something like this could work:
list_reply_router:
driver = accept
local_parts = yourlist
senders = ${your list addresses lookup here}
transport = list_reply_transport
unseen
...
list_reply_transport:
driver = autoreply
subject = List members
to = $sender_address
from = list-administrator@???
text = List members are: ${your list addresses lookup here}