On 2018-12-06, Kai Bojens via Exim-users <[email protected]> wrote: > Hello everybody. > > I want to check incoming mail for a specific header which is added > without problems on another server: "X-ABC-Greylist: 1". > > I read the dcoumentation about "def:header_<header name>:" and created a > very small acl_smtp_data: > > acl_smtp_data: > warn condition = ${if def:header_X-ABC-Greylist:} > log_message = Accepted greylisted mail sender \ > $sender_address ip $sender_host_address - $local_part@$domain > > accept > > I've also tried various "if match" conditions with $message_headers > without any luck. How would I check correctly for the existence of this > header? > > Thanks, > Kai
you will need acl_smtp_data = acl_smtp_data In the main configuration (the first part of the file), the first part is the name of a setting, the second part is the value to set it to. -- When I tried casting out nines I made a hash of it. -- ## List details at https://lists.exim.org/mailman/listinfo/exim-users ## Exim details at http://www.exim.org/ ## Please use the Wiki with this list - http://wiki.exim.org/
