https://github.com/wikimedia/operations-puppet
Raw File
Tip revision: f8b741c6b549bbe4dee172a29bd06426ecae6ad4 authored by Eric Evans on 25 May 2016, 21:23:02 UTC
stub out missing 'c' instances
Tip revision: f8b741c
system_filter.conf.erb
# Exim filter

if first_delivery then
	if $acl_m0 is not "trusted relay" then
		# Remove any SpamAssassin headers and add local ones
		headers remove X-Spam-Score:X-Spam-Report:X-Spam-Checker-Version:X-Spam-Status:X-Spam-Level:X-Spam-Flag
	endif
	if $acl_m0 is not "" and $acl_m0 is not "trusted relay" then
		headers add "X-Spam-Score: $acl_m0"
		headers add "X-Spam-Report: $acl_m1"
	endif
endif
back to top