Re: [exim] how to: aliases

Top Page
Delete this message
Reply to this message
Author: De Leeuw Guy
Date:  
To: exim-users
Subject: Re: [exim] how to: aliases
Thanks, I try tomorrow.
just one question :

list_reply_router:
driver = accept
local_parts = yourlist
senders = ${your list addresses lookup here}
transport = list_reply_transport
unseen

this send an ack to the members of the list no ?

Guy

Jakob Hirsch a écrit :

>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}
>
>
>
>
>
>