On 1 Oct 2017, at 21:55, Quaquaraquà via Exim-users <exim-users@???> wrote:
> I tried your suggestion of swapping the two parts. Nevertheless I still obtain the same behaviour: every message is always rejected with an error about the maximum allowed length.
Your config, edited for readability:
deny condition = ${if > {$max_received_linelength}{998}}
deny message = maximum allowed line length is 998 octets, got $max_received_linelength
That's two separate, distinct deny verbs. You only need one:
deny condition = ${if > {$max_received_linelength}{998}}
message = maximum allowed line length is 998 octets, got $max_received_linelength
Graeme