[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
Aquest missatge és part del següent fil:
l'arbre de fils complet ordenat per data
Odhiambo G. Washington en
2003-10-15 08:08
Autor:
Hunte Swee
Data:
2003-10-15 07:29
UTC
A:
exim-users
Assumpte:
[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.