[Exim] Match recipients against an addresslist
Català
Dansk
Deutsch
Ελληνικά
English
Español
suomi
Français
Galego
magyar
Italiano
日本語
Nederlands
Polski
Português
Português Brasileiro
This message is part of the following thread:
the complete thread tree sorted by date
Odhiambo G. Washington at
2003-10-15 08:08
Author:
Hunte Swee
Date:
2003-10-15 07:29
UTC
To:
exim-users
Subject:
[Exim] Match recipients against an addresslist
I wanna copy all of inbound messeages sent to paticular address, but it seems very difficult.
exim.conf
...
addresslist inbound_address = user1@??? : user2@??? : user100@???
...
begin routers
...
r_copy_inbound_by_address:
driver = accept
condition = ${if match {$inbound_address} {\N$local_part@$domain\N}}
#
# how to write the condition?
#
transport = t_copy_inbound_by_address
unseen
...
It don't work. Please help me.