в configure:
Код: Выделить всё
system_filter=/usr/local/etc/exim/filter.txt
Код: Выделить всё
#Exim filter
if $sender_address matches "exchange@domain.ru" and $header_subject: contain "Very Important information (example)"
then
headers remove Reply-to
headers remove From
headers remove Sender
headers remove return-path
headers add "From: billing@domain.ru"
headers add "Sender: billing@domain.ru"
headers add "Reply-to: billing@domain.ru"
headers add "return-path: billing@domain.ru"
endif
Спасибо.