[Exim] FAQ answer A0404 is wrong

Página superior
Eliminar este mensaje
Responder a este mensaje
Autor: Gary Palmer
Fecha:  
A: exim-users
Asunto: [Exim] FAQ answer A0404 is wrong
Philip,

The code you provide in example 0404 is incorrect. On the web site
you have:

condition = "${if and {eq {$sender_host_address}{}} \
             {eq {$sender_ident}{majordom}} {yes}{no}}"


it should be:

condition = "${if and {eq {{$sender_host_address}{}} \
             {eq {$sender_ident}{majordom}}} {yes}{no}}"


The {}'s around the conditions to be AND'd together are missing...

(Do I get a prize? :) )

Gary