For use in exim 4.63/FC3
edit exim.conf
#########################################
# ACL that is used after the DATA command
#########################################
check_message:
...
# test reject spam at high scores (> 15)
# place before accept from acl_check_data
drop message = This message is denied by policy : $spam_score spam points
spam = nobody:true
condition = ${if >{$spam_score_int}{150}{1}{0}}
...
accept
###################
This would reject spam more than 15 spamassassin points.
edit exim.conf
#########################################
# ACL that is used after the DATA command
#########################################
check_message:
...
# test reject spam at high scores (> 15)
# place before accept from acl_check_data
drop message = This message is denied by policy : $spam_score spam points
spam = nobody:true
condition = ${if >{$spam_score_int}{150}{1}{0}}
...
accept
###################
This would reject spam more than 15 spamassassin points.