Exim - disable spam detection for local domains

i have the following problem:

some of our mailserver-users send messages which are labeled with [SPAM] from our exim mailserver.
now i will try to disable this spam detection for all our local domains at sending mails.

so i tried to edit the acl configuration:

actual configuration:
Code:
warn message = X-Spam-Score: $spam_score ($spam_bar)
spam = nobody:true
 
warn message = X-New-Subject: [SPAM] $h_subject
spam = nobody
so i tried...
Code:
warn message = X-Spam-Score: $spam_score ($spam_bar)
domains = !+local_domains
spam = nobody:true
 
warn message = X-New-Subject: [SPAM] $h_subject
domains = !+local_domains
spam = nobody
but it wont work.
has anyone an idea?

thanx for your help.

 

 

 

 

Top