Forum Moderators: bakedjake
and without quotes:
headers_remove = X-AntiAbuse
and I've entered it in the box following where the header seems to be defined - not sure exactly which of the boxes to enter it in but haven't had success so far - any assistance appreciated.
Cheers,
#############
# Remote addresses are those with a domain that does not match any item
# in the "local_domains" setting above.
# This router routes to remote hosts over SMTP using a DNS lookup with
# default options.
lookuphost:
driver = dnslookup
condition = "${perl{checkspam}}"
domains =! +local_domains
headers_add = "X-AntiAbuse: This header was added to track abuse, please include it with any abuse report\n\
X-AntiAbuse: Primary Hostname - $primary_hostname\n\
X-AntiAbuse: Original Domain - $original_domain\n\
X-AntiAbuse: Originator/Caller UID/GID - [$originator_uid $originator_gid] / [$caller_uid $caller_gid]\n\
X-AntiAbuse: Sender Address Domain - $sender_address_domain\n"
transport = remote_smtp
# This router routes to remote hosts over SMTP by explicit IP address,
# given as a "domain literal" in the form [nnn.nnn.nnn.nnn]. The RFCs
# require this facility, which is why it is enabled by default in Exim.
# If you want to lock it out, set forbid_domain_literals in the main
# configuration section above.
literal:
driver = ipliteral
condition = "${perl{checkspam}}"
domains =! +local_domains
headers_add = "X-AntiAbuse: This header was added to track abuse, please include it with any abuse report\n\
X-AntiAbuse: Primary Hostname - $primary_hostname\n\
X-AntiAbuse: Original Domain - $original_domain\n\
X-AntiAbuse: Originator/Caller UID/GID - [$originator_uid $originator_gid] / [$caller_uid $caller_gid]\n\
X-AntiAbuse: Sender Address Domain - $sender_address_domain"
transport = remote_smtp
#!# This new router is put here to fail all domains that
#!# were not in local_domains in the Exim 3 configuration.
fail_remote_domains:
driver = redirect
domains =! +local_domains
allow_fail
data = :fail: unrouteable mail domain "$domain"
#!#########