Exim’de mail hareketleri ile ilgili bir kural girmemiz için komutları /etc/system_filter.exim dosyasının sonuna eklemeniz gerekir.
Tüm gelen giden maillerin kopyasını almak için
if ("$h_to:, $h_cc:, $h_bcc" does not contains "patron@domainadi.com" and "$h_to:, $h_cc:, $h_bcc" contains "@domainadi.com")
then
unseen deliver "patron@domainadi.com"
endif
if ("$sender_address" is not "patron1@domainadi.com" and "$sender_address" contains "@domainadi.com")
then
unseen deliver "patron@domainadi.com"
endif
Sadece bir mail adresi için gelen giden maillerin kopyasını almak için
if ("$h_to:, $h_cc:, $h_bcc" does not contains "patron@domainadi.com" and "$h_to:, $h_cc:, $h_bcc" contains "personel@domainadi.com")
then
unseen deliver "patron@domainadi.com"
endif
if ("$sender_address" is "personel@domainadi.com" and "$h_to:, $h_cc:, $h_bcc" does not contains "patron@domainadi.com" )
then
unseen deliver "patron@domainadi.com"
endif