Re: [exim] how to: aliases

Αρχική Σελίδα
Delete this message
Reply to this message
Συντάκτης: Jakob Hirsch
Ημερομηνία:  
Προς: De Leeuw Guy
Υ/ο: exim-users
Αντικείμενο: 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}